[gnome-builder/wip/gtk4-port] plugins/web-browser: add simple web browser plugin
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port] plugins/web-browser: add simple web browser plugin
- Date: Fri, 3 Jun 2022 17:16:43 +0000 (UTC)
commit 1c2d8152cf6eb756496adbdaccf3d6158609860a
Author: Christian Hergert <chergert redhat com>
Date: Fri Jun 3 10:16:36 2022 -0700
plugins/web-browser: add simple web browser plugin
This is part of the work to start splitting up functionality from various
aspects of the html-preview plugin. We want it split into various plugins
rather than one which gets a bit hard to track what's going on.
This just adds a very simple way to create a new IdeWebkitPage separate
from all of the preview functionality. Primarily to test the widget before
porting the rest over.
src/plugins/meson.build | 1 +
.../web-browser/gbp-web-browser-workspace-addin.c | 122 +++++++++++++++++++++
.../web-browser/gbp-web-browser-workspace-addin.h | 31 ++++++
src/plugins/web-browser/gtk/keybindings.json | 1 +
src/plugins/web-browser/gtk/menus.ui | 12 ++
src/plugins/web-browser/meson.build | 16 +++
src/plugins/web-browser/web-browser-plugin.c | 36 ++++++
src/plugins/web-browser/web-browser.gresource.xml | 8 ++
src/plugins/web-browser/web-browser.plugin | 10 ++
9 files changed, 237 insertions(+)
---
diff --git a/src/plugins/meson.build b/src/plugins/meson.build
index 795e5577a..6f7a4c0e5 100644
--- a/src/plugins/meson.build
+++ b/src/plugins/meson.build
@@ -136,6 +136,7 @@ subdir('vcsui')
subdir('vim')
subdir('vls')
subdir('waf')
+subdir('web-browser')
subdir('words')
subdir('xml-pack')
diff --git a/src/plugins/web-browser/gbp-web-browser-workspace-addin.c
b/src/plugins/web-browser/gbp-web-browser-workspace-addin.c
new file mode 100644
index 000000000..d9b15112a
--- /dev/null
+++ b/src/plugins/web-browser/gbp-web-browser-workspace-addin.c
@@ -0,0 +1,122 @@
+/* gbp-web-browser-workspace-addin.c
+ *
+ * Copyright 2022 Christian Hergert <chergert redhat com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#define G_LOG_DOMAIN "gbp-web-browser-workspace-addin"
+
+#include "config.h"
+
+#include <libide-gui.h>
+#include <libide-webkit.h>
+
+#include "gbp-web-browser-workspace-addin.h"
+
+struct _GbpWebBrowserWorkspaceAddin
+{
+ GObject parent_instance;
+ IdeWorkspace *workspace;
+};
+
+static void workspace_addin_iface_init (IdeWorkspaceAddinInterface *iface);
+static void web_browser_new_page_action (GbpWebBrowserWorkspaceAddin *self,
+ GVariant *param);
+
+IDE_DEFINE_ACTION_GROUP (GbpWebBrowserWorkspaceAddin, gbp_web_browser_workspace_addin, {
+ { "new-page", web_browser_new_page_action },
+})
+
+G_DEFINE_FINAL_TYPE_WITH_CODE (GbpWebBrowserWorkspaceAddin, gbp_web_browser_workspace_addin, G_TYPE_OBJECT,
+ G_IMPLEMENT_INTERFACE (G_TYPE_ACTION_GROUP,
gbp_web_browser_workspace_addin_init_action_group)
+ G_IMPLEMENT_INTERFACE (IDE_TYPE_WORKSPACE_ADDIN, workspace_addin_iface_init))
+
+static void
+gbp_web_browser_workspace_addin_class_init (GbpWebBrowserWorkspaceAddinClass *klass)
+{
+}
+
+static void
+gbp_web_browser_workspace_addin_init (GbpWebBrowserWorkspaceAddin *self)
+{
+}
+
+static void
+gbp_web_browser_workspace_addin_load (IdeWorkspaceAddin *addin,
+ IdeWorkspace *workspace)
+{
+ GbpWebBrowserWorkspaceAddin *self = (GbpWebBrowserWorkspaceAddin *)addin;
+
+ IDE_ENTRY;
+
+ g_assert (GBP_IS_WEB_BROWSER_WORKSPACE_ADDIN (self));
+ g_assert (IDE_IS_WORKSPACE (workspace));
+
+ self->workspace = workspace;
+
+ gtk_widget_insert_action_group (GTK_WIDGET (workspace), "web-browser", G_ACTION_GROUP (self));
+
+ IDE_EXIT;
+}
+
+static void
+gbp_web_browser_workspace_addin_unload (IdeWorkspaceAddin *addin,
+ IdeWorkspace *workspace)
+{
+ GbpWebBrowserWorkspaceAddin *self = (GbpWebBrowserWorkspaceAddin *)addin;
+
+ IDE_ENTRY;
+
+ g_assert (GBP_IS_WEB_BROWSER_WORKSPACE_ADDIN (self));
+ g_assert (IDE_IS_WORKSPACE (workspace));
+
+ gtk_widget_insert_action_group (GTK_WIDGET (workspace), "web-browser", NULL);
+
+ self->workspace = NULL;
+
+ IDE_EXIT;
+}
+
+
+static void
+workspace_addin_iface_init (IdeWorkspaceAddinInterface *iface)
+{
+ iface->load = gbp_web_browser_workspace_addin_load;
+ iface->unload = gbp_web_browser_workspace_addin_unload;
+}
+
+static void
+web_browser_new_page_action (GbpWebBrowserWorkspaceAddin *self,
+ GVariant *param)
+{
+ g_autoptr(IdePanelPosition) position = NULL;
+ IdeWebkitPage *page;
+
+ IDE_ENTRY;
+
+ g_assert (GBP_IS_WEB_BROWSER_WORKSPACE_ADDIN (self));
+ g_assert (IDE_IS_WORKSPACE (self->workspace));
+
+ page = ide_webkit_page_new ();
+ position = ide_panel_position_new ();
+
+ ide_webkit_page_load_uri (page, "https://google.com/");
+
+ ide_workspace_add_page (self->workspace, IDE_PAGE (page), position);
+
+ IDE_EXIT;
+}
diff --git a/src/plugins/web-browser/gbp-web-browser-workspace-addin.h
b/src/plugins/web-browser/gbp-web-browser-workspace-addin.h
new file mode 100644
index 000000000..7f9f9e7a8
--- /dev/null
+++ b/src/plugins/web-browser/gbp-web-browser-workspace-addin.h
@@ -0,0 +1,31 @@
+/* gbp-web-browser-workspace-addin.h
+ *
+ * Copyright 2022 Christian Hergert <chergert redhat com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#pragma once
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define GBP_TYPE_WEB_BROWSER_WORKSPACE_ADDIN (gbp_web_browser_workspace_addin_get_type())
+
+G_DECLARE_FINAL_TYPE (GbpWebBrowserWorkspaceAddin, gbp_web_browser_workspace_addin, GBP,
WEB_BROWSER_WORKSPACE_ADDIN, GObject)
+
+G_END_DECLS
diff --git a/src/plugins/web-browser/gtk/keybindings.json b/src/plugins/web-browser/gtk/keybindings.json
new file mode 100644
index 000000000..7ef5663b0
--- /dev/null
+++ b/src/plugins/web-browser/gtk/keybindings.json
@@ -0,0 +1 @@
+{ "trigger" : "<Control><Shift><Alt>b", "action" : "web-browser.new-page", "when" : "canEdit()", "phase" :
"capture" },
diff --git a/src/plugins/web-browser/gtk/menus.ui b/src/plugins/web-browser/gtk/menus.ui
new file mode 100644
index 000000000..150b512b8
--- /dev/null
+++ b/src/plugins/web-browser/gtk/menus.ui
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+ <menu id="new-document-menu">
+ <section id="new-browser-section">
+ <item>
+ <attribute name="label" translatable="yes">New _Browser Page</attribute>
+ <attribute name="action">web-browser.new-page</attribute>
+ <attribute name="accel"><ctrl><alt><shift>b</attribute>
+ </item>
+ </section>
+ </menu>
+</interface>
diff --git a/src/plugins/web-browser/meson.build b/src/plugins/web-browser/meson.build
new file mode 100644
index 000000000..ba1933ca0
--- /dev/null
+++ b/src/plugins/web-browser/meson.build
@@ -0,0 +1,16 @@
+if get_option('webkit').enabled()
+
+plugins_sources += files([
+ 'web-browser-plugin.c',
+ 'gbp-web-browser-workspace-addin.c',
+])
+
+plugin_web_browser_resources = gnome.compile_resources(
+ 'gbp-web-browser-resources',
+ 'web-browser.gresource.xml',
+ c_name: 'gbp_web_browser',
+)
+
+plugins_sources += plugin_web_browser_resources
+
+endif
diff --git a/src/plugins/web-browser/web-browser-plugin.c b/src/plugins/web-browser/web-browser-plugin.c
new file mode 100644
index 000000000..f8500deb6
--- /dev/null
+++ b/src/plugins/web-browser/web-browser-plugin.c
@@ -0,0 +1,36 @@
+/* web-browser-plugin.c
+ *
+ * Copyright 2022 Christian Hergert <chergert redhat com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#include "config.h"
+
+#include <libpeas/peas.h>
+
+#include <libide-gui.h>
+#include <libide-webkit.h>
+
+#include "gbp-web-browser-workspace-addin.h"
+
+_IDE_EXTERN void
+_gbp_web_browser_register_types (PeasObjectModule *module)
+{
+ peas_object_module_register_extension_type (module,
+ IDE_TYPE_WORKSPACE_ADDIN,
+ GBP_TYPE_WEB_BROWSER_WORKSPACE_ADDIN);
+}
diff --git a/src/plugins/web-browser/web-browser.gresource.xml
b/src/plugins/web-browser/web-browser.gresource.xml
new file mode 100644
index 000000000..c97dfd0a9
--- /dev/null
+++ b/src/plugins/web-browser/web-browser.gresource.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gresources>
+ <gresource prefix="/plugins/web-browser">
+ <file>web-browser.plugin</file>
+ <file>gtk/keybindings.json</file>
+ <file preprocess="xml-stripblanks">gtk/menus.ui</file>
+ </gresource>
+</gresources>
diff --git a/src/plugins/web-browser/web-browser.plugin b/src/plugins/web-browser/web-browser.plugin
new file mode 100644
index 000000000..5e8cae78e
--- /dev/null
+++ b/src/plugins/web-browser/web-browser.plugin
@@ -0,0 +1,10 @@
+[Plugin]
+Authors=Christian Hergert <christian hergert me>
+Builtin=true
+Copyright=Copyright © 2022 Christian Hergert
+Description=Integrates a WebKit-based web browser
+Embedded=_gbp_web_browser_register_types
+Module=web-browser
+Name=Web Browser
+X-Category=other
+X-Workspace-Kind=primary;editor;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]