From d09d4962997e9056652815aab81f49311a6a59a8 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Fri, 8 Jun 2001 20:47:52 +0000 Subject: Committing the new My Evolution. svn path=/trunk/; revision=10163 --- my-evolution/main.c | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 my-evolution/main.c (limited to 'my-evolution/main.c') diff --git a/my-evolution/main.c b/my-evolution/main.c new file mode 100644 index 0000000000..d8c6160486 --- /dev/null +++ b/my-evolution/main.c @@ -0,0 +1,67 @@ +/* + * main.c: Main file for the Executive Summary + * + * Copyright (C) 2001 Ximian, Inc. + * + * Authors: Iain Holmes + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include + +#include +#include +#include + +#include +#include +#include + +#include +#include + +#ifdef GTKHTML_HAVE_GCONF +#include +#endif + +#include + +#include "component-factory.h" + +int +main (int argc, + char **argv) +{ + CORBA_ORB orb; + + bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); + textdomain (PACKAGE); + + gnome_init_with_popt_table ("Evolution Executive Summary", VERSION, + argc, argv, oaf_popt_options, 0, NULL); + orb = oaf_init (argc, argv); + + gdk_rgb_init (); + if (bonobo_init (orb, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) { + g_error (_("Executive summary component could not initialize Bonobo.\n")); + exit (1); + } + +#ifdef GTKHTML_HAVE_GCONF + gconf_init (argc, argv, NULL); +#endif + + gnome_vfs_init (); + + /* Start our component */ + component_factory_init (); + + bonobo_main (); + + return 0; +} -- cgit v1.2.3