aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-link.c
blob: ca735886ced71d9d2b782f466f34e0dbd17bf3b0 (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
/*
 *  Copyright © 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.
 *
 */

#include "config.h"

#include "ephy-link.h"

#include "ephy-embed-utils.h"
#include "ephy-type-builtins.h"
#include "ephy-signal-accumulator.h"
#include "ephy-gui.h"
#include "ephy-debug.h"

enum
{
    OPEN_LINK,
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL];

static void
ephy_link_base_init (gpointer g_class)
{
    static gboolean initialised = FALSE;

    if (!initialised)
    {
        /**
         * EphyLink::open-link:
         * @address: the address of @link
         * @embed: #EphyEmbed associated with @link
         * @flags: flags for @link
         *
         * The ::open-link signal is emitted when @link is requested to
         * open it's associated @address.
         *
         * Returns: (transfer none): the #EphyEmbed where @address has
         * been handled.
         **/
        signals[OPEN_LINK] = g_signal_new
            ("open-link",
             EPHY_TYPE_LINK,
             G_SIGNAL_RUN_LAST,
             G_STRUCT_OFFSET (EphyLinkIface, open_link),
             ephy_signal_accumulator_object, ephy_embed_get_type,
             g_cclosure_marshal_generic,
             GTK_TYPE_WIDGET /* Can't use an interface type here */,
             3,
             G_TYPE_STRING,
             GTK_TYPE_WIDGET /* Can't use an interface type here */,
             EPHY_TYPE_LINK_FLAGS);

        initialised = TRUE;
    }
}

GType
ephy_link_get_type (void)
{
    static GType type = 0;

    if (G_UNLIKELY (type == 0))
    {
        const GTypeInfo our_info =
        {
            sizeof (EphyLinkIface),
            ephy_link_base_init,
            NULL,
        };

        type = g_type_register_static (G_TYPE_INTERFACE,
                           "EphyLink",
                           &our_info, (GTypeFlags)0);
    }

    return type;
}

/**
 * ephy_link_open:
 * @link: an #EphyLink object
 * @address: the address of @link
 * @embed: #EphyEmbed associated with @link
 * @flags: flags for @link
 *
 * Triggers @link open action.
 *
 * Returns: (transfer none): the #EphyEmbed where @link opened.
 */
EphyEmbed *
ephy_link_open (EphyLink *link,
        const char *address,
        EphyEmbed *embed,
        EphyLinkFlags flags)
{
    EphyEmbed *new_embed = NULL;

    LOG ("ephy_link_open address \"%s\" parent-embed %p flags %u", address, embed, flags);

    g_signal_emit (link, signals[OPEN_LINK], 0,
               address, embed, flags,
               &new_embed);

    return new_embed;
}

EphyLinkFlags
ephy_link_flags_from_current_event (void)
{
    GdkEventType type = GDK_NOTHING;
    guint state = 0, button = (guint) -1;
    EphyLinkFlags flags = 0;

    ephy_gui_get_current_event (&type, &state, &button);

    if (button == 2 && (type == GDK_BUTTON_PRESS || type == GDK_BUTTON_RELEASE))
    {
        if (state == GDK_SHIFT_MASK)
        {
            flags = EPHY_LINK_NEW_WINDOW;
        }
        else if (state == 0 || state == GDK_CONTROL_MASK)
        {
            flags = EPHY_LINK_NEW_TAB | EPHY_LINK_NEW_TAB_APPEND_AFTER;
        }
    }
    else
    {
        if (state == (GDK_CONTROL_MASK | GDK_SHIFT_MASK))
        {
            flags = EPHY_LINK_NEW_WINDOW;
        }
        else if (state == GDK_CONTROL_MASK)
        {
            flags = EPHY_LINK_NEW_TAB | EPHY_LINK_NEW_TAB_APPEND_AFTER;
        }
    }

    return flags;
}