[evolution/webkit-composer: 43/210] Add action to open WebKit Inspector from the test application



commit 847b4ff13e73ca0dfee437f73fe1b647c0d1dad8
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]