aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-week-view.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1999-02-05 01:36:04 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-02-05 01:36:04 +0800
commitcaf215883e225dcc3a4f0d244dab0a61dfdf6ae8 (patch)
treed74ca114fb73885c5662feb5d9bdbff03c7cbe0e /calendar/gui/gncal-week-view.c
parent23e6445f8ba8f0173ac2c0f5e65985f0ffa9e2c2 (diff)
downloadgsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.gz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.bz2
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.lz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.xz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.zst
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.zip
Make the calendar start weeks on Monday if appropriate.
1999-02-03 Federico Mena Quintero <federico@nuclecu.unam.mx> * 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
Diffstat (limited to 'calendar/gui/gncal-week-view.c')
-rw-r--r--calendar/gui/gncal-week-view.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/calendar/gui/gncal-week-view.c b/calendar/gui/gncal-week-view.c
index 63255702a7..41b2596016 100644
--- a/calendar/gui/gncal-week-view.c
+++ b/calendar/gui/gncal-week-view.c
@@ -10,6 +10,7 @@
#include <string.h>
#include <gtk/gtk.h>
#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)));
+}