From caf215883e225dcc3a4f0d244dab0a61dfdf6ae8 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 4 Feb 1999 17:36:04 +0000 Subject: Make the calendar start weeks on Monday if appropriate. 1999-02-03 Federico Mena Quintero * gncal-week-view.c (gncal_week_view_new): Make the calendar start weeks on Monday if appropriate. (gncal_week_view_time_format_changed): New function to notify the week view that the time format has changed. * gncal-day-panel.c (gncal_day_panel_new): Make the calendar start weeks on Monday if appropriate. (gncal_day_panel_time_format_changed): New function to notify the day panel that the time format has changed. * gnome-cal.c (gnome_calendar_time_format_changed): Tell the day and week views that the time format has changed. svn path=/trunk/; revision=643 --- calendar/gncal-week-view.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'calendar/gncal-week-view.c') diff --git a/calendar/gncal-week-view.c b/calendar/gncal-week-view.c index 63255702a7..41b2596016 100644 --- a/calendar/gncal-week-view.c +++ b/calendar/gncal-week-view.c @@ -10,6 +10,7 @@ #include #include #include "gncal-week-view.h" +#include "main.h" #include "timeutil.h" static void gncal_week_view_init (GncalWeekView *wview); @@ -140,7 +141,11 @@ gncal_week_view_new (GnomeCalendar *calendar, time_t start_of_week) GTK_SIGNAL_FUNC(sync_week), wview); gtk_calendar_display_options (wview->gtk_calendar, - GTK_CALENDAR_SHOW_HEADING | GTK_CALENDAR_SHOW_DAY_NAMES); + (GTK_CALENDAR_SHOW_HEADING + | GTK_CALENDAR_SHOW_DAY_NAMES + | (week_starts_on_monday + ? GTK_CALENDAR_WEEK_START_MONDAY : 0))); + gtk_table_attach (GTK_TABLE (table), GTK_WIDGET (wview->gtk_calendar), 0, 3, 1, 2, @@ -235,3 +240,16 @@ gncal_week_view_set (GncalWeekView *wview, time_t start_of_week) } } +void +gncal_week_view_time_format_changed (GncalWeekView *wview) +{ + g_return_if_fail (wview != NULL); + g_return_if_fail (GNCAL_IS_WEEK_VIEW (wview)); + + gtk_calendar_display_options (wview->gtk_calendar, + (week_starts_on_monday + ? (wview->gtk_calendar->display_flags + | GTK_CALENDAR_WEEK_START_MONDAY) + : (wview->gtk_calendar->display_flags + & ~GTK_CALENDAR_WEEK_START_MONDAY))); +} -- cgit