aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/widgets/esummary-window-test.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
committerDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
commit27e6d3cb39461babf270fc4e6c5ba986af38a85a (patch)
tree91dff8149f50ca834598fa60a749289ebfd62d0c /executive-summary/widgets/esummary-window-test.c
parent31be44baaaaf661c00292c53f03ebeba336155bd (diff)
downloadgsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.gz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.bz2
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.lz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.xz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.zst
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.zip
Removed; this code has not been used since pre-1.0.
* executive-summary/*: Removed; this code has not been used since pre-1.0. * my-evolution/*: Removed; gone in evolution 2.0. * notes/*: Removed; never finished and no one is working on it. * configure.in (E_UTIL_{CFLAGS,LIBS}): Remove soup-2.0 since e-proxy is gone. (EVOLUTION_MAIL_{CFLAGS,LIBS}): Remove soup-2.0 since the mailer uses CamelHTTPStream now. (EVOLUTION_EXECUTIVE_SUMMARY_{CFLAGS,LIBS}): Gone (AC_OUTPUT): Remove my-evolution/Makefile * README: evolution no longer depends on soup svn path=/trunk/; revision=22976
Diffstat (limited to 'executive-summary/widgets/esummary-window-test.c')
-rw-r--r--executive-summary/widgets/esummary-window-test.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/executive-summary/widgets/esummary-window-test.c b/executive-summary/widgets/esummary-window-test.c
deleted file mode 100644
index 7928e8b6f9..0000000000
--- a/executive-summary/widgets/esummary-window-test.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <gal/widgets/e-canvas.h>
-#include "e-summary-subwindow.h"
-#include "e-summary-titlebar.h"
-
-
-void close_test (GtkWidget *widget, gpointer data);
-
-void
-close_test (GtkWidget *widget,
- gpointer data)
-{
- gtk_main_quit ();
-}
-
-int
-main (int argc,
- char **argv)
-{
- GtkWidget *window, *canvas;
- ESummarySubwindow *subwindow;
- GtkWidget *control;
-
- gnome_init ("Executive Summary Subwindow Test", "1.0", argc, argv);
- window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- gtk_signal_connect (GTK_OBJECT (window), "destroy",
- GTK_SIGNAL_FUNC (close_test), NULL);
-
- canvas = e_canvas_new ();
-
- subwindow = e_summary_subwindow_new (GNOME_CANVAS_GROUP (GNOME_CANVAS (canvas)->root), 100, 100);
-
- control = gtk_button_new_with_label ("A big button");
- gtk_widget_set_usize (control, 400, 200);
-
- e_summary_subwindow_add (subwindow, control);
- gtk_widget_show (control);
-
- gnome_canvas_set_scroll_region (GNOME_CANVAS (canvas), 0.0, 0.0, 1000.0, 1300.0);
- gtk_container_add (GTK_CONTAINER (window), canvas);
- gtk_widget_show_all (window);
-
- gtk_main ();
-
- exit(0);
-}