diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-10-29 21:27:24 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-10-29 21:27:24 +0800 |
commit | 104ef59a6ae16a83f0ba16cedae32c6322b3fdc3 (patch) | |
tree | e6bda72ba14699abf39d3d453d354f16c73cefa9 /calendar/gui/e-calendar-view.c | |
parent | 89656649cd86d940da97642e1d57c1ac44e695fb (diff) | |
download | gsoc2013-evolution-104ef59a6ae16a83f0ba16cedae32c6322b3fdc3.tar.gz gsoc2013-evolution-104ef59a6ae16a83f0ba16cedae32c6322b3fdc3.tar.zst gsoc2013-evolution-104ef59a6ae16a83f0ba16cedae32c6322b3fdc3.zip |
fixed typo in menu item label.
2003-10-29 Rodrigo Moya <rodrigo@ximian.com>
* gui/calendar-component.c (fill_popup_menu_callback): fixed
typo in menu item label.
* gui/e-cal-model.[ch] (e_cal_model_get_use_24_hour_format): new
function.
* gui/e-cal-view.[ch]: no need to keep the 'use_24_hour' setting,
it's already in the model.
(e_cal_view_get_use_24_hour_format,
e_cal_view_set_use_24_hour_format): new functions.
* gui/e-day-view.[ch] (e_day_view_get_24_hour_format,
(e_day_view_set_24_hour_format): removed.
(e_day_view_convert_time_to_display, e_day_view_update_event_label,
e_day_view_get_time_string_width): use the ECalView's function to
get the 24 hour format.
* gui/e-week-view.[ch] (e_week_view_get_24_hour_format,
e_week_view_set_24_hour_format): removed.
(e_week_view_convert_time_to_display,
e_week_view_get_time_string_width): use the ECalView's function
to get the 24 hour format.
* gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
* gui/e-day-view-time-item.c (e_day_view_time_item_draw):
* gui/e-week-view-event-item.c (e_week_view_draw_time):
don't use the view's use_24_hour_format, but the ECalView method.
svn path=/trunk/; revision=23113
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r-- | calendar/gui/e-calendar-view.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 60cbda3e57..7d2ef1c704 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -593,6 +593,37 @@ e_cal_view_set_default_category (ECalView *cal_view, const char *category) cal_view->priv->default_category = g_strdup (category); } +/** + * e_cal_view_get_use_24_hour_format: + * @cal_view: A calendar view. + * + * Gets whether the view is using 24 hour times or not. + * + * Returns: the 24 hour setting. + */ +gboolean +e_cal_view_get_use_24_hour_format (ECalView *cal_view) +{ + g_return_val_if_fail (E_IS_CAL_VIEW (cal_view), FALSE); + + return e_cal_model_get_use_24_hour_format (cal_view->priv->model); +} + +/** + * e_cal_view_set_use_24_hour_format + * @cal_view: A calendar view. + * @use_24_hour: Whether to use 24 hour times or not. + * + * Sets the 12/24 hour times setting for the given view. + */ +void +e_cal_view_set_use_24_hour_format (ECalView *cal_view, gboolean use_24_hour) +{ + g_return_if_fail (E_IS_CAL_VIEW (cal_view)); + + e_cal_model_set_use_24_hour_format (cal_view->priv->model, use_24_hour); +} + void e_cal_view_set_status_message (ECalView *cal_view, const gchar *message) { |