diff options
author | Seth Alves <alves@src.gnome.org> | 2000-04-09 04:21:31 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-04-09 04:21:31 +0800 |
commit | 181e276c46263a695457f4c250c917560d6e1596 (patch) | |
tree | 723f398a2812c049fe0ce078b8e9b7efad4113de /calendar/gui/gnome-cal.c | |
parent | 4c1b64ea55dc20faa79c79f85fb53d04d956315b (diff) | |
download | gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar.gz gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar.bz2 gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar.lz gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar.xz gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.tar.zst gsoc2013-evolution-181e276c46263a695457f4c250c917560d6e1596.zip |
new function: friendly wrapper for cal_client_create_calendar
* gui/gnome-cal.c (gnome_calendar_create): new function:
friendly wrapper for cal_client_create_calendar
* gui/calendar-commands.c (new_calendar): call gnome_calendar_create
if no filename is provided
* gui/prop.c (properties): calendar is a frame
* gui/calendar-commands.c (calendar_control_activate): sort out the
menus a bit, more of them show up now.
* gui/Makefile.am: don't build library or test, just the bonobo control
* gui/gncal-todo.c (simple_todo_editor): calendar is a frame instead
of a window, now.
* gui/gnome-cal.c (gnome_calendar_new): same
* gui/goto.c (goto_dialog): same
svn path=/trunk/; revision=2339
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 7b784fc613..86655f15e5 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -282,6 +282,27 @@ gnome_calendar_load (GnomeCalendar *gcal, char *file) return 1; } +int +gnome_calendar_create (GnomeCalendar *gcal, char *file) +{ + g_return_val_if_fail (gcal != NULL, 0); + g_return_val_if_fail (GNOME_IS_CALENDAR (gcal), 0); + g_return_val_if_fail (file != NULL, 0); + + /* FIXME: connect to the cal_loaded signal fo the CalClient and get the + * asynchronous notification properly! + */ + + /* if ((r = calendar_load (gcal->cal, file)) != NULL){ DELETE */ + if (cal_client_create_calendar (gcal->client, file) == FALSE){ + printf ("Error creating calendar: %s\n", file); + return 0; + } + gnome_calendar_update_all (gcal, NULL, 0); + return 1; +} + + void gnome_calendar_add_object (GnomeCalendar *gcal, iCalObject *obj) { |