aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-encoding-dialog.c
blob: ac5d89a1cbb9b11eb6031db4a9c138023ac22a74 (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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Copyright © 2000, 2001, 2002, 2003 Marco Pesenti Gritti
 *  Copyright © 2003, 2004 Christian Persch
 *  Copyright © 2012 Igalia S.L.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "config.h"
#include "ephy-encoding-dialog.h"

#include "ephy-debug.h"
#include "ephy-embed-container.h"
#include "ephy-embed-shell.h"
#include "ephy-embed-utils.h"
#include "ephy-embed.h"
#include "ephy-encodings.h"
#include "ephy-file-helpers.h"
#include "ephy-gui.h"
#include "ephy-shell.h"

#include <glib/gi18n.h>
#include <gtk/gtk.h>
#ifdef HAVE_WEBKIT2
#include <webkit2/webkit2.h>
#else
#include <webkit/webkit.h>
#endif

#define EPHY_ENCODING_DIALOG_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_ENCODING_DIALOG, EphyEncodingDialogPrivate))

struct _EphyEncodingDialogPrivate
{
    EphyEncodings *encodings;
    EphyWindow *window;
    EphyEmbed *embed;
    GtkWidget *enc_view;
    gboolean update_tag;
    char *selected_encoding;
};

enum {
    COL_TITLE_ELIDED,
    COL_ENCODING,
    NUM_COLS
};
    
G_DEFINE_TYPE (EphyEncodingDialog, ephy_encoding_dialog, EPHY_TYPE_EMBED_DIALOG)

static void
select_encoding_row (GtkTreeView *view, EphyEncoding *encoding)
{
    GtkTreeIter iter;
    GtkTreeModel *model;
    gboolean valid_iter = FALSE;
    const char *target_encoding;

    model = gtk_tree_view_get_model (view);
    valid_iter = gtk_tree_model_get_iter_first (model, &iter);

    target_encoding = ephy_encoding_get_encoding (encoding);

    while (valid_iter)
    {
        char *encoding_string = NULL;

        gtk_tree_model_get (model, &iter,
                    COL_ENCODING, &encoding_string, -1);

        if (g_str_equal (encoding_string,
                 target_encoding))
        {
            GtkTreeSelection *selection;

            selection = gtk_tree_view_get_selection (view);
            gtk_tree_selection_select_iter (selection, &iter);
            g_free (encoding_string);

            return;
        }

        g_free (encoding_string);
        valid_iter = gtk_tree_model_iter_next (model, &iter);
    }
}

static void
sync_encoding_against_embed (EphyEncodingDialog *dialog)
{
    EphyEmbed *embed;
        GtkTreeSelection *selection;
        GtkTreeModel *model;
        GList *rows;
    GtkWidget *button;
    const char *encoding;
    gboolean is_automatic = FALSE;
    WebKitWebView *view;
    EphyEncoding *node;

    dialog->priv->update_tag = TRUE;

    embed = ephy_embed_dialog_get_embed (EPHY_EMBED_DIALOG (dialog));
    g_return_if_fail (EPHY_IS_EMBED (embed));

    view = EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed);
#ifdef HAVE_WEBKIT2
    encoding = webkit_web_view_get_custom_charset (view);
    if (encoding == NULL) goto out;
#else
    encoding = webkit_web_view_get_custom_encoding (view);
    if (encoding == NULL)
    {
        encoding = webkit_web_view_get_encoding (view);
        if (encoding == NULL) goto out;
        is_automatic = TRUE;
    }
#endif

    node = ephy_encodings_get_encoding (dialog->priv->encodings, encoding, TRUE);
    g_assert (EPHY_IS_ENCODING (node));

    /* Select the current encoding in the list view. */
    select_encoding_row (GTK_TREE_VIEW (dialog->priv->enc_view), node);

    /* scroll the view so the active encoding is visible */
        selection = gtk_tree_view_get_selection
                (GTK_TREE_VIEW (dialog->priv->enc_view));
    model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->priv->enc_view));
        rows = gtk_tree_selection_get_selected_rows (selection, &model);
        if (rows != NULL)
    {
        gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (dialog->priv->enc_view),
                          (GtkTreePath *) rows->data,
                          NULL, /* column */
                          TRUE,
                          0.5,
                          0.0);
        g_list_foreach (rows, (GFunc)gtk_tree_path_free, NULL);
        g_list_free (rows);
    }

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog),
                      "automatic_button");
    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), is_automatic);
out:
    dialog->priv->update_tag = FALSE;
}


static void
#ifdef HAVE_WEBKIT2
embed_net_stop_cb (EphyWebView *view,
           WebKitLoadEvent load_event,
           EphyEncodingDialog *dialog)
#else
embed_net_stop_cb (EphyWebView *view,
           GParamSpec *pspec,
           EphyEncodingDialog *dialog)
#endif
{
    if (ephy_web_view_is_loading (view) == FALSE)
        sync_encoding_against_embed (dialog);
}

static void
sync_embed_cb (EphyEncodingDialog *dialog, GParamSpec *pspec, gpointer dummy)
{
    EphyEmbed *embed;
    embed = ephy_embed_dialog_get_embed (EPHY_EMBED_DIALOG (dialog));

    if (dialog->priv->embed != NULL)
    {
        g_signal_handlers_disconnect_by_func (dialog->priv->embed,
                              G_CALLBACK (embed_net_stop_cb),
                              dialog);
    }

#ifdef HAVE_WEBKIT2
    g_signal_connect (G_OBJECT (ephy_embed_get_web_view (embed)), "load-changed",
              G_CALLBACK (embed_net_stop_cb), dialog);
#else
    g_signal_connect (G_OBJECT (ephy_embed_get_web_view (embed)), "notify::load-status",
              G_CALLBACK (embed_net_stop_cb), dialog);
#endif
    dialog->priv->embed = embed;

    sync_encoding_against_embed (dialog);
}

static void
sync_active_tab (EphyWindow *window, GParamSpec *pspec, EphyEncodingDialog *dialog)
{
    EphyEmbed *embed;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (dialog->priv->window));

    g_object_set (G_OBJECT (dialog), "embed", embed, NULL);
}

static void
sync_parent_window_cb (EphyEncodingDialog *dialog, GParamSpec *pspec, gpointer dummy)
{
    EphyWindow *window;
    GValue value = { 0, };

    g_return_if_fail (dialog->priv->window == NULL);

    g_value_init (&value, GTK_TYPE_WIDGET);
    g_object_get_property (G_OBJECT (dialog), "parent-window", &value);
    window = EPHY_WINDOW (g_value_get_object (&value));
    g_value_unset (&value);

    g_return_if_fail (EPHY_IS_WINDOW (window));

    dialog->priv->window = window;

    sync_active_tab (window, NULL, dialog);
    g_signal_connect (G_OBJECT (window), "notify::active-child",
              G_CALLBACK (sync_active_tab), dialog);
}

static void
activate_choice (EphyEncodingDialog *dialog)
{
    EphyEmbed *embed;
    GtkWidget *button;
    gboolean is_automatic;
    WebKitWebView *view;

    embed = ephy_embed_dialog_get_embed (EPHY_EMBED_DIALOG (dialog));
    g_return_if_fail (EPHY_IS_EMBED (embed));

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog),
                      "automatic_button");
    is_automatic = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));

    view = EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed);

    if (is_automatic)
    {
#ifdef HAVE_WEBKIT2
        webkit_web_view_set_custom_charset (view, NULL);
#else
        webkit_web_view_set_custom_encoding (view, NULL);
#endif
    }
    else if (dialog->priv->selected_encoding != NULL)
    {
        const char *code;

        code = dialog->priv->selected_encoding;

#ifdef HAVE_WEBKIT2
        webkit_web_view_set_custom_charset (view, code);
#else
        webkit_web_view_set_custom_encoding (view, code);
#endif

        ephy_encodings_add_recent (dialog->priv->encodings, code);
    }
}

static void
ephy_encoding_dialog_response_cb (GtkWidget *widget,
                  int response,
                  EphyEncodingDialog *dialog)
{
    if (response == GTK_RESPONSE_HELP)
    {
        ephy_gui_help (widget, "text-encoding");
        return;
    }

    g_object_unref (dialog);
}

static void
view_row_selected_cb (GtkTreeSelection *selection,
              EphyEncodingDialog *dialog)
{
    GtkWidget *button;
    GtkTreeModel *model;
    GtkTreeIter iter;
    EphyEncodingDialogPrivate *priv = dialog->priv;

    if (gtk_tree_selection_get_selected (selection, &model, &iter))
    {
        char *encoding;

        gtk_tree_model_get (model, &iter,
                    COL_ENCODING, &encoding,
                    -1);

        g_free (priv->selected_encoding);
        priv->selected_encoding = encoding;
    }

    if (dialog->priv->update_tag) 
        return;

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog), "manual_button");
    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);

    activate_choice (dialog);
}

static void
view_row_activated_cb (GtkTreeView *treeview,
               GtkTreePath *path,
               GtkTreeViewColumn *column,
               EphyEncodingDialog *dialog)
{
    GtkWidget *button;
    GtkTreeIter iter;
    char *encoding;
    GtkTreeModel *model;
    EphyEncodingDialogPrivate *priv = dialog->priv;

    model = gtk_tree_view_get_model (treeview);

    gtk_tree_model_get_iter (model, &iter, path);
    gtk_tree_model_get (model, &iter,
                COL_ENCODING, &encoding,
                -1);

    g_free (priv->selected_encoding);
    priv->selected_encoding = encoding;

    if (dialog->priv->update_tag) 
        return;

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog), "manual_button");
    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);

    activate_choice (dialog);

    g_object_unref (dialog);
}

static void
automatic_toggled_cb (GtkToggleButton *button, EphyEncodingDialog *dialog)
{
    if (gtk_toggle_button_get_active (button)
        && dialog->priv->update_tag == FALSE)
    {
        activate_choice (dialog);
    }
}

static void
ephy_encoding_dialog_init (EphyEncodingDialog *dialog)
{
    GtkWidget *treeview, *scroller, *button, *window, *child;
    GtkTreeSelection *selection;
    GList *encodings, *p;
    GtkListStore *store;
    GtkTreeIter iter;
    GtkCellRenderer *renderer;

    dialog->priv = EPHY_ENCODING_DIALOG_GET_PRIVATE (dialog);

    dialog->priv->encodings =
        EPHY_ENCODINGS (ephy_embed_shell_get_encodings
                (EPHY_EMBED_SHELL (ephy_shell_get_default ())));

    ephy_dialog_construct (EPHY_DIALOG (dialog),
                   "/org/gnome/epiphany/epiphany.ui",
                   "encoding_dialog",
                   NULL);

    window = ephy_dialog_get_control (EPHY_DIALOG (dialog),
                      "encoding_dialog");
    g_signal_connect (window, "response",
              G_CALLBACK (ephy_encoding_dialog_response_cb), dialog);

    encodings = ephy_encodings_get_all (dialog->priv->encodings);
    store = gtk_list_store_new (NUM_COLS, G_TYPE_STRING, G_TYPE_STRING);
    for (p = encodings; p; p = p->next) 
    {
        EphyEncoding *encoding = EPHY_ENCODING (p->data);

        gtk_list_store_append (store, &iter);
        gtk_list_store_set (store, &iter,
                    COL_TITLE_ELIDED, 
                    ephy_encoding_get_title_elided (encoding),
                    -1);
        gtk_list_store_set (store, &iter,
                    COL_ENCODING, 
                    ephy_encoding_get_encoding (encoding),
                    -1);
    }
    g_list_free (encodings);

    gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store), COL_TITLE_ELIDED,
                          GTK_SORT_ASCENDING);

    treeview = gtk_tree_view_new ();
    renderer = gtk_cell_renderer_text_new ();

    gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview),
                             -1,
                             _("Encodings"),
                             renderer,
                             "text", COL_TITLE_ELIDED,
                             NULL);
    gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), GTK_TREE_MODEL (store));

    selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview));
    gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE);
    gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(treeview), FALSE);

    g_signal_connect (selection, "changed",
              G_CALLBACK (view_row_selected_cb),
              dialog);
    g_signal_connect (treeview, "row-activated",
              G_CALLBACK (view_row_activated_cb),
              dialog);

    gtk_widget_show (treeview);

    scroller = ephy_dialog_get_control (EPHY_DIALOG (dialog),
                        "scrolled_window");
    gtk_container_add (GTK_CONTAINER (scroller), treeview);

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog),
                      "automatic_button");
    child = gtk_bin_get_child (GTK_BIN (button));
    gtk_label_set_use_markup (GTK_LABEL (child), TRUE);
    g_signal_connect (button, "toggled",
              G_CALLBACK (automatic_toggled_cb), dialog);

    button = ephy_dialog_get_control (EPHY_DIALOG (dialog), "manual_button");
    child = gtk_bin_get_child (GTK_BIN (button));
    gtk_label_set_use_markup (GTK_LABEL (child), TRUE);

    dialog->priv->enc_view = treeview;

    g_signal_connect (G_OBJECT (dialog), "notify::parent-window",
              G_CALLBACK (sync_parent_window_cb), NULL);
    g_signal_connect (G_OBJECT (dialog), "notify::embed",
              G_CALLBACK (sync_embed_cb), NULL);
}

static void
ephy_encoding_dialog_finalize (GObject *object)
{
    EphyEncodingDialog *dialog = EPHY_ENCODING_DIALOG (object);

    if (dialog->priv->window != NULL)
    {
        g_signal_handlers_disconnect_by_func (dialog->priv->window,
                              G_CALLBACK (sync_active_tab),
                              dialog);
    }

    if (dialog->priv->embed)
    {
        g_signal_handlers_disconnect_by_func (ephy_embed_get_web_view (dialog->priv->embed),
                              G_CALLBACK (embed_net_stop_cb),
                              dialog);
    }

    g_free (dialog->priv->selected_encoding);

    G_OBJECT_CLASS (ephy_encoding_dialog_parent_class)->finalize (object);
}

static void
ephy_encoding_dialog_class_init (EphyEncodingDialogClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    object_class->finalize = ephy_encoding_dialog_finalize;

    g_type_class_add_private (object_class, sizeof(EphyEncodingDialogPrivate));
}
        
EphyEncodingDialog *
ephy_encoding_dialog_new (EphyWindow *parent)
{
    return g_object_new (EPHY_TYPE_ENCODING_DIALOG,
                 "parent-window", parent,
                 "default-width", 350,
                     "default-height", 420,
                 NULL);
}