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
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2004 Christian Persch
*
* This file is part of Epiphany.
*
* Epiphany 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 3 of the License, or
* (at your option) any later version.
*
* Epiphany 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 Epiphany. If not, see <http://www.gnu.org/licenses/>.
*/
#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];
G_DEFINE_INTERFACE (EphyLink, ephy_link, G_TYPE_OBJECT)
static void
ephy_link_default_init (EphyLinkInterface *iface)
{
/**
* 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 (EphyLinkInterface, open_link),
ephy_signal_accumulator_object, ephy_embed_get_type,
NULL,
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);
}
/**
* 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, keyval = (guint) - 1;
EphyLinkFlags flags = 0;
ephy_gui_get_current_event (&type, &state, &button, &keyval);
if (button == GDK_BUTTON_MIDDLE && (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 {
gboolean navigation_keys = (keyval == GDK_KEY_Left) || (keyval == GDK_KEY_Right);
if (((state == (GDK_MOD1_MASK | GDK_SHIFT_MASK)) && !navigation_keys) ||
(state == (GDK_CONTROL_MASK | GDK_SHIFT_MASK))) {
flags = EPHY_LINK_NEW_WINDOW;
} else if (((state == GDK_MOD1_MASK) && !navigation_keys) || (state == GDK_CONTROL_MASK)) {
flags = EPHY_LINK_NEW_TAB | EPHY_LINK_NEW_TAB_APPEND_AFTER | EPHY_LINK_JUMP_TO;
}
}
return flags;
}
|