rosenrot-browser

A hackable browser based on Webkitgtk
Log | Files | Refs | README

commit e9950d648aa04dfe97d806904583324f6007a958
parent 6d925ea23ae7bae6627e2e6575d34bc7e6f7a628
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date:   Thu, 14 Mar 2024 16:31:07 -0300

make initial page blank

Diffstat:
MREADME.md | 2+-
Mconfig.h | 8+++++---
Aimages/3-init.png | 0
Dimages/3-multiple-tabs.png | 0
Dimages/6-hello-world.png | 0
Aimages/6-multiple-tabs.png | 0
Mimages/7-hello-world-search.png | 0
Mrosenrot | 0
Mrosenrot.c | 11+++++++++--
9 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md @@ -4,7 +4,7 @@ Rosenrot is a small browser forked from an earlier version of [rose](https://git ![](https://raw.githubusercontent.com/NunoSempere/rosenrot-browser/master/images/7-hello-world-search.png) -![](https://raw.githubusercontent.com/NunoSempere/rosenrot-browser/master/images/6-hello-world.png) +![](https://raw.githubusercontent.com/NunoSempere/rosenrot-browser/master/images/3-multiple-tabs.png) ### Installation and usage diff --git a/config.h b/config.h @@ -15,9 +15,11 @@ #define BG_COLOR "#FEFEFE" /* "FEFEFE", "#1E1E2E" */ #define DEBUG false #define MAX_NUM_TABS 8 // set to 0 or false if you want unlimited tabs, or look at the relevant rose.c code. -#define ROSE_HOMEPAGE false -#define SEARCH "https://lite.duckduckgo.com/html/?q=%s" // "https://search.nunosempere.com/search?q=%s" -#define HOME ROSE_HOMEPAGE ? "file:///home/nuno/Documents/workspace/rosenrot/user-scripts/debian-12/rose-images/rose-homepage-2.png" : "https://search.nunosempere.com/" +#define SEARCH "https://search.nunosempere.com/search?q=%s" +// #define SEARCH "https://lite.duckduckgo.com/html/?q=%s" +#define HOME "" +// #define HOME "https://search.nunosempere.com/" +// #define HOME "file:///home/nuno/Documents/workspace/rosenrot/user-scripts/debian-12/rose-images/rose-homepage-2.png" // Plugins #define LIBRE_REDIRECT_ENABLED true diff --git a/images/3-init.png b/images/3-init.png Binary files differ. diff --git a/images/3-multiple-tabs.png b/images/3-multiple-tabs.png Binary files differ. diff --git a/images/6-hello-world.png b/images/6-hello-world.png Binary files differ. diff --git a/images/6-multiple-tabs.png b/images/6-multiple-tabs.png Binary files differ. diff --git a/images/7-hello-world-search.png b/images/7-hello-world-search.png Binary files differ. diff --git a/rosenrot b/rosenrot Binary files differ. diff --git a/rosenrot.c b/rosenrot.c @@ -26,9 +26,16 @@ WebKitWebView* notebook_get_webview(GtkNotebook* notebook) } /* Load content*/ + +void show_bar(GtkNotebook* notebook); void load_uri(WebKitWebView* view, const char* uri) { - 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:")) { + if (strlen(uri) == 0){ + webkit_web_view_load_uri(view, ""); + bar.entry_mode = _SEARCH; + show_bar(notebook); + + }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); } else { // Check for shortcuts @@ -440,7 +447,7 @@ int main(int argc, char** argv) /* Show to user */ gtk_widget_show_all(GTK_WIDGET(window)); - gtk_widget_hide(GTK_WIDGET(bar.widget)); + // gtk_widget_hide(GTK_WIDGET(bar.widget)); /* Deal with more tabs */ if (argc > 2) {