[evolution/wip/webkit-composer: 43/262] Add action to open WebKit Inspector from the test application
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/wip/webkit-composer: 43/262] Add action to open WebKit Inspector from the test application
- Date: Thu, 16 Jan 2014 09:51:30 +0000 (UTC)
commit 1a305e098f04a0e1bae8a4cc5d10e65d1ff1295c
Author: Dan Vrátil <dvratil redhat com>
Date: Wed Aug 15 12:59:04 2012 +0200
Add action to open WebKit Inspector from the test application
e-util/test-editor.c | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/e-util/test-editor.c b/e-util/test-editor.c
index f4f9422..d103268 100644
--- a/e-util/test-editor.c
+++ b/e-util/test-editor.c
@@ -47,6 +47,7 @@ static const gchar *view_ui =
" <menuitem action='view-html-output'/>\n"
" <menuitem action='view-html-source'/>\n"
" <menuitem action='view-plain-source'/>\n"
+" <menuitem action='view-inspector'/>\n"
" </menu>\n"
" </menubar>\n"
"</ui>";
@@ -264,6 +265,19 @@ action_view_plain_source (GtkAction *action,
view_source_dialog (editor, _("Plain Source"), "text/plain", FALSE);
}
+static void
+action_view_inspector (GtkAction *action,
+ EEditor *editor)
+{
+ WebKitWebInspector *inspector;
+ EEditorWidget *widget;
+
+ widget = e_editor_get_editor_widget (editor);
+ inspector = webkit_web_view_get_inspector (WEBKIT_WEB_VIEW (widget));
+
+ webkit_web_inspector_show (inspector);
+}
+
static GtkActionEntry file_entries[] = {
{ "print",
@@ -332,6 +346,13 @@ static GtkActionEntry view_entries[] = {
NULL,
G_CALLBACK (action_view_plain_source) },
+ { "view-inspector",
+ NULL,
+ N_("Inspector"),
+ NULL,
+ NULL,
+ G_CALLBACK (action_view_inspector) },
+
{ "view-menu",
NULL,
N_("_View"),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]