aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-book-source-config.c
blob: 56d9771d9f23faa173c69065eacd4f8459ca2ba9 (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
/*
 * e-book-source-config.c
 *
 * 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/>
 *
 */

#include "e-book-source-config.h"

#include <config.h>
#include <glib/gi18n-lib.h>

#define E_BOOK_SOURCE_CONFIG_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), E_TYPE_BOOK_SOURCE_CONFIG, EBookSourceConfigPrivate))

struct _EBookSourceConfigPrivate {
    GtkWidget *default_button;
    GtkWidget *autocomplete_button;
};

G_DEFINE_TYPE (
    EBookSourceConfig,
    e_book_source_config,
    E_TYPE_SOURCE_CONFIG)

static ESource *
book_source_config_ref_default (ESourceConfig *config)
{
    ESourceRegistry *registry;

    registry = e_source_config_get_registry (config);

    return e_source_registry_ref_default_address_book (registry);
}

static void
book_source_config_set_default (ESourceConfig *config,
                                ESource *source)
{
    ESourceRegistry *registry;

    registry = e_source_config_get_registry (config);

    e_source_registry_set_default_address_book (registry, source);
}

static void
book_source_config_dispose (GObject *object)
{
    EBookSourceConfigPrivate *priv;

    priv = E_BOOK_SOURCE_CONFIG_GET_PRIVATE (object);

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

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

    /* Chain up to parent's dispose() method. */
    G_OBJECT_CLASS (e_book_source_config_parent_class)->dispose (object);
}

static void
book_source_config_constructed (GObject *object)
{
    EBookSourceConfigPrivate *priv;
    ESource *default_source;
    ESource *original_source;
    ESourceConfig *config;
    GObjectClass *class;
    GtkWidget *widget;
    const gchar *label;

    /* Chain up to parent's constructed() method. */
    class = G_OBJECT_CLASS (e_book_source_config_parent_class);
    class->constructed (object);

    config = E_SOURCE_CONFIG (object);
    priv = E_BOOK_SOURCE_CONFIG_GET_PRIVATE (object);

    label = _("Mark as default address book");
    widget = gtk_check_button_new_with_label (label);
    priv->default_button = g_object_ref_sink (widget);
    gtk_widget_show (widget);

    label = _("Autocomplete with this address book");
    widget = gtk_check_button_new_with_label (label);
    priv->autocomplete_button = g_object_ref_sink (widget);
    gtk_widget_show (widget);

    default_source = book_source_config_ref_default (config);
    original_source = e_source_config_get_original_source (config);

    if (original_source != NULL) {
        gboolean active;

        active = e_source_equal (original_source, default_source);
        g_object_set (priv->default_button, "active", active, NULL);
    }

    g_object_unref (default_source);

    e_source_config_insert_widget (
        config, NULL, NULL, priv->default_button);

    e_source_config_insert_widget (
        config, NULL, NULL, priv->autocomplete_button);
}

static const gchar *
book_source_config_get_backend_extension_name (ESourceConfig *config)
{
    return E_SOURCE_EXTENSION_ADDRESS_BOOK;
}

static GList *
book_source_config_list_eligible_collections (ESourceConfig *config)
{
    GQueue trash = G_QUEUE_INIT;
    GList *list, *link;

    /* Chain up to parent's list_eligible_collections() method. */
    list = E_SOURCE_CONFIG_CLASS (e_book_source_config_parent_class)->
        list_eligible_collections (config);

    for (link = list; link != NULL; link = g_list_next (link)) {
        ESource *source = E_SOURCE (link->data);
        ESourceCollection *extension;
        const gchar *extension_name;

        extension_name = E_SOURCE_EXTENSION_COLLECTION;
        extension = e_source_get_extension (source, extension_name);

        if (!e_source_collection_get_contacts_enabled (extension))
            g_queue_push_tail (&trash, link);
    }

    /* Remove ineligible collections from the list. */
    while ((link = g_queue_pop_head (&trash)) != NULL) {
        g_object_unref (link->data);
        list = g_list_delete_link (list, link);
    }

    return list;
}

static void
book_source_config_init_candidate (ESourceConfig *config,
                                   ESource *scratch_source)
{
    EBookSourceConfigPrivate *priv;
    ESourceConfigClass *class;
    ESourceExtension *extension;
    const gchar *extension_name;

    /* Chain up to parent's init_candidate() method. */
    class = E_SOURCE_CONFIG_CLASS (e_book_source_config_parent_class);
    class->init_candidate (config, scratch_source);

    priv = E_BOOK_SOURCE_CONFIG_GET_PRIVATE (config);

    extension_name = E_SOURCE_EXTENSION_AUTOCOMPLETE;
    extension = e_source_get_extension (scratch_source, extension_name);

    g_object_bind_property (
        extension, "include-me",
        priv->autocomplete_button, "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);
}

static void
book_source_config_commit_changes (ESourceConfig *config,
                                   ESource *scratch_source)
{
    EBookSourceConfigPrivate *priv;
    ESourceConfigClass *class;
    ESource *default_source;
    GtkToggleButton *toggle_button;

    priv = E_BOOK_SOURCE_CONFIG_GET_PRIVATE (config);
    toggle_button = GTK_TOGGLE_BUTTON (priv->default_button);

    /* Chain up to parent's commit_changes() method. */
    class = E_SOURCE_CONFIG_CLASS (e_book_source_config_parent_class);
    class->commit_changes (config, scratch_source);

    default_source = book_source_config_ref_default (config);

    /* The default setting is a little tricky to get right.  If
     * the toggle button is active, this ESource is now the default.
     * That much is simple.  But if the toggle button is NOT active,
     * then we have to inspect the old default.  If this ESource WAS
     * the default, reset the default to 'system'.  If this ESource
     * WAS NOT the old default, leave it alone. */
    if (gtk_toggle_button_get_active (toggle_button))
        book_source_config_set_default (config, scratch_source);
    else if (e_source_equal (scratch_source, default_source))
        book_source_config_set_default (config, NULL);

    g_object_unref (default_source);
}

static void
e_book_source_config_class_init (EBookSourceConfigClass *class)
{
    GObjectClass *object_class;
    ESourceConfigClass *source_config_class;

    g_type_class_add_private (class, sizeof (EBookSourceConfigPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->dispose = book_source_config_dispose;
    object_class->constructed = book_source_config_constructed;

    source_config_class = E_SOURCE_CONFIG_CLASS (class);
    source_config_class->get_backend_extension_name =
        book_source_config_get_backend_extension_name;
    source_config_class->list_eligible_collections =
        book_source_config_list_eligible_collections;
    source_config_class->init_candidate = book_source_config_init_candidate;
    source_config_class->commit_changes = book_source_config_commit_changes;
}

static void
e_book_source_config_init (EBookSourceConfig *config)
{
    config->priv = E_BOOK_SOURCE_CONFIG_GET_PRIVATE (config);
}

GtkWidget *
e_book_source_config_new (ESourceRegistry *registry,
                          ESource *original_source)
{
    g_return_val_if_fail (E_IS_SOURCE_REGISTRY (registry), NULL);

    if (original_source != NULL)
        g_return_val_if_fail (E_IS_SOURCE (original_source), NULL);

    return g_object_new (
        E_TYPE_BOOK_SOURCE_CONFIG, "registry", registry,
        "original-source", original_source, NULL);
}

void
e_book_source_config_add_offline_toggle (EBookSourceConfig *config,
                                         ESource *scratch_source)
{
    GtkWidget *widget;
    ESourceExtension *extension;
    const gchar *extension_name;

    g_return_if_fail (E_IS_BOOK_SOURCE_CONFIG (config));
    g_return_if_fail (E_IS_SOURCE (scratch_source));

    extension_name = E_SOURCE_EXTENSION_OFFLINE;
    extension = e_source_get_extension (scratch_source, extension_name);

    widget = gtk_check_button_new_with_label (
        _("Copy book content locally for offline operation"));
    e_source_config_insert_widget (
        E_SOURCE_CONFIG (config), scratch_source, NULL, widget);
    gtk_widget_show (widget);

    g_object_bind_property (
        extension, "stay-synchronized",
        widget, "active",
        G_BINDING_BIDIRECTIONAL |
        G_BINDING_SYNC_CREATE);
}