From ce3b224ed64f470fd5031342930f7c8f773c6eeb Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Wed, 5 Apr 2000 20:13:45 +0000 Subject: build test-calendar-widget and evolution-calendar, common stuff is in a * gui/Makefile.am: build test-calendar-widget and evolution-calendar, common stuff is in a library * gui/gnome-cal.c (gnome_calendar_get_type): made the calendar widget based on a gtk_frame rather than a gnome_app * gui/calendar-commands.c: split out some of main.c * gui/evolution-calendar-control.c: bonobo bung so evolution can use the calendar widget svn path=/trunk/; revision=2294 --- calendar/gui/evolution-calendar-control.c | 85 +++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 calendar/gui/evolution-calendar-control.c (limited to 'calendar/gui/evolution-calendar-control.c') diff --git a/calendar/gui/evolution-calendar-control.c b/calendar/gui/evolution-calendar-control.c new file mode 100644 index 0000000000..ceee4335eb --- /dev/null +++ b/calendar/gui/evolution-calendar-control.c @@ -0,0 +1,85 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + +#include +#include +#include +#include +#include + + +#include +#include +#include +#include +#include +/*#include */ + + +CORBA_Environment ev; +CORBA_ORB orb; + + + +static BonoboObject * +calendar_factory (BonoboGenericFactory *Factory, void *closure) +{ + BonoboControl *control; + GnomeCalendar *cal; + + /* Create the control. */ + //cal = gnome_calendar_new ("unnamed"); + cal = new_calendar ("title", NULL, NULL, NULL, 0); + gtk_widget_show (GTK_WIDGET (cal)); + control = bonobo_control_new (GTK_WIDGET (cal)); + + return BONOBO_OBJECT (control); +} + + +static void +calendar_factory_init (void) +{ + static BonoboGenericFactory *calendar_control_factory = NULL; + + if (calendar_control_factory != NULL) + return; + + calendar_control_factory = + bonobo_generic_factory_new ("control-factory:calendar", + calendar_factory, NULL); + + if (calendar_control_factory == NULL) { + g_error ("I could not register a Calendar factory."); + } +} + + +static void +init_bonobo (int argc, char **argv) +{ + gnome_CORBA_init_with_popt_table ( + "evolution-calendar", "0.0", + &argc, argv, NULL, 0, NULL, GNORBA_INIT_SERVER_FUNC, &ev); + + orb = gnome_CORBA_ORB (); + + if (bonobo_init (orb, NULL, NULL) == FALSE) + g_error (_("Could not initialize Bonobo")); +} + +int +main (int argc, char **argv) +{ + alarm_init (); + init_calendar (); + + CORBA_exception_init (&ev); + + init_bonobo (argc, argv); + + calendar_factory_init (); + + bonobo_main (); + + return 0; +} -- cgit v1.2.3