aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/cal-prefs-dialog.h
blob: 5c92570d3757a76b5e75c0a8ec6e46c0f33f7d7c (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/* 
 * Author : 
 *  Damon Chaplin <damon@ximian.com>
 *
 * Copyright 2000, Ximian, Inc.
 * Copyright 2000, Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of version 2 of the GNU General Public 
 * License as published by the Free Software Foundation.
 *
 * 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
 */

/*
 * CalPrefsDialog - a GtkObject which handles a libglade-loaded dialog
 * to edit the calendar preference settings.
 */

#ifndef _CAL_PREFS_DIALOG_H_
#define _CAL_PREFS_DIALOG_H_

#include <gtk/gtk.h>
#include <glade/glade.h>
#include <gconf/gconf.h>
#include <gconf/gconf-client.h>
#include "../e-pub-utils.h"
#include "evolution-config-control.h"

G_BEGIN_DECLS

enum {
    URL_LIST_ENABLED_COLUMN,
    URL_LIST_LOCATION_COLUMN,
    URL_LIST_FREE_BUSY_URL_COLUMN,
    URL_LIST_N_COLUMNS
};

struct _DialogData {
    /* Glade XML data */
    GladeXML *xml;
    
    GConfClient *gconf;

    GtkWidget *page;

    GtkWidget *timezone;
    GtkWidget *working_days[7];
    GtkWidget *week_start_day;
    GtkWidget *start_of_day;
    GtkWidget *end_of_day;
    GtkWidget *use_12_hour;
    GtkWidget *use_24_hour;
    GtkWidget *time_divisions;
    GtkWidget *show_end_times;
    GtkWidget *compress_weekend;
    GtkWidget *dnav_show_week_no;

    /* Widgets for the task list options */
    GtkWidget *tasks_due_today_color;
    GtkWidget *tasks_overdue_color;

    GtkWidget *tasks_hide_completed_checkbutton;
    GtkWidget *tasks_hide_completed_spinbutton;
    GtkWidget *tasks_hide_completed_optionmenu;
    
    /* Widgets for the Free/Busy options */
    GtkWidget *url_add;
    GtkWidget *url_edit;
    GtkWidget *url_remove;
    GtkWidget *url_enable;
    GtkTreeView *url_list;
    gboolean url_editor;
    GtkWidget* url_editor_dlg;
    guint destroyed : 1;

    /* widgets for the Free/Busy template */
    GtkWidget *template_url;
        
    /* Other page options */
    GtkWidget *confirm_delete;
    GtkWidget *default_reminder;
    GtkWidget *default_reminder_interval;
    GtkWidget *default_reminder_units;
};
typedef struct _DialogData DialogData;

EvolutionConfigControl *cal_prefs_dialog_new (void);

G_END_DECLS

#endif /* _CAL_PREFS_DIALOG_H_ */