aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks/ephy-bookmark-action.c
blob: 4728298348c7d946cdac1007346023a327b43e63 (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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
/*
 *  Copyright © 2003, 2004 Marco Pesenti Gritti
 *  Copyright © 2003, 2004 Christian Persch
 *  Copyright © 2005 Peter Harvey
 *
 *  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-bookmark-action.h"

#include "ephy-bookmarks-ui.h"
#include "ephy-bookmarks.h"
#include "ephy-debug.h"
#include "ephy-dnd.h"
#include "ephy-embed-prefs.h"
#include "ephy-favicon-helpers.h"
#include "ephy-gui.h"
#include "ephy-shell.h"
#include "ephy-string.h"

#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <string.h>

/* FIXME tweak this, or make it configurable? (bug 148093) */
#define LABEL_WIDTH_CHARS       32

#define EPHY_BOOKMARK_ACTION_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_BOOKMARK_ACTION, EphyBookmarkActionPrivate))

struct _EphyBookmarkActionPrivate
{
    EphyNode *node;
    gboolean smart_url;
    guint cache_handler;
};

enum
{
    PROP_0,
    PROP_BOOKMARK,
    PROP_TOOLTIP,
    PROP_LOCATION,
    PROP_SMART_URL,
    PROP_ICON
};

typedef struct
{
    GObject *weak_ptr;
    GtkWidget *entry;
    EphyLinkFlags flags;
} ClipboardCtx;

G_DEFINE_TYPE (EphyBookmarkAction, ephy_bookmark_action, EPHY_TYPE_LINK_ACTION)

#ifdef HAVE_WEBKIT2
static void
favicon_changed_cb (WebKitFaviconDatabase *database,
                    const char *page_address,
                    const char *icon_address,
                    EphyBookmarkAction *action)
{
        const char *icon;

        icon = ephy_node_get_property_string (action->priv->node,
                                              EPHY_NODE_BMK_PROP_ICON);
        if (g_strcmp0 (icon, icon_address) == 0)
        {
                g_signal_handler_disconnect (database, action->priv->cache_handler);
                action->priv->cache_handler = 0;

                g_object_notify (G_OBJECT (action), "icon");
        }
}
#else
static void
favicon_changed_cb (WebKitFaviconDatabase *database,
                    const char *page_address,
                    EphyBookmarkAction *action)
{
    const char *icon;
    char *icon_address;

    g_return_if_fail (action->priv->node != NULL);

    icon = ephy_node_get_property_string (action->priv->node,
                          EPHY_NODE_BMK_PROP_ICON);
    icon_address = webkit_favicon_database_get_favicon_uri (database, page_address);

    if (g_strcmp0 (icon, icon_address) == 0)
    {
        g_signal_handler_disconnect (database, action->priv->cache_handler);
        action->priv->cache_handler = 0;

        g_object_notify (G_OBJECT (action), "icon");
    }

    g_free (icon_address);
}
#endif

static void
async_get_favicon_pixbuf_callback (GObject *source, GAsyncResult *result, gpointer user_data)
{
       GtkWidget *proxy = GTK_WIDGET (user_data);
       WebKitFaviconDatabase *database = WEBKIT_FAVICON_DATABASE (source);
       GdkPixbuf *pixbuf = NULL;

#ifdef HAVE_WEBKIT2
       cairo_surface_t *icon_surface = webkit_favicon_database_get_favicon_finish (database, result, NULL);
       if (icon_surface)
       {
               pixbuf = ephy_pixbuf_get_from_surface_scaled (icon_surface, FAVICON_SIZE, FAVICON_SIZE);
               cairo_surface_destroy (icon_surface);
       }
#else
       pixbuf = webkit_favicon_database_get_favicon_pixbuf_finish (database, result, NULL);
#endif

       if (pixbuf)
       {
               if (GTK_IS_MENU_ITEM (proxy))
               {
                       GtkWidget *image;

                       image = gtk_image_new_from_pixbuf (pixbuf);
                       gtk_widget_show (image);

                       gtk_image_menu_item_set_image
                         (GTK_IMAGE_MENU_ITEM (proxy), image);
                       gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (proxy),
                                                                  TRUE);
               }
               g_object_unref (pixbuf);
       }

       g_object_unref (proxy);
}

static void
ephy_bookmark_action_sync_icon (GtkAction *action,
                GParamSpec *pspec,
                GtkWidget *proxy)
{
    EphyBookmarkAction *bma = EPHY_BOOKMARK_ACTION (action);
    const char *page_location;
    WebKitFaviconDatabase *database;

    g_return_if_fail (bma->priv->node != NULL);

    page_location = ephy_node_get_property_string (bma->priv->node,
                               EPHY_NODE_BMK_PROP_LOCATION);

#ifdef HAVE_WEBKIT2
        database = webkit_web_context_get_favicon_database (webkit_web_context_get_default ());
#else
        database = webkit_get_favicon_database ();
#endif
    if (page_location && *page_location)
    {
#ifndef HAVE_WEBKIT2
                GdkPixbuf *pixbuf = webkit_favicon_database_try_get_favicon_pixbuf (database, page_location,
                                                                                    FAVICON_SIZE, FAVICON_SIZE);
                if (pixbuf == NULL && bma->priv->cache_handler == 0)
                {
                        bma->priv->cache_handler =
                        g_signal_connect_object (database, "icon-loaded",
                                                 G_CALLBACK (favicon_changed_cb),
                                                 action, 0);
                }

                if (GTK_IS_MENU_ITEM (proxy) && pixbuf)
                {
                        GtkWidget *image;

                        image = gtk_image_new_from_pixbuf (pixbuf);
                        gtk_widget_show (image);

                        gtk_image_menu_item_set_image
                                (GTK_IMAGE_MENU_ITEM (proxy), image);
                        gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (proxy),
                                                                  TRUE);
                }

                if (pixbuf)
                {
                        g_object_unref (pixbuf);
                }
#else
                webkit_favicon_database_get_favicon (database, page_location,
                                                     0, async_get_favicon_pixbuf_callback,
                                                     g_object_ref (proxy));
                if (bma->priv->cache_handler == 0)
                {
                    bma->priv->cache_handler =
            g_signal_connect_object
                (database, "favicon-changed",
                 G_CALLBACK (favicon_changed_cb),
                 action, 0);
                }
#endif
    }
}

void
ephy_bookmark_action_activate (EphyBookmarkAction *action,
                   GtkWidget *widget,
                   EphyLinkFlags flags)
{
    EphyBookmarkActionPrivate *priv = action->priv;
    EphyBookmarks *bookmarks;
    const char *location;
    char *address = NULL, *text = NULL;

    g_return_if_fail (priv->node != NULL);

    location = ephy_node_get_property_string
            (priv->node, EPHY_NODE_BMK_PROP_LOCATION);
    g_return_if_fail (location != NULL);
    
    bookmarks = ephy_shell_get_bookmarks (ephy_shell_get_default ());
    
    if (GTK_IS_EDITABLE (widget))
    {
        text = gtk_editable_get_chars (GTK_EDITABLE (widget), 0, -1);
    }
    
    /* The entered search term is empty, and we have a smart bookmark */
    if ((text == NULL || text[0] == '\0') && strstr (location, "%s") != NULL)
    {
        char *scheme;
        char *host_name;

        scheme = g_uri_parse_scheme (location);
        host_name = ephy_string_get_host_name (location);
        address = g_strconcat (scheme,
                       "://",
                       host_name,
                       NULL);
        g_free (scheme);
        g_free (host_name);
    }

    if (address == NULL)
    {
        address = ephy_bookmarks_resolve_address (bookmarks, location, text);
    }
    g_return_if_fail (address != NULL);

    flags |= EPHY_LINK_BOOKMARK;

    ephy_link_open (EPHY_LINK (action), address, NULL, flags);

    g_free (address);
    g_free (text);
}

static void
activate_cb (GtkWidget *widget,
         EphyBookmarkAction *action)
{
       gboolean control = FALSE;
       GdkEvent *event;

       event = gtk_get_current_event ();
       if (event)
       {
           if (event->type == GDK_KEY_PRESS ||
           event->type == GDK_KEY_RELEASE)
           {
               control = (event->key.state & gtk_accelerator_get_default_mod_mask ()) == GDK_CONTROL_MASK;
           }

           gdk_event_free (event);
       }

       ephy_bookmark_action_activate
     (action, widget, (control || ephy_gui_is_middle_click ()) ? EPHY_LINK_NEW_TAB : 0);
}

static void
connect_proxy (GtkAction *action,
           GtkWidget *proxy)
{
    LOG ("Connecting action %p to proxy %p", action, proxy);

    GTK_ACTION_CLASS (ephy_bookmark_action_parent_class)->connect_proxy (action, proxy);

    ephy_bookmark_action_sync_icon (action, NULL, proxy);
    g_signal_connect_object (action, "notify::icon",
                 G_CALLBACK (ephy_bookmark_action_sync_icon), proxy, 0);

    if (GTK_IS_MENU_ITEM (proxy))
    {
        GtkLabel *label;

        label = GTK_LABEL (gtk_bin_get_child (GTK_BIN (proxy)));

        gtk_label_set_use_underline (label, FALSE);
        gtk_label_set_ellipsize (label, PANGO_ELLIPSIZE_END);
        gtk_label_set_max_width_chars (label, LABEL_WIDTH_CHARS);

        g_signal_connect (proxy, "activate", G_CALLBACK (activate_cb), action);
    }
}

void
ephy_bookmark_action_updated (EphyBookmarkAction *action)
{
    GValue value = { 0, };
    EphyBookmarks *bookmarks = ephy_shell_get_bookmarks (ephy_shell);
    EphyNode *smart = ephy_bookmarks_get_smart_bookmarks (bookmarks);
    EphyNode *node = action->priv->node;
    const char *title;
    
    g_return_if_fail (action != NULL);
    g_return_if_fail (node != NULL);
    
    g_object_freeze_notify (G_OBJECT (action));

    /* Set smart_url */
    action->priv->smart_url = ephy_node_has_child (smart, node);
    g_object_notify (G_OBJECT (action), "smarturl");
    
    /* Set title */
    title = ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_TITLE);
    g_value_init (&value, G_TYPE_STRING);
    g_value_set_static_string (&value, title);
    g_object_set_property (G_OBJECT (action), "label", &value);
    g_value_unset (&value);
    
    /* Notify all other properties */
    g_object_notify (G_OBJECT (action), "location");
    g_object_notify (G_OBJECT (action), "icon");
    
    g_object_thaw_notify (G_OBJECT (action));

    /* We could force a tooltip re-query with gtk_tooltip_trigger_tooltip_query
     * here, but it's not really worth it. Just show the updated tip next time
     * the tip is queried.
     */
}

EphyNode *
ephy_bookmark_action_get_bookmark (EphyBookmarkAction *action)
{
    return action->priv->node;
}

void
ephy_bookmark_action_set_bookmark (EphyBookmarkAction *action,
                   EphyNode *node)
{
    EphyBookmarkActionPrivate *priv = action->priv;
    GObject *object = G_OBJECT (action);

    g_return_if_fail (node != NULL);

    priv->node = node;

    g_object_freeze_notify (object);

    g_object_notify (object, "bookmark");
    ephy_bookmark_action_updated (action);

    g_object_thaw_notify (object);
}

static void
ephy_bookmark_action_set_property (GObject *object,
                   guint prop_id,
                   const GValue *value,
                   GParamSpec *pspec)
{
    EphyBookmarkAction *action = EPHY_BOOKMARK_ACTION (object);

    switch (prop_id)
    {
        case PROP_BOOKMARK:
            ephy_bookmark_action_set_bookmark (action, g_value_get_pointer (value));
            break;
        case PROP_TOOLTIP:
        case PROP_LOCATION:
        case PROP_SMART_URL:
        case PROP_ICON:
            /* not writable */
            break;
    }
}

static void
ephy_bookmark_action_get_property (GObject *object,
                   guint prop_id,
                   GValue *value,
                   GParamSpec *pspec)
{
    EphyBookmarkAction *action = EPHY_BOOKMARK_ACTION (object);
    EphyBookmarkActionPrivate *priv = action->priv;

    g_return_if_fail (priv->node != NULL);

    switch (prop_id)
    {
        case PROP_BOOKMARK:
            g_value_set_pointer (value, priv->node);
            break;
        case PROP_TOOLTIP:
        case PROP_LOCATION:
            g_value_set_string (value,
                ephy_node_get_property_string (priv->node,
                    EPHY_NODE_BMK_PROP_LOCATION));
            break;
        case PROP_SMART_URL:
            g_value_set_boolean (value, priv->smart_url);
            break;
        case PROP_ICON:
            g_value_set_string (value,
                ephy_node_get_property_string (priv->node,
                    EPHY_NODE_BMK_PROP_ICON));
            break;
    }
}

static void
ephy_bookmark_action_init (EphyBookmarkAction *action)
{
    action->priv = EPHY_BOOKMARK_ACTION_GET_PRIVATE (action);
    
    action->priv->cache_handler = 0;
}

static void
ephy_bookmark_action_dispose (GObject *object)
{
    EphyBookmarkAction *action = (EphyBookmarkAction *) object;
    EphyBookmarkActionPrivate *priv = action->priv;

    if (priv->cache_handler != 0)
    {
        WebKitFaviconDatabase *database;
#ifdef HAVE_WEBKIT2
                database = webkit_web_context_get_favicon_database (webkit_web_context_get_default ());
#else
                database = webkit_get_favicon_database ();
#endif
        g_signal_handler_disconnect (database, priv->cache_handler);
        priv->cache_handler = 0;
    }

    G_OBJECT_CLASS (ephy_bookmark_action_parent_class)->dispose (object);
}

static void
ephy_bookmark_action_class_init (EphyBookmarkActionClass *class)
{
    GObjectClass *object_class = G_OBJECT_CLASS (class);
    GtkActionClass *action_class = GTK_ACTION_CLASS (class);

    action_class->menu_item_type = GTK_TYPE_IMAGE_MENU_ITEM;
    action_class->connect_proxy = connect_proxy;

    object_class->dispose = ephy_bookmark_action_dispose;
    object_class->set_property = ephy_bookmark_action_set_property;
    object_class->get_property = ephy_bookmark_action_get_property;

    g_object_class_install_property (object_class,
                     PROP_BOOKMARK,
                     g_param_spec_pointer ("bookmark", NULL, NULL,
                                   G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB |
                                   G_PARAM_CONSTRUCT_ONLY));

    /* overwrite GtkActionClass::tooltip, so we can use the url as tooltip */
    g_object_class_install_property (object_class,
                     PROP_TOOLTIP,
                     g_param_spec_string  ("tooltip", NULL, NULL,
                                   NULL,
                                   G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
    
    g_object_class_install_property (object_class,
                     PROP_LOCATION,
                     g_param_spec_string  ("location", NULL, NULL,
                                   NULL,
                                   G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
    g_object_class_install_property (object_class,
                     PROP_SMART_URL,
                     g_param_spec_boolean  ("smarturl", NULL, NULL,
                                FALSE,
                                G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
    g_object_class_install_property (object_class,
                     PROP_ICON,
                     g_param_spec_string  ("icon", NULL, NULL,
                                   NULL,
                                   G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));

    g_type_class_add_private (object_class, sizeof(EphyBookmarkActionPrivate));
}

GtkAction *
ephy_bookmark_action_new (EphyNode *node,
              const char *name)
{
    g_assert (name != NULL);

    return  GTK_ACTION (g_object_new (EPHY_TYPE_BOOKMARK_ACTION,
                      "name", name,
                      "bookmark", node,
                      NULL));
}