From 322c0cad7043d9b4b10b7dc71cec028ad00834d9 Mon Sep 17 00:00:00 2001 From: Damon Chaplin Date: Wed, 11 Oct 2000 18:19:16 +0000 Subject: call calendar_config_write_on_exit() to write out some special config 2000-10-11 Damon Chaplin * gui/main.c (main): call calendar_config_write_on_exit() to write out some special config settings (as the mail component does). * gui/calendar-commands.c (properties_cmd): changed to use the new preferences dialog. (update_all_config_settings): new function to iterate over all the calendars and update the config settings. * gui/dialogs/cal-prefs-dialog.glade: preferences dialog. * gui/dialogs/cal-prefs-dialog.[hc]: new files for the preferences dialog. * gui/calendar-config.[hc]: new files to handle loading/saving config settings. * cal-util/cal-recur.c: fixed bug in YEARLY when no filters were set, plus minor changes. * cal-util/test-recur.c: updated. * gui/e-day-view-time-item.c: * gui/popup-menu.c: update to #include * gui/component-factory.c (owner_set_cb): called calendar_config_init. (owner_set_cb): (owner_unset_cb): updated the prototypes. * gui/main.c (main): added call to calendar_config_write_on_exit(). * gui/component-factory.h: * gui/component-factory.c (owner_set_cb): added global evolution_dir just like the mail component, so we know we to store config stuff. svn path=/trunk/; revision=5856 --- calendar/gui/calendar-commands.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'calendar/gui/calendar-commands.h') diff --git a/calendar/gui/calendar-commands.h b/calendar/gui/calendar-commands.h index 944d540f93..f63c29e1fc 100644 --- a/calendar/gui/calendar-commands.h +++ b/calendar/gui/calendar-commands.h @@ -66,6 +66,15 @@ extern gboolean enable_snooze; extern guint snooze_secs; extern const guint MAX_SNOOZE_SECS; + + +/* This tells all the calendars to reload the config settings. */ +void update_all_config_settings (void); + +/* + * FIXME: These are for the old config code and will be removed eventually. + */ + /* Creates and runs the preferences dialog box */ void properties (GtkWidget *toplevel); @@ -80,6 +89,9 @@ void colors_changed (void); /* Asks for all todo lists to reflect the accurate properties */ void todo_properties_changed(void); + + + /* Creates and runs the Go-to date dialog */ void goto_dialog (GnomeCalendar *gcal); -- cgit