⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inspectorclientgtk.cpp

📁 linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自WebKit
💻 CPP
字号:
/* * Copyright (C) 2008 Gustavo Noronha Silva * *  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 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 *  Lesser General Public License for more details. * *  You should have received a copy of the GNU Lesser General Public *  License along with this library; if not, write to the Free Software *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA */#include "config.h"#include "InspectorClientGtk.h"#include "webkitwebview.h"#include "webkitwebinspector.h"#include "webkitprivate.h"#include "CString.h"#include "InspectorController.h"#include "NotImplemented.h"#include "PlatformString.h"using namespace WebCore;namespace WebKit {static void notifyWebViewDestroyed(WebKitWebView* webView, InspectorClient* inspectorClient){    inspectorClient->webViewDestroyed();}InspectorClient::InspectorClient(WebKitWebView* webView)    : m_webView(0)    , m_inspectedWebView(webView)    , m_webInspector(0){}void InspectorClient::inspectorDestroyed(){    if (m_webView) {        gboolean handled = FALSE;        g_signal_emit_by_name(m_webInspector, "destroy", &handled);        /* we can now dispose our own reference */        g_object_unref(m_webInspector);    }    delete this;}void InspectorClient::webViewDestroyed(){    m_webView = 0;    core(m_inspectedWebView)->inspectorController()->pageDestroyed();    // createPage will be called again, if the user chooses to inspect    // something else, and the inspector will be referenced again,    // there.    g_object_unref(m_webInspector);}Page* InspectorClient::createPage(){    if (m_webView)      return core(m_webView);    // This g_object_get will ref the inspector. We're not doing an    // unref if this method succeeds because the inspector object must    // be alive even after the inspected WebView is destroyed - the    // close-window and destroy signals still need to be    // emitted.    WebKitWebInspector* webInspector;    g_object_get(m_inspectedWebView, "web-inspector", &webInspector, NULL);    m_webInspector = webInspector;    g_signal_emit_by_name(m_webInspector, "inspect-web-view", m_inspectedWebView, &m_webView);    if (!m_webView) {        g_object_unref(m_webInspector);        return 0;    }    webkit_web_inspector_set_web_view(m_webInspector, m_webView);    g_signal_connect(m_webView, "destroy",                     G_CALLBACK(notifyWebViewDestroyed), (gpointer)this);    webkit_web_view_open(m_webView, "file://"DATA_DIR"/webkit-1.0/webinspector/inspector.html");    gtk_widget_show(GTK_WIDGET(m_webView));    return core(m_webView);}String InspectorClient::localizedStringsURL(){    notImplemented();    return String();}String InspectorClient::hiddenPanels(){    notImplemented();    return String();}void InspectorClient::showWindow(){    if (!m_webView)        return;    gboolean handled = FALSE;    g_signal_emit_by_name(m_webInspector, "show-window", &handled);    core(m_inspectedWebView)->inspectorController()->setWindowVisible(true);}void InspectorClient::closeWindow(){    if (!m_webView)        return;    gboolean handled = FALSE;    g_signal_emit_by_name(m_webInspector, "close-window", &handled);    core(m_inspectedWebView)->inspectorController()->setWindowVisible(false);}void InspectorClient::attachWindow(){    if (!m_webView)        return;    gboolean handled = FALSE;    g_signal_emit_by_name(m_webInspector, "attach-window", &handled);}void InspectorClient::detachWindow(){    if (!m_webView)        return;    gboolean handled = FALSE;    g_signal_emit_by_name(m_webInspector, "detach-window", &handled);}void InspectorClient::setAttachedWindowHeight(unsigned height){    notImplemented();}void InspectorClient::highlight(Node* node){    notImplemented();}void InspectorClient::hideHighlight(){    notImplemented();}void InspectorClient::inspectedURLChanged(const String& newURL){    if (!m_webView)        return;    webkit_web_inspector_set_inspected_uri(m_webInspector, newURL.utf8().data());}void InspectorClient::populateSetting(const String& key, InspectorController::Setting& setting){    notImplemented();}void InspectorClient::storeSetting(const String& key, const InspectorController::Setting& setting){    notImplemented();}void InspectorClient::removeSetting(const String& key){    notImplemented();}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -