aboutsummaryrefslogtreecommitdiffstats
path: root/modules/settings/e-settings-spell-checker.c
blob: 22669668dfe4797d9edeea2030a647e1fd01a5ee (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
/*
 * e-settings-spell-checker.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-settings-spell-checker.h"

#include <e-util/e-util.h>

#define E_SETTINGS_SPELL_CHECKER_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), E_TYPE_SETTINGS_SPELL_CHECKER, ESettingsSpellCheckerPrivate))

struct _ESettingsSpellCheckerPrivate {
    gint placeholder;
};

G_DEFINE_DYNAMIC_TYPE (
    ESettingsSpellChecker,
    e_settings_spell_checker,
    E_TYPE_EXTENSION)

static ESpellChecker *
settings_spell_checker_get_extensible (ESettingsSpellChecker *extension)
{
    EExtensible *extensible;

    extensible = e_extension_get_extensible (E_EXTENSION (extension));

    return E_SPELL_CHECKER (extensible);
}

static void
settings_spell_checker_constructed (GObject *object)
{
    ESpellChecker *spell_checker;
    GSettings *settings;
    gchar **strv;
    guint ii;

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

    /* This only initializes the active spell languages, it does not
     * write changes back to GSettings.  Only the ESpellChecker used
     * in Composer Preferences should be doing that. */

    spell_checker = settings_spell_checker_get_extensible (
        E_SETTINGS_SPELL_CHECKER (object));

    /* Make sure there are no active languages at this point. */
    g_warn_if_fail (
        e_spell_checker_count_active_languages (spell_checker) == 0);

    settings = g_settings_new ("org.gnome.evolution.mail");
    strv = g_settings_get_strv (settings, "composer-spell-languages");
    g_object_unref (settings);

    g_return_if_fail (strv != NULL);

    for (ii = 0; strv[ii] != NULL; ii++)
        e_spell_checker_set_language_active (
            spell_checker, strv[ii], TRUE);

    g_strfreev (strv);
}

static void
e_settings_spell_checker_class_init (ESettingsSpellCheckerClass *class)
{
    GObjectClass *object_class;
    EExtensionClass *extension_class;

    g_type_class_add_private (
        class, sizeof (ESettingsSpellCheckerPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->constructed = settings_spell_checker_constructed;

    extension_class = E_EXTENSION_CLASS (class);
    extension_class->extensible_type = E_TYPE_SPELL_CHECKER;
}

static void
e_settings_spell_checker_class_finalize (ESettingsSpellCheckerClass *class)
{
}

static void
e_settings_spell_checker_init (ESettingsSpellChecker *extension)
{
    extension->priv = E_SETTINGS_SPELL_CHECKER_GET_PRIVATE (extension);
}

void
e_settings_spell_checker_type_register (GTypeModule *type_module)
{
    /* XXX G_DEFINE_DYNAMIC_TYPE declares a static type registration
     *     function, so we have to wrap it with a public function in
     *     order to register types from a separate compilation unit. */
    e_settings_spell_checker_register_type (type_module);
}