aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-config-offline.c
blob: 1342abbbb2f8fcef08c1198563a4129953f486d2 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-shell-config-offline.c - Configuration page for offline synchronization.
 *
 * Copyright (C) 2002 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.
 *
 * Author: Ettore Perazzoli <ettore@ximian.com>
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif


#include "e-shell-config-offline.h"

#include "evolution-config-control.h"
#include "e-storage-set-view.h"

#include "Evolution.h"

#include <gconf/gconf-client.h>

#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtksignal.h>


struct _PageData {
    EShell *shell;
    GtkWidget *storage_set_view;
    EvolutionConfigControl *config_control;
};
typedef struct _PageData PageData;


/* Callbacks.  */

static void
config_control_destroy_notify (void *data,
                   GObject *where_the_config_control_was)
{
    PageData *page_data;

    page_data = (PageData *) data;
    gtk_widget_destroy (page_data->storage_set_view);
    g_free (page_data);
}

static void
config_control_apply_callback (EvolutionConfigControl *config_control,
                   void *data)
{
    GConfClient *gconf_client;
    PageData *page_data;
    GSList *checked_paths;

    page_data = (PageData *) data;

    checked_paths = e_storage_set_view_get_checkboxes_list (E_STORAGE_SET_VIEW (page_data->storage_set_view));

    gconf_client = gconf_client_get_default ();

    gconf_client_set_list (gconf_client, "/apps/evolution/shell/offline/folder_paths",
                   GCONF_VALUE_STRING, checked_paths, NULL);

    g_slist_foreach (checked_paths, (GFunc) g_free, NULL);
    g_slist_free (checked_paths);

    g_object_unref (gconf_client);
}

static void
storage_set_view_checkboxes_changed_callback (EStorageSetView *storage_set_view,
                          void *data)
{
    PageData *page_data;

    page_data = (PageData *) data;
    evolution_config_control_changed (page_data->config_control);
}


/* Construction.  */

static void
init_storage_set_view_status_from_config (EStorageSetView *storage_set_view,
                      EShell *shell)
{
    GConfClient *gconf_client;
    GSList *list;

    gconf_client = gconf_client_get_default ();

    list = gconf_client_get_list (gconf_client, "/apps/evolution/shell/offline/folder_paths",
                      GCONF_VALUE_STRING, NULL);

    e_storage_set_view_set_checkboxes_list (storage_set_view, list);

    g_slist_foreach (list, (GFunc) g_free, NULL);
    g_slist_free (list);

    g_object_unref (gconf_client);
}

static gboolean
storage_set_view_has_checkbox_func (EStorageSet *storage_set,
                    const char *path,
                    void *data)
{
    EFolder *folder;

    folder = e_storage_set_get_folder (storage_set, path);
    if (folder == NULL)
        return FALSE;

    return e_folder_get_can_sync_offline (folder);
}

GtkWidget *
e_shell_config_offline_create_widget (EShell *shell, EvolutionConfigControl *control)
{
    PageData *page_data;
    GtkWidget *scrolled_window;

    g_return_val_if_fail (E_IS_SHELL (shell), NULL);

    page_data = g_new (PageData, 1);
    page_data->shell = shell;

    page_data->storage_set_view = e_storage_set_create_new_view (e_shell_get_storage_set (shell), NULL);
        e_storage_set_view_set_show_checkboxes (E_STORAGE_SET_VIEW (page_data->storage_set_view), TRUE,
                        storage_set_view_has_checkbox_func, NULL);
    gtk_widget_show (page_data->storage_set_view);

    init_storage_set_view_status_from_config (E_STORAGE_SET_VIEW (page_data->storage_set_view), shell);
    g_signal_connect (page_data->storage_set_view, "checkboxes_changed",
              G_CALLBACK (storage_set_view_checkboxes_changed_callback), page_data);

    scrolled_window = gtk_scrolled_window_new (NULL, NULL);
    gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window), GTK_SHADOW_IN);
    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
                    GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
    gtk_container_add (GTK_CONTAINER (scrolled_window), page_data->storage_set_view);
    gtk_widget_show (scrolled_window);

    page_data->config_control = control;

    g_signal_connect (page_data->config_control, "apply",
              G_CALLBACK (config_control_apply_callback), page_data);

    g_object_weak_ref (G_OBJECT (page_data->config_control), config_control_destroy_notify, page_data);

    return scrolled_window;
}