aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-navigation-action.c
blob: 7677f85984552b9f2693392794465733e9738b66 (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
501
502
503
504
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Copyright © 2003, 2004 Marco Pesenti Gritti
 *  Copyright © 2003, 2004 Christian Persch
 *
 *  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.
 *
 *  $Id$
 */

#include "config.h"

#include "ephy-navigation-action.h"
#include "ephy-type-builtins.h"
#include "ephy-window.h"
#include "ephy-favicon-cache.h"
#include "ephy-history.h"
#include "ephy-embed-container.h"
#include "ephy-embed-shell.h"
#include "ephy-embed-utils.h"
#include "ephy-history-item.h"
#include "ephy-link.h"
#include "ephy-gui.h"
#include "ephy-debug.h"

#include <gtk/gtk.h>

#define HISTORY_ITEM_DATA_KEY   "HistoryItem"
#define URL_DATA_KEY            "GoURL"

#define EPHY_NAVIGATION_ACTION_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_NAVIGATION_ACTION, EphyNavigationActionPrivate))

struct _EphyNavigationActionPrivate
{
    EphyWindow *window;
    EphyNavigationDirection direction;
    char *arrow_tooltip;
    guint statusbar_cid;
};

enum
{
    PROP_0,
    PROP_ARROW_TOOLTIP,
    PROP_DIRECTION,
    PROP_WINDOW
};

static void ephy_navigation_action_init       (EphyNavigationAction *action);
static void ephy_navigation_action_class_init (EphyNavigationActionClass *class);

G_DEFINE_TYPE (EphyNavigationAction, ephy_navigation_action, EPHY_TYPE_LINK_ACTION)

#define MAX_LABEL_LENGTH 48

static GtkWidget *
new_history_menu_item (const char *origtext,
               const char *address)
{
    EphyFaviconCache *cache;
    EphyHistory *history;
    GtkWidget *item, *image;
    GdkPixbuf *icon = NULL;
    GtkLabel *label;
    const char *icon_address;

    g_return_val_if_fail (address != NULL && origtext != NULL, NULL);

    item = gtk_image_menu_item_new_with_label (origtext);

    label = GTK_LABEL (GTK_BIN (item)->child);
    gtk_label_set_ellipsize (label, PANGO_ELLIPSIZE_END);
    gtk_label_set_max_width_chars (label, MAX_LABEL_LENGTH);

    history = EPHY_HISTORY
        (ephy_embed_shell_get_global_history (embed_shell));
    icon_address = ephy_history_get_icon (history, address);

    cache = EPHY_FAVICON_CACHE
        (ephy_embed_shell_get_favicon_cache (embed_shell));
    icon = ephy_favicon_cache_get (cache, icon_address);

    if (icon != NULL)
    {
        image = gtk_image_new_from_pixbuf (icon);
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
        gtk_widget_show (image);
        g_object_unref (icon);
    }

    gtk_widget_show (item);

    return item;
}

static void
activate_back_or_forward_menu_item_cb (GtkWidget *menuitem,
                       EphyNavigationAction *action)
{
    EphyHistoryItem *item;
    EphyEmbed *embed;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (action->priv->window));
    g_return_if_fail (embed != NULL);

    if (ephy_gui_is_middle_click ())
    {
        embed = ephy_link_open (EPHY_LINK (action), "about:blank", NULL,
                        EPHY_LINK_NEW_TAB);
        g_return_if_fail (embed != NULL);
    }

    item = (EphyHistoryItem*)g_object_get_data (G_OBJECT (menuitem), HISTORY_ITEM_DATA_KEY);
    g_return_if_fail (item != NULL);

    ephy_embed_go_to_history_item (embed, item);
}

static void
select_menu_item_cb (GtkWidget *menuitem,
                 EphyNavigationAction *action)
{
    char *url;
    GtkWidget *statusbar;
    EphyHistoryItem *item;
    char *freeme = NULL;

    item = (EphyHistoryItem*)g_object_get_data (G_OBJECT (menuitem), HISTORY_ITEM_DATA_KEY);
    if (item)
    {
        url = ephy_history_item_get_url (item);
        freeme = url;
    }
    else
    {
        url = g_object_get_data (G_OBJECT (menuitem), URL_DATA_KEY);
        g_return_if_fail (url != NULL);
    }

    statusbar = ephy_window_get_statusbar (action->priv->window);

    gtk_statusbar_push (GTK_STATUSBAR (statusbar), action->priv->statusbar_cid, url);

    g_free (freeme);
}

static void
deselect_menu_item_cb (GtkWidget *menuitem,
                   EphyNavigationAction *action)
{
    GtkWidget *statusbar;

    statusbar = ephy_window_get_statusbar (action->priv->window);

    gtk_statusbar_pop (GTK_STATUSBAR (statusbar), action->priv->statusbar_cid);
}

static void
activate_up_menu_item_cb (GtkWidget *menuitem,
              EphyNavigationAction *action)
{
    EphyEmbed *embed;
    char *url;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (action->priv->window));
    g_return_if_fail (embed != NULL);

    url = g_object_get_data (G_OBJECT (menuitem), URL_DATA_KEY);
    g_return_if_fail (url != NULL);

    ephy_link_open (EPHY_LINK (action), url, NULL,
            ephy_gui_is_middle_click () ? EPHY_LINK_NEW_TAB : 0);
}

static GtkWidget *
build_back_or_forward_menu (EphyNavigationAction *action)
{
    EphyWindow *window = action->priv->window;
    GtkMenuShell *menu;
    EphyEmbed *embed;
    GList *list, *l;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window));
    g_return_val_if_fail (embed != NULL, NULL);

    if (action->priv->direction == EPHY_NAVIGATION_DIRECTION_BACK)
        list = ephy_embed_get_backward_history (embed);
    else
        list = ephy_embed_get_forward_history (embed);

    menu = GTK_MENU_SHELL (gtk_menu_new ());

    l = list;

    for (l = list; l != NULL; l = l->next)
    {
        GtkWidget *item;
        EphyHistoryItem *hitem;
        char *title, *url;

        hitem = (EphyHistoryItem*)l->data;
        url = ephy_history_item_get_url (hitem);
        title = ephy_history_item_get_title (hitem);

        item = new_history_menu_item (title ? title : url, url);

        g_free (title);

        g_object_set_data_full (G_OBJECT (item), HISTORY_ITEM_DATA_KEY, hitem,
                    (GDestroyNotify) g_object_unref);

        g_signal_connect (item, "activate",
                  G_CALLBACK (activate_back_or_forward_menu_item_cb),
                  action);
        g_signal_connect (item, "select",
                  G_CALLBACK (select_menu_item_cb),
                  action);
        g_signal_connect (item, "deselect",
                  G_CALLBACK (deselect_menu_item_cb),
                  action);

        gtk_menu_shell_append (menu, item);
        gtk_widget_show_all (item);
    }
    
    g_list_free (list);

    return GTK_WIDGET (menu);
}

static GtkWidget *
build_up_menu (EphyNavigationAction *action)
{
    EphyWindow *window = action->priv->window;
    EphyEmbed *embed;
    EphyHistory *history;
    GtkMenuShell *menu;
    GtkWidget *item;
    GSList *list, *l;
    char *url;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window));
    g_return_val_if_fail (embed != NULL, NULL);

    menu = GTK_MENU_SHELL (gtk_menu_new ());

        history = EPHY_HISTORY
        (ephy_embed_shell_get_global_history (embed_shell));

    list = ephy_embed_get_go_up_list (embed);

    for (l = list; l != NULL; l = l->next)
    {
        EphyNode *node;
        const char *title = NULL;

        url = l->data;

        if (url == NULL) continue;

        node = ephy_history_get_page (history, url);
        if (node != NULL)
        {
            title = ephy_node_get_property_string (node, EPHY_NODE_PAGE_PROP_TITLE);
        }

        item = new_history_menu_item (title ? title : url, url);

        g_object_set_data_full (G_OBJECT (item), URL_DATA_KEY, url,
                    (GDestroyNotify) g_free);
        g_signal_connect (item, "activate",
                  G_CALLBACK (activate_up_menu_item_cb), action);
        g_signal_connect (item, "select",
                  G_CALLBACK (select_menu_item_cb), action);
        g_signal_connect (item, "deselect",
                  G_CALLBACK (deselect_menu_item_cb), action);

        gtk_menu_shell_append (menu, item);
        gtk_widget_show (item);
    }

    /* the list data has been consumed */
    g_slist_free (list);

    return GTK_WIDGET (menu);
}

static void
menu_activated_cb (GtkMenuToolButton *button,
           EphyNavigationAction *action)
{
    GtkWidget *menu = NULL;

    LOG ("menu_activated_cb dir %d", action->priv->direction);

    switch (action->priv->direction)
    {
        case EPHY_NAVIGATION_DIRECTION_UP:
            menu = build_up_menu (action);
            break;
        case EPHY_NAVIGATION_DIRECTION_FORWARD:
        case EPHY_NAVIGATION_DIRECTION_BACK:
            menu = build_back_or_forward_menu (action);
            break;
        default:
            g_assert_not_reached ();
            break;
    }

    gtk_menu_tool_button_set_menu (button, menu);
}

static void
connect_proxy (GtkAction *gaction,
           GtkWidget *proxy)
{
    LOG ("Connect navigation action proxy");

    if (GTK_IS_MENU_TOOL_BUTTON (proxy))
    {
        EphyNavigationAction *action = EPHY_NAVIGATION_ACTION (gaction);
        EphyNavigationActionPrivate *priv = action->priv;
        GtkMenuToolButton *button = GTK_MENU_TOOL_BUTTON (proxy);
        GtkWidget *menu;

        /* set dummy menu so the arrow gets sensitive */
        menu = gtk_menu_new ();
        gtk_menu_tool_button_set_menu (button, menu);
        gtk_menu_tool_button_set_arrow_tooltip_text (button, priv->arrow_tooltip);

        g_signal_connect (proxy, "show-menu",
                  G_CALLBACK (menu_activated_cb), gaction);
    }

    GTK_ACTION_CLASS (ephy_navigation_action_parent_class)->connect_proxy (gaction, proxy);
}

static void
ephy_navigation_action_activate (GtkAction *gtk_action)
{
    EphyNavigationAction *action = EPHY_NAVIGATION_ACTION (gtk_action);
    EphyWindow *window = action->priv->window;
    EphyEmbed *embed;
    WebKitWebView *web_view;

    embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window));
    g_return_if_fail (embed != NULL);

    web_view = EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed);

    if (action->priv->direction == EPHY_NAVIGATION_DIRECTION_BACK)
    {
        if (ephy_gui_is_middle_click ())
        {
            embed = ephy_link_open (EPHY_LINK (action),
                        "about:blank",
                        NULL,
                        EPHY_LINK_NEW_TAB);
        }
        webkit_web_view_go_back (web_view);
    }
    else if (action->priv->direction == EPHY_NAVIGATION_DIRECTION_FORWARD)
    {
        if (ephy_gui_is_middle_click ())
        {
            embed = ephy_link_open (EPHY_LINK (action),
                        "about:blank",
                        NULL,
                        EPHY_LINK_NEW_TAB);
        }
        webkit_web_view_go_forward (web_view);
    }
    else if (action->priv->direction == EPHY_NAVIGATION_DIRECTION_UP)
    {
        GSList *up_list;
        
        up_list = ephy_embed_get_go_up_list (embed);
        ephy_link_open (EPHY_LINK (action),
                up_list->data,
                NULL,
                ephy_gui_is_middle_click () ? EPHY_LINK_NEW_TAB : 0);
        g_slist_free (up_list);
    }
}

static void
ephy_navigation_action_init (EphyNavigationAction *action)
{
    action->priv = EPHY_NAVIGATION_ACTION_GET_PRIVATE (action);
}

static void
ephy_navigation_action_finalize (GObject *object)
{
    EphyNavigationAction *action = EPHY_NAVIGATION_ACTION (object);

    g_free (action->priv->arrow_tooltip);

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

static void
ephy_navigation_action_set_property (GObject *object,
                     guint prop_id,
                     const GValue *value,
                     GParamSpec *pspec)
{
    EphyNavigationAction *nav = EPHY_NAVIGATION_ACTION (object);

    switch (prop_id)
    {
        case PROP_ARROW_TOOLTIP:
            nav->priv->arrow_tooltip = g_value_dup_string (value);
            g_object_notify (object, "tooltip");
            break;
        case PROP_DIRECTION:
            nav->priv->direction = g_value_get_int (value);
            break;
        case PROP_WINDOW:
            {
                GtkWidget *statusbar;

                nav->priv->window = EPHY_WINDOW (g_value_get_object (value));

                /* statusbar context to display current selected item */
                statusbar = ephy_window_get_statusbar (nav->priv->window);

                nav->priv->statusbar_cid = gtk_statusbar_get_context_id (
                                GTK_STATUSBAR (statusbar), 
                                "navigation_message");
            }
            break;
    }
}

static void
ephy_navigation_action_get_property (GObject *object,
                     guint prop_id,
                     GValue *value,
                     GParamSpec *pspec)
{
    EphyNavigationAction *nav = EPHY_NAVIGATION_ACTION (object);

    switch (prop_id)
    {
        case PROP_ARROW_TOOLTIP:
            g_value_set_string (value, nav->priv->arrow_tooltip);
            break;
        case PROP_DIRECTION:
            g_value_set_int (value, nav->priv->direction);
            break;
        case PROP_WINDOW:
            g_value_set_object (value, nav->priv->window);
            break;
    }
}

static void
ephy_navigation_action_class_init (EphyNavigationActionClass *class)
{
    GObjectClass *object_class = G_OBJECT_CLASS (class);
    GtkActionClass *action_class = GTK_ACTION_CLASS (class);

    object_class->finalize = ephy_navigation_action_finalize;
    object_class->set_property = ephy_navigation_action_set_property;
    object_class->get_property = ephy_navigation_action_get_property;

    action_class->toolbar_item_type = GTK_TYPE_MENU_TOOL_BUTTON;
    action_class->connect_proxy = connect_proxy;
    action_class->activate = ephy_navigation_action_activate;

    g_object_class_install_property (object_class,
                     PROP_ARROW_TOOLTIP,
                     g_param_spec_string ("arrow-tooltip", NULL, NULL,
                                  NULL,
                                  G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));

    g_object_class_install_property (object_class,
                     PROP_DIRECTION,
                     g_param_spec_int ("direction", NULL, NULL,
                               0,
                               G_MAXINT,
                               0,
                               G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
    g_object_class_install_property (object_class,
                     PROP_WINDOW,
                     g_param_spec_object ("window", NULL, NULL,
                                  G_TYPE_OBJECT,
                                  G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));

    g_type_class_add_private (object_class, sizeof (EphyNavigationActionPrivate));
}