aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view-config.c
blob: 423a12a2d93dfc5cb709c290ab4192756ac7db84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Rodrigo Moya <rodrigo@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#include "calendar-config.h"
#include "e-week-view-config.h"

struct _EWeekViewConfigPrivate {
    EWeekView *view;

    GList *notifications;
};

/* Property IDs */
enum props {
    PROP_0,
    PROP_VIEW,
};

G_DEFINE_TYPE (EWeekViewConfig, e_week_view_config, G_TYPE_OBJECT)

static void
e_week_view_config_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
    EWeekViewConfig *view_config;

    view_config = E_WEEK_VIEW_CONFIG (object);

    switch (property_id) {
    case PROP_VIEW:
        e_week_view_config_set_view (view_config, g_value_get_object (value));
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
        break;
    }
}

static void
e_week_view_config_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
    EWeekViewConfig *view_config;

    view_config = E_WEEK_VIEW_CONFIG (object);

    switch (property_id) {
    case PROP_VIEW:
        g_value_set_object (value, e_week_view_config_get_view (view_config));
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
        break;
    }
}

static void
e_week_view_config_dispose (GObject *object)
{
    EWeekViewConfig *view_config = E_WEEK_VIEW_CONFIG (object);

    e_week_view_config_set_view (view_config, NULL);

    if (G_OBJECT_CLASS (e_week_view_config_parent_class)->dispose)
        G_OBJECT_CLASS (e_week_view_config_parent_class)->dispose (object);
}

static void
e_week_view_config_finalize (GObject *object)
{
    EWeekViewConfig *view_config = E_WEEK_VIEW_CONFIG (object);
    EWeekViewConfigPrivate *priv;

    priv = view_config->priv;

    g_free (priv);

    if (G_OBJECT_CLASS (e_week_view_config_parent_class)->finalize)
        G_OBJECT_CLASS (e_week_view_config_parent_class)->finalize (object);
}

static void
e_week_view_config_class_init (EWeekViewConfigClass *klass)
{
    GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    GParamSpec *spec;

    /* Method override */
    gobject_class->set_property = e_week_view_config_set_property;
    gobject_class->get_property = e_week_view_config_get_property;
    gobject_class->dispose = e_week_view_config_dispose;
    gobject_class->finalize = e_week_view_config_finalize;

    spec = g_param_spec_object ("view", NULL, NULL, e_week_view_get_type (),
                    G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT);
    g_object_class_install_property (gobject_class, PROP_VIEW, spec);
}

static void
e_week_view_config_init (EWeekViewConfig *view_config)
{
    view_config->priv = g_new0 (EWeekViewConfigPrivate, 1);

}

EWeekViewConfig *
e_week_view_config_new (EWeekView *week_view)
{
    EWeekViewConfig *view_config;

    view_config = g_object_new (e_week_view_config_get_type (), "view", week_view, NULL);

    return view_config;
}

EWeekView *
e_week_view_config_get_view (EWeekViewConfig *view_config)
{
    EWeekViewConfigPrivate *priv;

    g_return_val_if_fail (view_config != NULL, NULL);
    g_return_val_if_fail (E_IS_WEEK_VIEW_CONFIG (view_config), NULL);

    priv = view_config->priv;

    return priv->view;
}

static void
set_week_start (EWeekView *week_view)
{
    gint week_start_week;

    week_start_week = calendar_config_get_week_start_day ();

    /* Convert it to 0 (Mon) to 6 (Sun), which is what we use. */
    week_start_week = (week_start_week + 6) % 7;

    e_week_view_set_week_start_day (week_view, week_start_week);
}

static void
week_start_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data)
{
    EWeekViewConfig *view_config = data;
    EWeekViewConfigPrivate *priv;

    priv = view_config->priv;

    set_week_start (priv->view);
}

static void
set_twentyfour_hour (EWeekView *week_view)
{
    gboolean use_24_hour;

    use_24_hour = calendar_config_get_24_hour_format ();

    e_calendar_view_set_use_24_hour_format (E_CALENDAR_VIEW (week_view), use_24_hour);
}

static void
twentyfour_hour_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data)
{
    EWeekViewConfig *view_config = data;
    EWeekViewConfigPrivate *priv;

    priv = view_config->priv;

    set_twentyfour_hour (priv->view);
}

static void
set_show_event_end (EWeekView *week_view)
{
    gboolean show_event_end;

    show_event_end = calendar_config_get_show_event_end ();

    e_week_view_set_show_event_end_times (week_view, show_event_end);
}

static void
show_event_end_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data)
{
    EWeekViewConfig *view_config = data;
    EWeekViewConfigPrivate *priv;

    priv = view_config->priv;

    set_show_event_end (priv->view);
}

static void
set_compress_weekend (EWeekView *week_view)
{
    gboolean compress_weekend;

    compress_weekend = calendar_config_get_compress_weekend ();

    e_week_view_set_compress_weekend (week_view, compress_weekend);
}

static void
compress_weekend_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data)
{
    EWeekViewConfig *view_config = data;
    EWeekViewConfigPrivate *priv;

    priv = view_config->priv;

    set_compress_weekend (priv->view);
}

void
e_week_view_config_set_view (EWeekViewConfig *view_config, EWeekView *week_view)
{
    EWeekViewConfigPrivate *priv;
    guint not;
    GList *l;

    g_return_if_fail (view_config != NULL);
    g_return_if_fail (E_IS_WEEK_VIEW_CONFIG (view_config));

    priv = view_config->priv;

    if (priv->view) {
        g_object_unref (priv->view);
        priv->view = NULL;
    }

    for (l = priv->notifications; l; l = l->next)
        calendar_config_remove_notification (GPOINTER_TO_UINT (l->data));

    g_list_free (priv->notifications);
    priv->notifications = NULL;

    /* If the new view is NULL, return right now */
    if (!week_view)
        return;

    priv->view = g_object_ref (week_view);

    /* Week start */
    set_week_start (week_view);

    not = calendar_config_add_notification_week_start_day (week_start_changed_cb, view_config);
    priv->notifications = g_list_prepend (priv->notifications, GUINT_TO_POINTER (not));

    /* 24 Hour format */
    set_twentyfour_hour (week_view);

    not = calendar_config_add_notification_24_hour_format (twentyfour_hour_changed_cb, view_config);
    priv->notifications = g_list_prepend (priv->notifications, GUINT_TO_POINTER (not));

    /* Show event end */
    set_show_event_end (week_view);

    not = calendar_config_add_notification_show_event_end (show_event_end_changed_cb, view_config);
    priv->notifications = g_list_prepend (priv->notifications, GUINT_TO_POINTER (not));

    /* Compress weekend */
    set_compress_weekend (week_view);

    not = calendar_config_add_notification_compress_weekend (compress_weekend_changed_cb, view_config);
    priv->notifications = g_list_prepend (priv->notifications, GUINT_TO_POINTER (not));
}