diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-10-12 02:19:16 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-10-12 02:19:16 +0800 |
commit | 322c0cad7043d9b4b10b7dc71cec028ad00834d9 (patch) | |
tree | afbb90d10c30799fa790d9384c543e71a768854c /calendar/gui/e-day-view.c | |
parent | c865d05f0f66f61975c69ae7acb4bc8878d3e47b (diff) | |
download | gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar.gz gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar.bz2 gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar.lz gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar.xz gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.tar.zst gsoc2013-evolution-322c0cad7043d9b4b10b7dc71cec028ad00834d9.zip |
call calendar_config_write_on_exit() to write out some special config
2000-10-11 Damon Chaplin <damon@helixcode.com>
* gui/main.c (main): call calendar_config_write_on_exit() to write
out some special config settings (as the mail component does).
* gui/calendar-commands.c (properties_cmd): changed to use the new
preferences dialog.
(update_all_config_settings): new function to iterate over all the
calendars and update the config settings.
* gui/dialogs/cal-prefs-dialog.glade: preferences dialog.
* gui/dialogs/cal-prefs-dialog.[hc]: new files for the preferences
dialog.
* gui/calendar-config.[hc]: new files to handle loading/saving config
settings.
* cal-util/cal-recur.c: fixed bug in YEARLY when no filters were set,
plus minor changes.
* cal-util/test-recur.c: updated.
* gui/e-day-view-time-item.c:
* gui/popup-menu.c: update to #include <gal/widgets/e-gui-utils.h>
* gui/component-factory.c (owner_set_cb): called calendar_config_init.
(owner_set_cb):
(owner_unset_cb): updated the prototypes.
* gui/main.c (main): added call to calendar_config_write_on_exit().
* gui/component-factory.h:
* gui/component-factory.c (owner_set_cb): added global evolution_dir
just like the mail component, so we know we to store config stuff.
svn path=/trunk/; revision=5856
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index d6905959e7..f8a3002e2c 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -1969,6 +1969,67 @@ e_day_view_set_working_days (EDayView *day_view, } +/* The start and end time of the working day. This only affects the background + colors. */ +void +e_day_view_get_working_day (EDayView *day_view, + gint *start_hour, + gint *start_minute, + gint *end_hour, + gint *end_minute) +{ + g_return_if_fail (E_IS_DAY_VIEW (day_view)); + + *start_hour = day_view->work_day_start_hour; + *start_minute = day_view->work_day_start_minute; + *end_hour = day_view->work_day_end_hour; + *end_minute = day_view->work_day_end_minute; +} + + +void +e_day_view_set_working_day (EDayView *day_view, + gint start_hour, + gint start_minute, + gint end_hour, + gint end_minute) +{ + g_return_if_fail (E_IS_DAY_VIEW (day_view)); + + day_view->work_day_start_hour = start_hour; + day_view->work_day_start_minute = start_minute; + day_view->work_day_end_hour = end_hour; + day_view->work_day_end_minute = end_minute; + + gtk_widget_queue_draw (day_view->main_canvas); +} + + +/* Whether we use 12-hour of 24-hour format. */ +gboolean +e_day_view_get_24_hour_format (EDayView *day_view) +{ + g_return_val_if_fail (E_IS_DAY_VIEW (day_view), FALSE); + + return day_view->use_24_hour_format; +} + + +void +e_day_view_set_24_hour_format (EDayView *day_view, + gboolean use_24_hour) +{ + g_return_if_fail (E_IS_DAY_VIEW (day_view)); + + if (day_view->use_24_hour_format != use_24_hour) { + day_view->use_24_hour_format = use_24_hour; + + /* FIXME: Eventually we need to do a re-layout. */ + gtk_widget_queue_draw (day_view->main_canvas); + } +} + + static gboolean e_day_view_update_scroll_regions (EDayView *day_view) { |