diff options
author | Peter Williams <peterw@src.gnome.org> | 2001-07-06 01:28:20 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-07-06 01:28:20 +0800 |
commit | 11ca9e631eaa88cf1099ecdca6799bcb02e742ac (patch) | |
tree | dd5a82c718036487f1f92930858a62cf0bd5b6d4 /mail/test-mail.c | |
parent | 34a17acfaf4a1cd2ec23686e1453276915920acc (diff) | |
download | gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar.gz gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar.bz2 gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar.lz gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar.xz gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.tar.zst gsoc2013-evolution-11ca9e631eaa88cf1099ecdca6799bcb02e742ac.zip |
And kill these stupid files. Aaar.
svn path=/trunk/; revision=10815
Diffstat (limited to 'mail/test-mail.c')
-rw-r--r-- | mail/test-mail.c | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/mail/test-mail.c b/mail/test-mail.c deleted file mode 100644 index a3365d06ad..0000000000 --- a/mail/test-mail.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Tests the mail summary display bonobo component - * - * Author: - * Miguel de Icaza (miguel@kernel.org) - * - * (C) 2000 Ximian, Inc. - */ - -#include <config.h> - -#include <gtk/gtkmain.h> -#include <gtk/gtkwidget.h> -#include <libgnome/gnome-defs.h> -#include <libgnomeui/gnome-init.h> -#include <liboaf/liboaf.h> -#include <bonobo/bonobo-main.h> -#include <bonobo/bonobo-ui-container.h> -#include <bonobo/bonobo-widget.h> - -static guint -create_container (void) -{ - GtkWidget *window, *control; - BonoboUIContainer *container; - - gdk_rgb_init (); - - gtk_widget_set_default_colormap (gdk_rgb_get_cmap ()); - gtk_widget_set_default_visual (gdk_rgb_get_visual ()); - - window = bonobo_window_new ("Test", "test"); - gtk_widget_set_usize (GTK_WIDGET (window), 640, 480); - gtk_widget_show (GTK_WIDGET (window)); - - container = bonobo_ui_container_new (); - bonobo_ui_container_set_win (container, BONOBO_WINDOW (window)); - - control = bonobo_widget_new_control ( - "OAFIID:GNOME_Evolution_Mail_Control", - bonobo_object_corba_objref (BONOBO_OBJECT (container))); - - if (control == NULL){ - printf ("Could not launch mail control\n"); - exit (1); - } - gtk_container_add (GTK_CONTAINER (window), control); - - gtk_widget_show (window); - gtk_widget_show (control); - - - return FALSE; -} - -int -main (int argc, char *argv []) -{ - gnome_init ("sample-control-container", "1.0", argc, argv); - oaf_init (argc, argv); - - if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) - g_error ("Could not initialize Bonobo\n"); - - gtk_idle_add ((GtkFunction) create_container, NULL); - - /* - * Main loop - */ - bonobo_main (); - - return 0; -} - - - - - |