aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-day-view.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-11-02 23:49:38 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-11-05 02:19:50 +0800
commit1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b (patch)
treeb8d9f8b56ce226ac15e7cc5efe0e36ad084f41af /calendar/gui/e-day-view.h
parent0ab70ad33c4e22a176e89bb8a935aed8c7848e51 (diff)
downloadgsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar.gz
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar.bz2
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar.lz
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar.xz
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.tar.zst
gsoc2013-evolution-1f17dab6b0d9c5413dea38dcc95e7a7bb5b4bd9b.zip
Move calendar preferences to the calendar module.
Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties.
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r--calendar/gui/e-day-view.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h
index 04f41867d4..8728b24283 100644
--- a/calendar/gui/e-day-view.h
+++ b/calendar/gui/e-day-view.h
@@ -275,9 +275,6 @@ struct _EDayView {
/* The ID of the timeout function for doing a new layout. */
gint layout_timeout_id;
- /* The number of minutes per row. 5, 10, 15, 30 or 60. */
- gint mins_per_row;
-
/* The number of rows needed, depending on the times shown and the
minutes per row. */
gint rows;
@@ -301,12 +298,6 @@ struct _EDayView {
/* Bitwise combination of working days. Defaults to Mon-Fri. */
EDayViewDays working_days;
- /* The start and end of the work day, rounded to the nearest row. */
- gint work_day_start_hour;
- gint work_day_start_minute;
- gint work_day_end_hour;
- gint work_day_end_minute;
-
/* Whether we show the Marcus Bains Line in the main canvas and time canvas. */
gboolean marcus_bains_show_line;
gchar *marcus_bains_day_view_color;
@@ -506,33 +497,12 @@ gint e_day_view_get_days_shown (EDayView *day_view);
void e_day_view_set_days_shown (EDayView *day_view,
gint days_shown);
-/* This specifies how many minutes are represented by one row in the display.
- It can be 60, 30, 15, 10 or 5. The default is 30. */
-gint e_day_view_get_mins_per_row (EDayView *day_view);
-void e_day_view_set_mins_per_row (EDayView *day_view,
- gint mins_per_row);
-
/* This specifies the working days in the week. The value is a bitwise
combination of day flags. Defaults to Mon-Fri. */
EDayViewDays e_day_view_get_working_days (EDayView *day_view);
void e_day_view_set_working_days (EDayView *day_view,
EDayViewDays days);
-/* The start and end time of the working day. This only affects the background
- colors. */
-gint e_day_view_get_work_day_start_hour (EDayView *day_view);
-void e_day_view_set_work_day_start_hour (EDayView *day_view,
- gint work_day_start_hour);
-gint e_day_view_get_work_day_start_minute (EDayView *day_view);
-void e_day_view_set_work_day_start_minute (EDayView *day_view,
- gint work_day_start_minute);
-gint e_day_view_get_work_day_end_hour (EDayView *day_view);
-void e_day_view_set_work_day_end_hour (EDayView *day_view,
- gint work_day_end_hour);
-gint e_day_view_get_work_day_end_minute (EDayView *day_view);
-void e_day_view_set_work_day_end_minute (EDayView *day_view,
- gint work_day_end_minute);
-
/* Whether we display the Marcus Bains Line in the main canvas and time
canvas. */
void e_day_view_marcus_bains_update (EDayView *day_view);