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
|
/*
* Copyright (C) 2008 Collabora Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "webkitwebnavigationaction.h"
#include "FrameLoaderTypes.h"
#include "webkitenumtypes.h"
#include "webkitglobalsprivate.h"
#include <glib/gi18n-lib.h>
#include <string.h>
#include <wtf/Assertions.h>
static void webkit_web_navigation_action_set_target_frame(WebKitWebNavigationAction* navigationAction, const gchar* targetFrame);
/**
* SECTION:webkitwebnavigationaction
* @short_description: Object used to report details of navigation actions
*
* #WebKitWebNavigationAction is used in signals to provide details about
* what led the navigation to happen. This includes, for instance, if the user
* clicked a link to start that navigation, and what mouse button was used.
*/
struct _WebKitWebNavigationActionPrivate {
WebKitWebNavigationReason reason;
gchar* originalUri;
gint button;
gint modifier_state;
gchar* targetFrame;
};
enum {
PROP_0,
PROP_REASON,
PROP_ORIGINAL_URI,
PROP_BUTTON,
PROP_MODIFIER_STATE,
PROP_TARGET_FRAME
};
G_DEFINE_TYPE(WebKitWebNavigationAction, webkit_web_navigation_action, G_TYPE_OBJECT)
static void webkit_web_navigation_action_get_property(GObject* object, guint propertyId, GValue* value, GParamSpec* pspec)
{
WebKitWebNavigationAction* navigationAction = WEBKIT_WEB_NAVIGATION_ACTION(object);
switch(propertyId) {
case PROP_REASON:
g_value_set_enum(value, webkit_web_navigation_action_get_reason(navigationAction));
break;
case PROP_ORIGINAL_URI:
g_value_set_string(value, webkit_web_navigation_action_get_original_uri(navigationAction));
break;
case PROP_BUTTON:
g_value_set_int(value, webkit_web_navigation_action_get_button(navigationAction));
break;
case PROP_MODIFIER_STATE:
g_value_set_int(value, webkit_web_navigation_action_get_modifier_state(navigationAction));
break;
case PROP_TARGET_FRAME:
g_value_set_string(value, webkit_web_navigation_action_get_target_frame(navigationAction));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec);
break;
}
}
static void webkit_web_navigation_action_set_property(GObject* object, guint propertyId, const GValue* value, GParamSpec* pspec)
{
WebKitWebNavigationAction* navigationAction = WEBKIT_WEB_NAVIGATION_ACTION(object);
WebKitWebNavigationActionPrivate* priv = navigationAction->priv;
switch(propertyId) {
case PROP_REASON:
webkit_web_navigation_action_set_reason(navigationAction, (WebKitWebNavigationReason)g_value_get_enum(value));
break;
case PROP_ORIGINAL_URI:
webkit_web_navigation_action_set_original_uri(navigationAction, g_value_get_string(value));
break;
case PROP_BUTTON:
priv->button = g_value_get_int(value);
break;
case PROP_MODIFIER_STATE:
priv->modifier_state = g_value_get_int(value);
break;
case PROP_TARGET_FRAME:
webkit_web_navigation_action_set_target_frame(navigationAction, g_value_get_string(value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec);
break;
}
}
static void webkit_web_navigation_action_init(WebKitWebNavigationAction* navigationAction)
{
navigationAction->priv = G_TYPE_INSTANCE_GET_PRIVATE(navigationAction, WEBKIT_TYPE_WEB_NAVIGATION_ACTION, WebKitWebNavigationActionPrivate);
}
static void webkit_web_navigation_action_finalize(GObject* obj)
{
WebKitWebNavigationAction* navigationAction = WEBKIT_WEB_NAVIGATION_ACTION(obj);
WebKitWebNavigationActionPrivate* priv = navigationAction->priv;
g_free(priv->originalUri);
g_free(priv->targetFrame);
G_OBJECT_CLASS(webkit_web_navigation_action_parent_class)->finalize(obj);
}
static void webkit_web_navigation_action_class_init(WebKitWebNavigationActionClass* requestClass)
{
GObjectClass* objectClass = G_OBJECT_CLASS(requestClass);
objectClass->get_property = webkit_web_navigation_action_get_property;
objectClass->set_property = webkit_web_navigation_action_set_property;
objectClass->finalize = webkit_web_navigation_action_finalize;
/**
* WebKitWebNavigationAction:reason:
*
* The reason why this navigation is occuring.
*
* Since: 1.0.3
*/
g_object_class_install_property(objectClass, PROP_REASON,
g_param_spec_enum("reason",
_("Reason"),
_("The reason why this navigation is occurring"),
WEBKIT_TYPE_WEB_NAVIGATION_REASON,
WEBKIT_WEB_NAVIGATION_REASON_OTHER,
(GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT)));
/**
* WebKitWebNavigationAction:original-uri:
*
* The URI that was requested as the target for the navigation.
*
* Since: 1.0.3
*/
g_object_class_install_property(objectClass, PROP_ORIGINAL_URI,
g_param_spec_string("original-uri",
_("Original URI"),
_("The URI that was requested as the target for the navigation"),
"",
(GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT)));
/**
* WebKitWebNavigationAction:button:
*
* The GTK+ identifier for the mouse button used to click. Notice that GTK+ button values
* are 1, 2 and 3 for left, middle and right buttons, so they are DOM button values +1. If the action was not
* initiated by a mouse click the value will be -1.
*
* Since: 1.0.3
*/
g_object_class_install_property(objectClass, PROP_BUTTON,
g_param_spec_int("button",
_("Button"),
_("The button used to click"),
-1,
G_MAXINT,
-1,
(GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)));
/**
* WebKitWebNavigationAction:modifier-state:
*
* The state of the modifier keys when the action was requested.
*
* Since: 1.0.3
*/
g_object_class_install_property(objectClass, PROP_MODIFIER_STATE,
g_param_spec_int("modifier-state",
_("Modifier state"),
_("A bitmask representing the state of the modifier keys"),
0,
G_MAXINT,
0,
(GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)));
/**
* WebKitWebNavigationAction:target-frame:
*
* The target frame for the navigation.
*
* Since: 1.1.13
*/
g_object_class_install_property(objectClass, PROP_TARGET_FRAME,
g_param_spec_string("target-frame",
_("Target frame"),
_("The target frame for the navigation"),
NULL,
(GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)));
g_type_class_add_private(requestClass, sizeof(WebKitWebNavigationActionPrivate));
}
/**
* webkit_web_navigation_action_get_reason:
* @navigationAction: a #WebKitWebNavigationAction
*
* Returns the reason why WebKit is requesting a navigation.
*
* Return value: a #WebKitWebNavigationReason
*
* Since: 1.0.3
*/
WebKitWebNavigationReason webkit_web_navigation_action_get_reason(WebKitWebNavigationAction* navigationAction)
{
g_return_val_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction), WEBKIT_WEB_NAVIGATION_REASON_OTHER);
return navigationAction->priv->reason;
}
/**
* webkit_web_navigation_action_set_reason:
* @navigationAction: a #WebKitWebNavigationAction
* @reason: a #WebKitWebNavigationReason
*
* Sets the reason why WebKit is requesting a navigation.
*
* Since: 1.0.3
*/
void webkit_web_navigation_action_set_reason(WebKitWebNavigationAction* navigationAction, WebKitWebNavigationReason reason)
{
g_return_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction));
if (navigationAction->priv->reason == reason)
return;
navigationAction->priv->reason = reason;
g_object_notify(G_OBJECT(navigationAction), "reason");
}
/**
* webkit_web_navigation_action_get_original_uri:
* @navigationAction: a #WebKitWebNavigationAction
*
* Returns the URI that was originally requested. This may differ from the
* navigation target, for instance because of a redirect.
*
* Return value: the originally requested URI
*
* Since: 1.0.3
*/
const gchar* webkit_web_navigation_action_get_original_uri(WebKitWebNavigationAction* navigationAction)
{
g_return_val_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction), NULL);
return navigationAction->priv->originalUri;
}
/**
* webkit_web_navigation_action_set_original_uri:
* @navigationAction: a #WebKitWebNavigationAction
* @originalUri: a URI
*
* Sets the URI that was originally requested. This may differ from the
* navigation target, for instance because of a redirect.
*
* Since: 1.0.3
*/
void webkit_web_navigation_action_set_original_uri(WebKitWebNavigationAction* navigationAction, const gchar* originalUri)
{
g_return_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction));
g_return_if_fail(originalUri);
if (navigationAction->priv->originalUri &&
(!strcmp(navigationAction->priv->originalUri, originalUri)))
return;
g_free(navigationAction->priv->originalUri);
navigationAction->priv->originalUri = g_strdup(originalUri);
g_object_notify(G_OBJECT(navigationAction), "original-uri");
}
/**
* webkit_web_navigation_action_get_button:
* @navigationAction: a #WebKitWebNavigationAction
*
* The GTK+ identifier for the mouse button used to click. Notice that GTK+ button values
* are 1, 2 and 3 for left, middle and right buttons, so they are DOM button values +1. If the action was not
* initiated by a mouse click the value will be -1.
*
* Return value: the mouse button used to click
*
* Since: 1.0.3
*/
gint webkit_web_navigation_action_get_button(WebKitWebNavigationAction* navigationAction)
{
g_return_val_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction), -1);
return navigationAction->priv->button;
}
/**
* webkit_web_navigation_action_get_modifier_state:
* @navigationAction: a #WebKitWebNavigationAction
*
* Returns a bitmask with the the state of the modifier keys.
*
* Return value: a bitmask with the state of the modifier keys
*
* Since: 1.0.3
*/
gint webkit_web_navigation_action_get_modifier_state(WebKitWebNavigationAction* navigationAction)
{
g_return_val_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction), 0);
return navigationAction->priv->modifier_state;
}
/**
* webkit_web_navigation_action_get_target_frame:
* @navigationAction: a #WebKitWebNavigationAction
*
* Returns the target frame of the action.
*
* Return value: the target frame of the action or NULL
* if there is no target.
*
* Since: 1.1.13
*/
const gchar* webkit_web_navigation_action_get_target_frame(WebKitWebNavigationAction* navigationAction)
{
g_return_val_if_fail(WEBKIT_IS_WEB_NAVIGATION_ACTION(navigationAction), NULL);
return navigationAction->priv->targetFrame;
}
static void webkit_web_navigation_action_set_target_frame(WebKitWebNavigationAction* navigationAction, const gchar* targetFrame)
{
if (!g_strcmp0(navigationAction->priv->targetFrame, targetFrame))
return;
g_free(navigationAction->priv->targetFrame);
navigationAction->priv->targetFrame = g_strdup(targetFrame);
g_object_notify(G_OBJECT(navigationAction), "target-frame");
}
namespace WebKit {
WebKitWebNavigationReason kit(WebCore::NavigationType type)
{
return (WebKitWebNavigationReason)type;
}
WebCore::NavigationType core(WebKitWebNavigationReason type)
{
return static_cast<WebCore::NavigationType>(type);
}
}
|