/* * Copyright (C) 2014 Igalia S.L. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2,1 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 "WebKitWebHitTestResult.h" #include "InjectedBundleHitTestResult.h" #include "WebKitDOMNodePrivate.h" #include "WebKitPrivate.h" #include "WebKitWebHitTestResultPrivate.h" #include #include #include using namespace WebKit; using namespace WebCore; /** * SECTION: WebKitWebHitTestResult * @Short_description: Result of a Hit Test (Web Process Extensions) * @Title: WebKitWebHitTestResult * @See_also: #WebKitHitTestResult, #WebKitWebPage * * WebKitWebHitTestResult extends #WebKitHitTestResult to provide information * about the #WebKitDOMNode in the coordinates of the Hit Test. * * Since: 2.8 */ enum { PROP_0, PROP_NODE }; struct _WebKitWebHitTestResultPrivate { GRefPtr node; }; WEBKIT_DEFINE_TYPE(WebKitWebHitTestResult, webkit_web_hit_test_result, WEBKIT_TYPE_HIT_TEST_RESULT) static void webkitWebHitTestResultGetProperty(GObject* object, guint propId, GValue* value, GParamSpec* paramSpec) { WebKitWebHitTestResult* webHitTestResult = WEBKIT_WEB_HIT_TEST_RESULT(object); switch (propId) { case PROP_NODE: g_value_set_object(value, webkit_web_hit_test_result_get_node(webHitTestResult)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, paramSpec); } } static void webkitWebHitTestResultSetProperty(GObject* object, guint propId, const GValue* value, GParamSpec* paramSpec) { WebKitWebHitTestResult* webHitTestResult = WEBKIT_WEB_HIT_TEST_RESULT(object); switch (propId) { case PROP_NODE: { gpointer node = g_value_get_object(value); webHitTestResult->priv->node = node ? WEBKIT_DOM_NODE(node) : nullptr; break; } default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, paramSpec); } } static void webkit_web_hit_test_result_class_init(WebKitWebHitTestResultClass* klass) { GObjectClass* gObjectClass = G_OBJECT_CLASS(klass); gObjectClass->get_property = webkitWebHitTestResultGetProperty; gObjectClass->set_property = webkitWebHitTestResultSetProperty; /** * WebKitWebHitTestResult:node: * * The #WebKitDOMNode */ g_object_class_install_property( gObjectClass, PROP_NODE, g_param_spec_object( "node", _("Node"), _("The WebKitDOMNode"), WEBKIT_DOM_TYPE_NODE, static_cast(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY))); } WebKitWebHitTestResult* webkitWebHitTestResultCreate(const HitTestResult& hitTestResult) { unsigned context = WEBKIT_HIT_TEST_RESULT_CONTEXT_DOCUMENT; String absoluteLinkURL = hitTestResult.absoluteLinkURL().string(); if (!absoluteLinkURL.isEmpty()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK; String absoluteImageURL = hitTestResult.absoluteImageURL().string(); if (!absoluteImageURL.isEmpty()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE; String absoluteMediaURL = hitTestResult.absoluteMediaURL().string(); if (!absoluteMediaURL.isEmpty()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_MEDIA; if (hitTestResult.isContentEditable()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_EDITABLE; if (hitTestResult.scrollbar()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_SCROLLBAR; if (hitTestResult.isSelected()) context |= WEBKIT_HIT_TEST_RESULT_CONTEXT_SELECTION; String linkTitle = hitTestResult.titleDisplayString(); String linkLabel = hitTestResult.textContent(); return WEBKIT_WEB_HIT_TEST_RESULT(g_object_new(WEBKIT_TYPE_WEB_HIT_TEST_RESULT, "context", context, "link-uri", context & WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK ? absoluteLinkURL.utf8().data() : nullptr, "image-uri", context & WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE ? absoluteImageURL.utf8().data() : nullptr, "media-uri", context & WEBKIT_HIT_TEST_RESULT_CONTEXT_MEDIA ? absoluteMediaURL.utf8().data() : nullptr, "link-title", !linkTitle.isEmpty() ? linkTitle.utf8().data() : nullptr, "link-label", !linkLabel.isEmpty() ? linkLabel.utf8().data() : nullptr, "node", kit(hitTestResult.innerNonSharedNode()), nullptr)); } /** * webkit_web_hit_test_result_get_node: * @hit_test_result: a #WebKitWebHitTestResult * * Get the #WebKitDOMNode in the coordinates of the Hit Test. * * Returns: (transfer none): a #WebKitDOMNode * * Since: 2.8 */ WebKitDOMNode* webkit_web_hit_test_result_get_node(WebKitWebHitTestResult* webHitTestResult) { g_return_val_if_fail(WEBKIT_IS_WEB_HIT_TEST_RESULT(webHitTestResult), nullptr); return webHitTestResult->priv->node.get(); }