aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-config.c
blob: 08579182fe0418bb11dcd304438e0aa5f6dd7bb0 (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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/*
 * Author :
 *  Damon Chaplin <damon@ximian.com>
 *
 * Copyright 2000, Helix Code, Inc.
 * Copyright 2000, Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

/*
 * calendar-config.c - functions to load/save/get/set user settings.
 */

#include <config.h>
#include "component-factory.h"
#include "calendar-config.h"


typedef struct
{
    CalWeekdays working_days;
    gboolean    use_24_hour_format;
    gint        week_start_day;
    gint        day_start_hour;
    gint        day_start_minute;
    gint        day_end_hour;
    gint        day_end_minute;
    gint        time_divisions;
    gboolean    dnav_show_week_no;
    gint        view;
    gfloat      hpane_pos;
    gfloat      vpane_pos;
    gfloat      month_hpane_pos;
    gfloat      month_vpane_pos;
    gboolean    compress_weekend;
    gboolean    show_event_end;
} CalendarConfig;


static CalendarConfig *config = NULL;

static void config_read         (void);


void
calendar_config_init            (void)
{
    if (config)
        return;
    
    config = g_new0 (CalendarConfig, 1);

    config_read ();
}


static void
config_read             (void)
{
    gchar *prefix;
    gboolean is_default;

    /* 'Display' settings. */
    prefix = g_strdup_printf ("=%s/config/Calendar=/Display/",
                  evolution_dir);
    gnome_config_push_prefix (prefix);
    g_free (prefix);

    config->working_days = gnome_config_get_int_with_default ("WorkingDays", &is_default);
    if (is_default) {
        config->working_days = CAL_MONDAY | CAL_TUESDAY
            | CAL_WEDNESDAY | CAL_THURSDAY | CAL_FRIDAY;
    }
    config->use_24_hour_format = gnome_config_get_bool ("Use24HourFormat=0");
    config->week_start_day = gnome_config_get_int ("WeekStartDay=1");
    config->day_start_hour = gnome_config_get_int ("DayStartHour=9");
    config->day_start_minute = gnome_config_get_int ("DayStartMinute=0");
    config->day_end_hour = gnome_config_get_int ("DayEndHour=17");
    config->day_end_minute = gnome_config_get_int ("DayEndMinute=0");
    config->time_divisions = gnome_config_get_int ("TimeDivisions=30");
    config->view = gnome_config_get_int ("View=0");
    config->hpane_pos = gnome_config_get_float ("HPanePosition=1");
    config->vpane_pos = gnome_config_get_float ("VPanePosition=1");
    config->month_hpane_pos = gnome_config_get_float ("MonthHPanePosition=0");
    config->month_vpane_pos = gnome_config_get_float ("MonthVPanePosition=1");
    config->compress_weekend = gnome_config_get_bool ("CompressWeekend=1");
    config->show_event_end = gnome_config_get_bool ("ShowEventEndTime=1");

    gnome_config_pop_prefix ();


    /* 'DateNavigator' settings. */
    prefix = g_strdup_printf ("=%s/config/Calendar=/DateNavigator/",
                  evolution_dir);
    gnome_config_push_prefix (prefix);
    g_free (prefix);

    config->dnav_show_week_no = gnome_config_get_bool ("ShowWeekNumbers=0");

    gnome_config_pop_prefix ();


    gnome_config_sync ();
}


void
calendar_config_write           (void)
{
    gchar *prefix;
    
    /* 'Display' settings. */
    prefix = g_strdup_printf ("=%s/config/Calendar=/Display/",
                  evolution_dir);
    gnome_config_push_prefix (prefix);
    g_free (prefix);

    gnome_config_set_int ("WorkingDays", config->working_days);
    gnome_config_set_bool ("Use24HourFormat", config->use_24_hour_format);
    gnome_config_set_int ("WeekStartDay", config->week_start_day);
    gnome_config_set_int ("DayStartHour", config->day_start_hour);
    gnome_config_set_int ("DayStartMinute", config->day_start_minute);
    gnome_config_set_int ("DayEndHour", config->day_end_hour);
    gnome_config_set_int ("DayEndMinute", config->day_end_minute);
    gnome_config_set_bool ("CompressWeekend", config->compress_weekend);
    gnome_config_set_bool ("ShowEventEndTime", config->show_event_end);

    gnome_config_pop_prefix ();


    /* 'DateNavigator' settings. */
    prefix = g_strdup_printf ("=%s/config/Calendar=/DateNavigator/",
                  evolution_dir);
    gnome_config_push_prefix (prefix);
    g_free (prefix);

    gnome_config_set_bool ("ShowWeekNumbers", config->dnav_show_week_no);

    gnome_config_pop_prefix ();


    gnome_config_sync ();
}


void
calendar_config_write_on_exit       (void)
{
    gchar *prefix;
    
    /* 'Display' settings. */
    prefix = g_strdup_printf ("=%s/config/Calendar=/Display/",
                  evolution_dir);
    gnome_config_push_prefix (prefix);
    g_free (prefix);

    gnome_config_set_int ("View", config->view);
    gnome_config_set_int ("TimeDivisions", config->time_divisions);
    gnome_config_set_float ("HPanePosition", config->hpane_pos);
    gnome_config_set_float ("VPanePosition", config->vpane_pos);
    gnome_config_set_float ("MonthHPanePosition", config->month_hpane_pos);
    gnome_config_set_float ("MonthVPanePosition", config->month_vpane_pos);

    gnome_config_pop_prefix ();


    gnome_config_sync ();
}


/*
 * Calendar Settings.
 */

/* Whether we use 24-hour format or 12-hour format (AM/PM). */
gboolean
calendar_config_get_24_hour_format  (void)
{
    return config->use_24_hour_format;
}


void
calendar_config_set_24_hour_format  (gboolean     use_24_hour)
{
    config->use_24_hour_format = use_24_hour;
}


/* The start day of the week (0 = Sun to 6 = Mon). */
gint
calendar_config_get_week_start_day  (void)
{
    return config->week_start_day;
}


void
calendar_config_set_week_start_day  (gint         week_start_day)
{
    config->week_start_day = week_start_day;
}


/* The start and end times of the work-day. */
gint
calendar_config_get_day_start_hour  (void)
{
    return config->day_start_hour;
}


void
calendar_config_set_day_start_hour  (gint         day_start_hour)
{
    config->day_start_hour = day_start_hour;
}


gint
calendar_config_get_day_start_minute    (void)
{
    return config->day_start_minute;
}


void
calendar_config_set_day_start_minute    (gint         day_start_min)
{
    config->day_start_minute = day_start_min;
}


gint
calendar_config_get_day_end_hour    (void)
{
    return config->day_end_hour;
}


void
calendar_config_set_day_end_hour    (gint         day_end_hour)
{
    config->day_end_hour = day_end_hour;
}


gint
calendar_config_get_day_end_minute  (void)
{
    return config->day_end_minute;
}


void
calendar_config_set_day_end_minute  (gint         day_end_min)
{
    config->day_end_minute = day_end_min;
}


/* The time divisions in the Day/Work-Week view in minutes (5/10/15/30/60). */
gint
calendar_config_get_time_divisions  (void)
{
    return config->time_divisions;
}


void
calendar_config_set_time_divisions  (gint         divisions)
{
    config->time_divisions = divisions;
}


/* Whether we show week numbers in the Date Navigator. */
gboolean
calendar_config_get_dnav_show_week_no   (void)
{
    return config->dnav_show_week_no;
}


void
calendar_config_set_dnav_show_week_no   (gboolean     show_week_no)
{
    config->dnav_show_week_no = show_week_no;
}


/* The view to show on start-up, 0 = Day, 1 = WorkWeek, 2 = Week, 3 = Month. */
gint
calendar_config_get_default_view    (void)
{
    return config->view;
}


void
calendar_config_set_default_view    (gint         view)
{
    config->view = view;
}


/* The positions of the panes in the normal and month views. */
gfloat
calendar_config_get_hpane_pos       (void)
{
    return config->hpane_pos;
}


void
calendar_config_set_hpane_pos       (gfloat       hpane_pos)
{
    config->hpane_pos = hpane_pos;
}


gfloat
calendar_config_get_vpane_pos       (void)
{
    return config->vpane_pos;
}


void
calendar_config_set_vpane_pos       (gfloat       vpane_pos)
{
    config->vpane_pos = vpane_pos;
}


gfloat
calendar_config_get_month_hpane_pos (void)
{
    return config->month_hpane_pos;
}


void
calendar_config_set_month_hpane_pos (gfloat       hpane_pos)
{
    config->month_hpane_pos = hpane_pos;
}


gfloat
calendar_config_get_month_vpane_pos (void)
{
    return config->month_vpane_pos;
}


void
calendar_config_set_month_vpane_pos (gfloat       vpane_pos)
{
    config->month_vpane_pos = vpane_pos;
}


/* Whether we compress the weekend in the week/month views. */
gboolean
calendar_config_get_compress_weekend    (void)
{
    return config->compress_weekend;
}


void
calendar_config_set_compress_weekend    (gboolean     compress)
{
    config->compress_weekend = compress;
}


/* Whether we show event end times. */
gboolean
calendar_config_get_show_event_end  (void)
{
    return config->show_event_end;
}


void
calendar_config_set_show_event_end  (gboolean     show_end)
{
    config->show_event_end = show_end;
}


/* The working days of the week, a bit-wise combination of flags. */
CalWeekdays
calendar_config_get_working_days    (void)
{
    return config->working_days;
}


void
calendar_config_set_working_days    (CalWeekdays  days)
{
    config->working_days = days;
}


/* This sets all the common config settings for an ECalendar widget.
   These are the week start day, and whether we show week numbers. */
void
calendar_config_configure_e_calendar    (ECalendar  *cal)
{
    gboolean dnav_show_week_no;
    gint week_start_day;

    dnav_show_week_no = calendar_config_get_dnav_show_week_no ();

    /* Note that this is 0 (Sun) to 6 (Sat). */
    week_start_day = calendar_config_get_week_start_day ();

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

    gnome_canvas_item_set (GNOME_CANVAS_ITEM (cal->calitem),
                   "show_week_numbers", dnav_show_week_no,
                   "week_start_day", week_start_day,
                   NULL);
}


/* This sets all the common config settings for an EDateEdit widget.
   These are the week start day, whether we show week numbers, whether we
   use 24 hour format, and the hours of the working day to use in the time
   popup. */
void
calendar_config_configure_e_date_edit   (EDateEdit  *dedit)
{
    gboolean dnav_show_week_no, use_24_hour;
    gint week_start_day, start_hour, end_hour;

    dnav_show_week_no = calendar_config_get_dnav_show_week_no ();

    /* Note that this is 0 (Sun) to 6 (Sat). */
    week_start_day = calendar_config_get_week_start_day ();

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

    use_24_hour = calendar_config_get_24_hour_format ();

    start_hour = calendar_config_get_day_start_hour ();
    end_hour = calendar_config_get_day_end_hour ();
    /* Round up the end hour. */
    if (calendar_config_get_day_end_minute () != 0)
        end_hour = end_hour + 1 % 24;

    e_date_edit_set_week_start_day (dedit, week_start_day);
    e_date_edit_set_show_week_numbers (dedit, dnav_show_week_no);
    e_date_edit_set_use_24_hour_format (dedit, use_24_hour);
    e_date_edit_set_time_popup_range (dedit, start_hour, end_hour);
}