commit 2c5129ccaaa14b9a032208d012a84bf3b402e358
parent d069578e612c08dfb6fc09013506956469212315
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date: Sat, 20 Jul 2024 21:41:25 -0400
GTK4: Greenfield loads both URI and notebook!
Diffstat:
2 files changed, 75 insertions(+), 3 deletions(-)
diff --git a/rosenrot4.c b/rosenrot4.c
@@ -8,7 +8,7 @@
/* Global declarations */
static GtkNotebook* notebook;
-static GtkWindow* window;
+static GtkWidget* window;
typedef enum { _SEARCH, _FIND, _HIDDEN } Bar_entry_mode;
static struct {
GtkHeaderBar* widget;
diff --git a/rosenrot4_greenfield.c b/rosenrot4_greenfield.c
@@ -18,6 +18,74 @@ static struct {
static int num_tabs = 0;
static int custom_style_enabled = 1;
+WebKitWebView* create_new_webview()
+{
+ char* style;
+ WebKitSettings* settings;
+ // WebKitWebContext* web_context;
+ WebKitCookieManager* cookiemanager;
+ WebKitNetworkSession* network_session; // new
+ WebKitUserContentManager* contentmanager;
+
+ settings = webkit_settings_new_with_settings(WEBKIT_DEFAULT_SETTINGS, NULL);
+ if (CUSTOM_USER_AGENT) {
+ webkit_settings_set_user_agent(
+ settings,
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, "
+ "like Gecko) Chrome/120.0.0.0 Safari/537.3");
+ // https://www.useragents.me
+ }
+ network_session = webkit_network_session_new(DATA_DIR, DATA_DIR);
+ // web_context = webkit_web_context_new_with_website_data_manager(webkit_website_data_manager_new(DATA_MANAGER_OPTS, NULL));
+ contentmanager = webkit_user_content_manager_new();
+ cookiemanager = webkit_network_session_get_cookie_manager(network_session);
+
+ webkit_cookie_manager_set_persistent_storage(cookiemanager, DATA_DIR "/cookies.sqlite", WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE);
+
+ webkit_cookie_manager_set_accept_policy(cookiemanager, WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS);
+
+ if (g_file_get_contents("~/opt/rosenrot/style.css", &style, NULL, NULL)) {
+ webkit_user_content_manager_add_style_sheet(
+ contentmanager, webkit_user_style_sheet_new(style, WEBKIT_USER_CONTENT_INJECT_ALL_FRAMES, WEBKIT_USER_STYLE_LEVEL_USER, NULL, NULL));
+ }
+
+ return g_object_new(WEBKIT_TYPE_WEB_VIEW, "settings", settings, "network-session", network_session, "user-content-manager", contentmanager, NULL);
+}
+
+void load_uri(WebKitWebView* view, const char* uri)
+{
+ if (strlen(uri) == 0) {
+ webkit_web_view_load_uri(view, "");
+ // toggle_bar(notebook, _SEARCH);
+ } else if (g_str_has_prefix(uri, "http://") || g_str_has_prefix(uri, "https://") || g_str_has_prefix(uri, "file://") || g_str_has_prefix(uri, "about:")) {
+ webkit_web_view_load_uri(view, uri);
+ }
+}
+
+void notebook_create_new_tab(GtkNotebook* notebook, const char* uri)
+{
+ if (num_tabs < MAX_NUM_TABS || MAX_NUM_TABS == 0) {
+ WebKitWebView* view = create_new_webview();
+
+ // g_signal_connect(view, "load_changed", G_CALLBACK(handle_signal_load_changed), notebook);
+ // g_signal_connect(view, "create", G_CALLBACK(handle_signal_create_new_tab), notebook);
+
+ int n = gtk_notebook_append_page(notebook, GTK_WIDGET(view), NULL);
+ gtk_notebook_set_tab_reorderable(notebook, GTK_WIDGET(view), true);
+ gtk_widget_set_visible(GTK_WIDGET(window), 1);
+ // gtk_widget_set_visible(GTK_WIDGET(bar.widget), 0);
+ load_uri(view, (uri) ? uri : HOME);
+
+ // set_custom_style(view);
+
+ gtk_notebook_set_current_page(notebook, n);
+ // gtk_notebook_set_tab_label_text(notebook, GTK_WIDGET(view), "-");
+ num_tabs += 1;
+ } else {
+ }
+}
+
+
int
main (int argc, char **argv)
{
@@ -35,15 +103,19 @@ main (int argc, char **argv)
// Set up our GUI elements
notebook = GTK_NOTEBOOK(gtk_notebook_new());
- gtk_notebook_set_show_tabs(notebook, false);
+ gtk_notebook_set_show_tabs(notebook, true);
gtk_notebook_set_show_border(notebook, false);
-
// ...
// Show the application window
gtk_window_present (GTK_WINDOW (window));
gtk_window_set_child(GTK_WINDOW(window), GTK_WIDGET(notebook));
+
+ char* first_uri = argc > 1 ? argv[1] : HOME;
+ notebook_create_new_tab(notebook, first_uri);
+
+
// Enter the main event loop, and wait for user interaction
while (!0)
g_main_context_iteration (NULL, TRUE);