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
|
/*
* e-settings-content-editor.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.
*
* 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 Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include "e-settings-content-editor.h"
#include <e-util/e-util.h>
#define E_SETTINGS_CONTENT_EDITOR_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), E_TYPE_SETTINGS_CONTENT_EDITOR, ESettingsContentEditorPrivate))
struct _ESettingsContentEditorPrivate {
GSettings *settings;
GHashTable *old_settings;
};
G_DEFINE_DYNAMIC_TYPE (
ESettingsContentEditor,
e_settings_content_editor,
E_TYPE_EXTENSION)
static void
settings_content_editor_inline_spelling_changed (ESettingsContentEditor *extension,
gboolean spell_check_enabled)
{
EExtensible *extensible;
EContentEditor *cnt_editor;
extensible = e_extension_get_extensible (E_EXTENSION (extension));
cnt_editor = e_html_editor_get_content_editor (E_HTML_EDITOR (extensible));
e_content_editor_set_spell_check_enabled (cnt_editor, spell_check_enabled);
}
static void
settings_content_editor_load_style (ESettingsContentEditor *extension)
{
EExtensible *extensible;
EContentEditor *cnt_editor;
extensible = e_extension_get_extensible (E_EXTENSION (extension));
cnt_editor = e_html_editor_get_content_editor (E_HTML_EDITOR (extensible));
e_content_editor_update_styles (cnt_editor);
}
static void
settings_content_editor_changed_cb (GSettings *settings,
const gchar *key,
ESettingsContentEditor *extension)
{
GVariant *new_value, *old_value;
new_value = g_settings_get_value (settings, key);
old_value = g_hash_table_lookup (extension->priv->old_settings, key);
if (!new_value || !old_value || !g_variant_equal (new_value, old_value)) {
if (new_value)
g_hash_table_insert (extension->priv->old_settings, g_strdup (key), new_value);
else
g_hash_table_remove (extension->priv->old_settings, key);
if (g_strcmp0 (key, "composer-inline-spelling") == 0)
settings_content_editor_inline_spelling_changed (extension, g_settings_get_boolean (settings, key));
else
settings_content_editor_load_style (extension);
} else if (new_value) {
g_variant_unref (new_value);
}
}
static void
settings_content_editor_html_editor_realize_cb (GtkWidget *html_editor,
ESettingsContentEditor *extension)
{
GSettings *settings;
settings = extension->priv->settings;
settings_content_editor_inline_spelling_changed (extension, g_settings_get_boolean (settings, "composer-inline-spelling"));
settings_content_editor_load_style (extension);
/* Reload the web view when certain settings change. */
g_signal_connect (
settings, "changed::use-custom-font",
G_CALLBACK (settings_content_editor_changed_cb), extension);
g_signal_connect (
settings, "changed::monospace-font",
G_CALLBACK (settings_content_editor_changed_cb), extension);
g_signal_connect (
settings, "changed::variable-width-font",
G_CALLBACK (settings_content_editor_changed_cb), extension);
g_signal_connect (
settings, "changed::mark-citations",
G_CALLBACK (settings_content_editor_changed_cb), extension);
g_signal_connect (
settings, "changed::citation-color",
G_CALLBACK (settings_content_editor_changed_cb), extension);
g_signal_connect (
settings, "changed::composer-inline-spelling",
G_CALLBACK (settings_content_editor_changed_cb), extension);
}
static void
settings_content_editor_dispose (GObject *object)
{
ESettingsContentEditorPrivate *priv;
priv = E_SETTINGS_CONTENT_EDITOR_GET_PRIVATE (object);
if (priv->settings != NULL) {
g_signal_handlers_disconnect_by_func (
priv->settings,
settings_content_editor_changed_cb, object);
}
g_clear_object (&priv->settings);
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (e_settings_content_editor_parent_class)->dispose (object);
}
static void
settings_content_editor_finalize (GObject *object)
{
ESettingsContentEditorPrivate *priv;
priv = E_SETTINGS_CONTENT_EDITOR_GET_PRIVATE (object);
if (priv->old_settings) {
g_hash_table_destroy (priv->old_settings);
priv->old_settings = NULL;
}
/* Chain up to parent's finalize() method. */
G_OBJECT_CLASS (e_settings_content_editor_parent_class)->finalize (object);
}
static void
settings_content_editor_constructed (GObject *object)
{
EExtensible *extensible;
/* Chain up to parent's method. */
G_OBJECT_CLASS (e_settings_content_editor_parent_class)->constructed (object);
extensible = e_extension_get_extensible (E_EXTENSION (object));
g_signal_connect (
extensible, "realize",
G_CALLBACK (settings_content_editor_html_editor_realize_cb), object);
}
static void
e_settings_content_editor_class_init (ESettingsContentEditorClass *class)
{
GObjectClass *object_class;
EExtensionClass *extension_class;
g_type_class_add_private (class, sizeof (ESettingsContentEditorPrivate));
object_class = G_OBJECT_CLASS (class);
object_class->dispose = settings_content_editor_dispose;
object_class->finalize = settings_content_editor_finalize;
object_class->constructed = settings_content_editor_constructed;
extension_class = E_EXTENSION_CLASS (class);
extension_class->extensible_type = E_TYPE_HTML_EDITOR;
}
static void
e_settings_content_editor_class_finalize (ESettingsContentEditorClass *class)
{
}
static void
e_settings_content_editor_init (ESettingsContentEditor *extension)
{
GSettings *settings;
extension->priv = E_SETTINGS_CONTENT_EDITOR_GET_PRIVATE (extension);
settings = e_util_ref_settings ("org.gnome.evolution.mail");
extension->priv->settings = settings;
extension->priv->old_settings = g_hash_table_new_full (
g_str_hash, g_str_equal, g_free, (GDestroyNotify) g_variant_unref);
}
void
e_settings_content_editor_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_content_editor_register_type (type_module);
}
|