diff options
author | Milan Crha <mcrha@redhat.com> | 2009-01-19 21:10:36 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2009-01-19 21:10:36 +0800 |
commit | ae26a9a5fb34beb48e4161c8f145b0fb2d3cb3a9 (patch) | |
tree | e7eaffe89d351ff96ac07acba1d8222abc4c94c0 /calendar/gui/calendar-config.h | |
parent | fe416afe35ea272263dea6a526dd383b5fb24c16 (diff) | |
download | gsoc2013-evolution-ae26a9a5fb34beb48e4161c8f145b0fb2d3cb3a9.tar.gz gsoc2013-evolution-ae26a9a5fb34beb48e4161c8f145b0fb2d3cb3a9.tar.zst gsoc2013-evolution-ae26a9a5fb34beb48e4161c8f145b0fb2d3cb3a9.zip |
** Fix for bug #200254
2009-01-19 Milan Crha <mcrha@redhat.com>
** Fix for bug #200254
* gui/apps_evolution_calendar.schemas.in:
* gui/dialogs/cal-prefs-dialog.glade:
* gui/dialogs/cal-prefs-dialog.h: (struct _CalendarPrefsDialog):
* gui/dialogs/cal-prefs-dialog.c: (dview_show_week_no_toggled),
(setup_changes), (show_config), (calendar_prefs_dialog_construct):
* gui/calendar-config-keys.h:
* gui/calendar-config.h:
* gui/calendar-config.c: (calendar_config_get_dview_show_week_no),
(calendar_config_set_dview_show_week_no),
(calendar_config_add_notification_dview_show_week_no):
New option whether to show week number in Day and Work Week view.
* gui/e-day-view.h: (struct _EDayView),
(e_day_view_get_show_week_number), (e_day_view_set_show_week_number):
* gui/e-day-view.c: (dview_show_week_no_changed_cb), (e_day_view_init),
(e_day_view_destroy), (e_day_view_recalc_day_starts),
(e_day_view_get_show_week_number), (e_day_view_set_show_week_number):
New widget showing week number of the first day in a view.
svn path=/trunk/; revision=37096
Diffstat (limited to 'calendar/gui/calendar-config.h')
-rw-r--r-- | calendar/gui/calendar-config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/calendar-config.h b/calendar/gui/calendar-config.h index 495b5c591b..09973e1329 100644 --- a/calendar/gui/calendar-config.h +++ b/calendar/gui/calendar-config.h @@ -154,6 +154,11 @@ gboolean calendar_config_get_dnav_show_week_no (void); void calendar_config_set_dnav_show_week_no (gboolean show_week_no); guint calendar_config_add_notification_dnav_show_week_no (GConfClientNotifyFunc func, gpointer data); +/* Whether we show week number in the day view. */ +gboolean calendar_config_get_dview_show_week_no (void); +void calendar_config_set_dview_show_week_no (gboolean show_week_no); +guint calendar_config_add_notification_dview_show_week_no (GConfClientNotifyFunc func, gpointer data); + /* The positions of the panes in the normal and month views. */ gint calendar_config_get_hpane_pos (void); void calendar_config_set_hpane_pos (gint hpane_pos); |