diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-10-21 23:39:38 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-10-21 23:39:38 +0800 |
commit | dbf54684fc3b1d024253a7415d75d076a1bf4cc9 (patch) | |
tree | 9229185e2e388ac8d825cdac4691bde407de7624 /calendar/gui/e-calendar-table.h | |
parent | cfa0f85ab441447009b96f97cd94f4cfb026abef (diff) | |
download | gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar.gz gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar.bz2 gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar.lz gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar.xz gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.tar.zst gsoc2013-evolution-dbf54684fc3b1d024253a7415d75d076a1bf4cc9.zip |
removed debug message.
2000-10-21 Damon Chaplin <damon@helixcode.com>
* gui/dialogs/cal-prefs-dialog.c (cal_prefs_dialog_use_24_hour_toggled): removed debug message.
* gui/e-calendar-table.c (e_calendar_table_save_state): new function
to save the state of the table to a given file.
* gui/e-calendar-table.h (struct _ECalendarTable): added etable field
so we can access it to save the state.
* gui/gnome-cal.c (gnome_calendar_destroy): call
e_calendar_table_save_state() to save the state of the TaskPad.
(setup_widgets): load the state of the TaskPad.
* gui/calendar-config.c: added support for the default view.
* gui/gnome-cal.c (gnome_calendar_construct):
(gnome_calendar_set_view_internal): use/set the default view setting.
svn path=/trunk/; revision=6097
Diffstat (limited to 'calendar/gui/e-calendar-table.h')
-rw-r--r-- | calendar/gui/e-calendar-table.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-table.h b/calendar/gui/e-calendar-table.h index 38e3eafea3..1265a80a72 100644 --- a/calendar/gui/e-calendar-table.h +++ b/calendar/gui/e-calendar-table.h @@ -59,6 +59,7 @@ struct _ECalendarTable CalendarModel *model; + GtkWidget *etable; /* Colors for drawing. */ GdkColor colors[E_CALENDAR_TABLE_COLOR_LAST]; @@ -77,6 +78,12 @@ GtkWidget* e_calendar_table_new (void); void e_calendar_table_set_cal_client (ECalendarTable *cal_table, CalClient *client); +/* These load and save the state of the table (headers shown etc.) to/from + the given file. */ +void e_calendar_table_load_state (ECalendarTable *cal_table, + gchar *filename); +void e_calendar_table_save_state (ECalendarTable *cal_table, + gchar *filename); #ifdef __cplusplus } |