aboutsummaryrefslogtreecommitdiffstats
path: root/modules/web-inspector/evolution-web-inspector.c
blob: 6ccba8057764d91644650745e965573cf21c7fac (plain) (blame)
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
/*
 * evolution-web-inspector.c
 *
 * This program 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.
 *
 * This program 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 General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>
#include <glib/gi18n-lib.h>
#include <gdk/gdkkeysyms.h>

#include <libebackend/libebackend.h>

#include <e-util/e-util.h>

/* Standard GObject macros */
#define E_TYPE_WEB_INSPECTOR \
    (e_web_inspector_get_type ())
#define E_WEB_INSPECTOR(obj) \
    (G_TYPE_CHECK_INSTANCE_CAST \
    ((obj), E_TYPE_WEB_INSPECTOR, EWebInspector))

/* <Control>+<Shift>+I */
#define WEB_INSPECTOR_MOD  (GDK_CONTROL_MASK | GDK_SHIFT_MASK)
#define WEB_INSPECTOR_KEY  (GDK_KEY_I)

#define WEB_INSPECTOR_SHORTCUT_SHOW(event) \
    ((((event)->state & WEB_INSPECTOR_MOD) == WEB_INSPECTOR_MOD) && \
    ((event)->keyval == WEB_INSPECTOR_KEY))

typedef struct _EWebInspector EWebInspector;
typedef struct _EWebInspectorClass EWebInspectorClass;

struct _EWebInspector {
    EExtension parent;
};

struct _EWebInspectorClass {
    EExtensionClass parent_class;
};

/* Module Entry Points */
void e_module_load (GTypeModule *type_module);
void e_module_unload (GTypeModule *type_module);

/* Forward Declarations */
GType e_web_inspector_get_type (void);

G_DEFINE_DYNAMIC_TYPE (EWebInspector, e_web_inspector, E_TYPE_EXTENSION)

static WebKitWebView *
web_inspector_get_web_view (EWebInspector *extension)
{
    EExtensible *extensible;

    extensible = e_extension_get_extensible (E_EXTENSION (extension));

    return WEBKIT_WEB_VIEW (extensible);
}

static gboolean
web_inspector_key_press_event_cb (WebKitWebView *web_view,
                                  GdkEventKey *event)
{
    WebKitWebInspector *inspector;
    gboolean handled = FALSE;

    inspector = webkit_web_view_get_inspector (web_view);

    if (WEB_INSPECTOR_SHORTCUT_SHOW (event)) {
        webkit_web_inspector_show (inspector);
        handled = TRUE;
    }

    return handled;
}

static WebKitWebView *
web_inspector_inspect_web_view_cb (WebKitWebInspector *inspector)
{
    GtkWidget *web_view;
    GtkWidget *window;
    const gchar *title;

    title = _("Evolution Web Inspector");
    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    gtk_window_set_title (GTK_WINDOW (window), title);
    gtk_widget_set_size_request (window, 600, 400);
    gtk_widget_show (window);

    web_view = webkit_web_view_new ();
    gtk_container_add (GTK_CONTAINER (window), web_view);
    gtk_widget_show (web_view);

    return WEBKIT_WEB_VIEW (web_view);
}

static void
web_inspector_constructed (GObject *object)
{
    EWebInspector *extension;
    WebKitWebView *web_view;
    WebKitWebSettings *settings;
    WebKitWebInspector *inspector;

    /* Chain up to parent's method. */
    G_OBJECT_CLASS (e_web_inspector_parent_class)->constructed (object);

    extension = E_WEB_INSPECTOR (object);
    web_view = web_inspector_get_web_view (extension);
    settings = webkit_web_view_get_settings (web_view);
    inspector = webkit_web_view_get_inspector (web_view);

    g_object_set (settings, "enable-developer-extras", TRUE, NULL);

    g_signal_connect (
        web_view, "key-press-event",
        G_CALLBACK (web_inspector_key_press_event_cb), NULL);

    g_signal_connect (
        inspector, "inspect-web-view",
        G_CALLBACK (web_inspector_inspect_web_view_cb), NULL);
}

static void
e_web_inspector_class_init (EWebInspectorClass *class)
{
    GObjectClass *object_class;
    EExtensionClass *extension_class;

    object_class = G_OBJECT_CLASS (class);
    object_class->constructed = web_inspector_constructed;

    extension_class = E_EXTENSION_CLASS (class);
    extension_class->extensible_type = WEBKIT_TYPE_WEB_VIEW;
}

static void
e_web_inspector_class_finalize (EWebInspectorClass *class)
{
}

static void
e_web_inspector_init (EWebInspector *extension)
{
}

G_MODULE_EXPORT void
e_module_load (GTypeModule *type_module)
{
    e_web_inspector_register_type (type_module);
}

G_MODULE_EXPORT void
e_module_unload (GTypeModule *type_module)
{
}