2023-02-07 13:17:10 +00:00
|
|
|
#include <stdlib.h> // necessary for free, malloc.
|
2022-12-17 19:54:27 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <webkit2/webkit2.h>
|
2022-11-14 20:41:43 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
2023-02-05 02:57:29 +00:00
|
|
|
|
2024-02-11 12:59:44 +00:00
|
|
|
// Plugins
|
2023-02-07 13:43:00 +00:00
|
|
|
#include "plugins/libre_redirect/libre_redirect.h"
|
|
|
|
#include "plugins/readability/readability.h"
|
2023-05-14 03:24:52 +00:00
|
|
|
#include "plugins/shortcuts/shortcuts.h"
|
2023-02-07 13:43:00 +00:00
|
|
|
#include "plugins/style/style.h"
|
2022-11-17 16:57:11 +00:00
|
|
|
|
2024-02-11 12:52:38 +00:00
|
|
|
/* Global declarations */
|
|
|
|
static GtkNotebook* notebook;
|
|
|
|
static GtkWindow* window;
|
2023-02-07 13:17:10 +00:00
|
|
|
|
2024-02-11 12:52:38 +00:00
|
|
|
// Search, find and url bar
|
|
|
|
static GtkHeaderBar* bar;
|
|
|
|
static GtkEntryBuffer* search_buf;
|
|
|
|
static GtkEntry* search;
|
|
|
|
static int entry_mode;
|
|
|
|
enum { _SEARCH, _FIND, _HIDDEN };
|
|
|
|
|
|
|
|
/* Plugins */
|
|
|
|
// #include "plugins/stand_in/stand_in.h"
|
2023-02-08 13:29:36 +00:00
|
|
|
int LIBRE_REDIRECT_ENABLED = true;
|
|
|
|
int READABILITY_ENABLED = true;
|
|
|
|
int CUSTOM_STYLE_ENABLED = true;
|
2023-06-25 22:22:15 +00:00
|
|
|
int CUSTOM_USER_AGENT = false;
|
2023-06-11 02:10:42 +00:00
|
|
|
int NUM_TABS = 0;
|
2023-03-28 16:14:13 +00:00
|
|
|
// to enable plugins,
|
2023-02-07 13:17:10 +00:00
|
|
|
// 1. Enable them:
|
|
|
|
// - uncomment their #include statement
|
|
|
|
// - set their variable to true
|
|
|
|
// - in build.sh, uncomment: REQS= #./plugins/*/*.c
|
|
|
|
// 2. Remove stand_in code;
|
2023-03-28 18:00:07 +00:00
|
|
|
// - Add an #include "plugins/stand_in/stand_in.h" line, and modify
|
|
|
|
// stand_in.c so as to include stand-in functions for the excluded plugin
|
|
|
|
// - In the make file, include the stand_in.c file and exclude the
|
|
|
|
// relevant plugin
|
2023-02-05 02:57:29 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
WebKitWebView* webview_new()
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
char* style;
|
|
|
|
WebKitSettings* settings;
|
|
|
|
WebKitWebContext* web_context;
|
|
|
|
WebKitCookieManager* cookiemanager;
|
|
|
|
WebKitUserContentManager* contentmanager;
|
|
|
|
|
2023-10-06 14:55:37 +00:00
|
|
|
settings = webkit_settings_new_with_settings(WEBKIT_DEFAULT_SETTINGS, NULL);
|
2023-03-28 16:14:13 +00:00
|
|
|
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/110.0.0.0 Safari/537.36");
|
|
|
|
// See: <https://www.useragents.me/> for some common user agents
|
|
|
|
}
|
|
|
|
web_context = webkit_web_context_new_with_website_data_manager(
|
|
|
|
webkit_website_data_manager_new(CACHE, NULL));
|
|
|
|
contentmanager = webkit_user_content_manager_new();
|
|
|
|
cookiemanager = webkit_web_context_get_cookie_manager(web_context);
|
|
|
|
|
|
|
|
webkit_cookie_manager_set_persistent_storage(
|
|
|
|
cookiemanager, CACHE_DIR "/cookies.sqlite",
|
|
|
|
WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE);
|
|
|
|
|
|
|
|
webkit_cookie_manager_set_accept_policy(cookiemanager,
|
|
|
|
WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS);
|
|
|
|
|
|
|
|
webkit_web_context_set_process_model(
|
|
|
|
web_context, WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES);
|
|
|
|
|
|
|
|
if (g_file_get_contents("~/.config/rose/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, "web-context",
|
|
|
|
web_context, "user-content-manager", contentmanager,
|
|
|
|
NULL);
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
WebKitWebView* notebook_get_webview(GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
return WEBKIT_WEB_VIEW(gtk_notebook_get_nth_page(
|
|
|
|
notebook, gtk_notebook_get_current_page(notebook)));
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
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:")) {
|
|
|
|
webkit_web_view_load_uri(view, uri);
|
|
|
|
} else {
|
2023-06-17 06:29:27 +00:00
|
|
|
// Check for shortcuts
|
|
|
|
int l = SHORTCUT_N + strlen(uri) + 1;
|
|
|
|
char uri_expanded[l];
|
|
|
|
str_init(uri_expanded, l);
|
|
|
|
int check = shortcut_expand(uri, uri_expanded);
|
|
|
|
if (check == 2) {
|
|
|
|
webkit_web_view_load_uri(view, uri_expanded);
|
|
|
|
} else {
|
|
|
|
// Feed into search engine.
|
|
|
|
char tmp[strlen(uri) + strlen(SEARCH)];
|
|
|
|
snprintf(tmp, sizeof(tmp), SEARCH, uri);
|
|
|
|
webkit_web_view_load_uri(view, tmp);
|
|
|
|
}
|
2023-03-28 16:14:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-17 19:54:27 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void redirect_if_annoying(WebKitWebView* view, const char* uri)
|
|
|
|
{
|
|
|
|
int l = LIBRE_N + strlen(uri) + 1;
|
|
|
|
char uri_filtered[l];
|
|
|
|
str_init(uri_filtered, l);
|
2022-12-18 16:42:50 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
int check = libre_redirect(uri, uri_filtered);
|
2022-12-17 19:54:27 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
if (check == 2) {
|
|
|
|
webkit_web_view_load_uri(view, uri_filtered);
|
|
|
|
}
|
2022-12-17 19:54:27 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void load_changed(WebKitWebView* self, WebKitLoadEvent load_event,
|
|
|
|
GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
switch (load_event) {
|
|
|
|
/* see <https://webkitgtk.org/reference/webkit2gtk/2.5.1/WebKitWebView.html>
|
|
|
|
*/
|
|
|
|
case WEBKIT_LOAD_STARTED:
|
|
|
|
if (CUSTOM_STYLE_ENABLED) {
|
|
|
|
char* style_js = malloc(STYLE_N + 1);
|
|
|
|
read_style_js(style_js);
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook), style_js,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
free(style_js);
|
|
|
|
}
|
|
|
|
if (LIBRE_REDIRECT_ENABLED) {
|
|
|
|
redirect_if_annoying(self, webkit_web_view_get_uri(self));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WEBKIT_LOAD_REDIRECTED:
|
|
|
|
if (LIBRE_REDIRECT_ENABLED) {
|
|
|
|
redirect_if_annoying(self, webkit_web_view_get_uri(self));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WEBKIT_LOAD_COMMITTED:
|
|
|
|
if (LIBRE_REDIRECT_ENABLED) {
|
|
|
|
redirect_if_annoying(self, webkit_web_view_get_uri(self));
|
|
|
|
}
|
|
|
|
if (CUSTOM_STYLE_ENABLED) {
|
|
|
|
char* style_js = malloc(STYLE_N + 1);
|
|
|
|
read_style_js(style_js);
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook), style_js,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
free(style_js);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WEBKIT_LOAD_FINISHED: {
|
|
|
|
/* Add gtk tab title */
|
|
|
|
const char* webpage_title = webkit_web_view_get_title(self);
|
|
|
|
const int max_length = 25;
|
|
|
|
char tab_title[max_length + 1];
|
|
|
|
if (webpage_title != NULL) {
|
|
|
|
for (int i = 0; i < (max_length); i++) {
|
|
|
|
tab_title[i] = webpage_title[i];
|
|
|
|
if (webpage_title[i] == '\0') {
|
|
|
|
break;
|
2022-12-17 19:54:27 +00:00
|
|
|
}
|
2023-03-28 16:14:13 +00:00
|
|
|
}
|
|
|
|
tab_title[max_length] = '\0';
|
2022-12-17 19:54:27 +00:00
|
|
|
}
|
2023-03-28 16:14:13 +00:00
|
|
|
|
|
|
|
gtk_notebook_set_tab_label_text(notebook, GTK_WIDGET(self),
|
|
|
|
webpage_title == NULL ? "—" : tab_title);
|
|
|
|
// gtk_widget_hide(GTK_WIDGET(bar));
|
|
|
|
}
|
|
|
|
}
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void notebook_append(GtkNotebook* notebook, const char* uri);
|
|
|
|
/* notebook_append calls handle_create, but handle_create also calls
|
|
|
|
* notebook_append. Therefore we need to declare notebook_append, so that
|
|
|
|
* handle_create_new_tab knows its type.
|
2023-02-05 01:31:57 +00:00
|
|
|
*/
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
GtkWidget* handle_create_new_tab(WebKitWebView* self,
|
|
|
|
WebKitNavigationAction* navigation_action,
|
|
|
|
GtkNotebook* notebook)
|
2023-06-17 06:29:27 +00:00
|
|
|
{
|
|
|
|
if (NUM_TABS < MAX_NUM_TABS || NUM_TABS == 0) {
|
|
|
|
WebKitURIRequest* uri_request = webkit_navigation_action_get_request(navigation_action);
|
|
|
|
const char* uri = webkit_uri_request_get_uri(uri_request);
|
|
|
|
printf("Creating new window: %s\n", uri);
|
|
|
|
notebook_append(notebook, uri);
|
|
|
|
gtk_notebook_set_show_tabs(notebook, true);
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook),
|
|
|
|
"alert('Too many tabs, not opening a new one')", NULL, NULL, NULL);
|
2023-10-06 14:44:47 +00:00
|
|
|
return NULL;
|
2023-06-17 06:29:27 +00:00
|
|
|
}
|
2023-03-28 16:14:13 +00:00
|
|
|
/* WebKitGTK documentation recommends returning the new webview.
|
|
|
|
* I imagine that this might allow e.g., to go back in a new tab
|
|
|
|
* or generally to keep track of history.
|
|
|
|
* However, this would require either modifying notebook_append
|
|
|
|
* or duplicating its contents, for unclear gain.
|
|
|
|
*/
|
2023-02-05 01:31:57 +00:00
|
|
|
}
|
2022-12-17 19:54:27 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void notebook_append(GtkNotebook* notebook, const char* uri)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-06-17 06:29:27 +00:00
|
|
|
if (NUM_TABS < MAX_NUM_TABS || NUM_TABS == 0) {
|
|
|
|
GdkScreen* screen = gtk_window_get_screen(GTK_WINDOW(window));
|
|
|
|
GdkVisual* rgba_visual = gdk_screen_get_rgba_visual(screen);
|
|
|
|
GdkRGBA rgba;
|
|
|
|
|
|
|
|
gdk_rgba_parse(&rgba, BG_COLOR);
|
|
|
|
|
|
|
|
WebKitWebView* view = webview_new();
|
|
|
|
|
|
|
|
gtk_widget_set_visual(GTK_WIDGET(window), rgba_visual);
|
|
|
|
g_signal_connect(view, "load_changed", G_CALLBACK(load_changed), notebook);
|
|
|
|
g_signal_connect(view, "create", G_CALLBACK(handle_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_show_all(GTK_WIDGET(window));
|
|
|
|
gtk_widget_hide(GTK_WIDGET(bar));
|
|
|
|
webkit_web_view_set_background_color(view, &rgba);
|
|
|
|
load_uri(view, (uri) ? uri : HOME);
|
|
|
|
|
|
|
|
if (CUSTOM_STYLE_ENABLED) {
|
|
|
|
char* style_js = malloc(STYLE_N + 1);
|
|
|
|
read_style_js(style_js);
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook), style_js,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
free(style_js);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_notebook_set_current_page(notebook, n);
|
|
|
|
gtk_notebook_set_tab_label_text(notebook, GTK_WIDGET(view), "-");
|
|
|
|
webkit_web_view_set_zoom_level(view, ZOOM);
|
|
|
|
NUM_TABS += 1;
|
|
|
|
} else {
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook),
|
|
|
|
"alert('Too many tabs, not opening a new one')", NULL, NULL, NULL);
|
|
|
|
}
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void show_bar(GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
if (entry_mode == _SEARCH) {
|
|
|
|
const char* url = webkit_web_view_get_uri(notebook_get_webview(notebook));
|
|
|
|
gtk_entry_set_placeholder_text(search, "Search");
|
|
|
|
gtk_entry_buffer_set_text(search_buf, url, strlen(url));
|
|
|
|
gtk_widget_show(GTK_WIDGET(bar));
|
|
|
|
gtk_window_set_focus(window, GTK_WIDGET(search));
|
|
|
|
} else if (entry_mode == _HIDDEN) {
|
|
|
|
gtk_widget_hide(GTK_WIDGET(bar));
|
|
|
|
} else {
|
|
|
|
const char* search_text = webkit_find_controller_get_search_text(
|
|
|
|
webkit_web_view_get_find_controller(notebook_get_webview(notebook)));
|
|
|
|
|
|
|
|
if (search_text != NULL)
|
|
|
|
gtk_entry_buffer_set_text(search_buf, search_text, strlen(search_text));
|
|
|
|
|
|
|
|
gtk_entry_set_placeholder_text(search, "Find");
|
|
|
|
gtk_widget_show(GTK_WIDGET(bar));
|
|
|
|
gtk_window_set_focus(window, GTK_WIDGET(search));
|
|
|
|
}
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
int handle_key(func id, GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
static double zoom = ZOOM;
|
|
|
|
static bool is_fullscreen = 0;
|
2022-11-14 20:41:43 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
switch (id) {
|
2023-02-05 02:11:56 +00:00
|
|
|
case goback:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_go_back(notebook_get_webview(notebook));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
case goforward:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_go_forward(notebook_get_webview(notebook));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case refresh:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_reload(notebook_get_webview(notebook));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
case refresh_force:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_reload_bypass_cache(notebook_get_webview(notebook));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case back_to_home:
|
2023-03-28 16:14:13 +00:00
|
|
|
load_uri(notebook_get_webview(notebook), HOME);
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case zoomin:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_set_zoom_level(notebook_get_webview(notebook),
|
|
|
|
(zoom += ZOOM_VAL));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case zoomout:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_set_zoom_level(notebook_get_webview(notebook),
|
|
|
|
(zoom -= ZOOM_VAL));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case zoom_reset:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_web_view_set_zoom_level(notebook_get_webview(notebook),
|
|
|
|
(zoom = ZOOM));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
2024-01-06 15:30:09 +00:00
|
|
|
case prev_tab:; // declarations aren't statements
|
|
|
|
// <https://stackoverflow.com/questions/92396/why-cant-variables-be-declared-in-a-switch-statement>
|
|
|
|
int n = gtk_notebook_get_n_pages(notebook);
|
|
|
|
int k = gtk_notebook_get_current_page(notebook);
|
|
|
|
int l = (n + k - 1) % n;
|
|
|
|
gtk_notebook_set_current_page(notebook, l);
|
2023-03-28 16:14:13 +00:00
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
2024-01-06 15:30:09 +00:00
|
|
|
case next_tab:;
|
|
|
|
int m = gtk_notebook_get_n_pages(notebook);
|
|
|
|
int i = gtk_notebook_get_current_page(notebook);
|
|
|
|
int j = (i + 1) % m;
|
|
|
|
gtk_notebook_set_current_page(notebook, j);
|
2023-03-28 16:14:13 +00:00
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case close_tab:
|
2023-03-28 16:14:13 +00:00
|
|
|
gtk_notebook_remove_page(notebook, gtk_notebook_get_current_page(notebook));
|
2023-06-17 06:29:27 +00:00
|
|
|
NUM_TABS -= 1;
|
2023-03-28 16:14:13 +00:00
|
|
|
|
|
|
|
switch (gtk_notebook_get_n_pages(notebook)) {
|
|
|
|
case 0:
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
gtk_notebook_set_show_tabs(notebook, false);
|
|
|
|
break;
|
|
|
|
}
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case toggle_fullscreen:
|
2023-03-28 16:14:13 +00:00
|
|
|
if (is_fullscreen)
|
|
|
|
gtk_window_unfullscreen(window);
|
|
|
|
else
|
|
|
|
gtk_window_fullscreen(window);
|
2023-02-05 02:11:56 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
is_fullscreen = !is_fullscreen;
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case show_searchbar:
|
2023-03-28 16:14:13 +00:00
|
|
|
entry_mode = _SEARCH;
|
|
|
|
show_bar(notebook);
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case show_finder:
|
2023-03-28 16:14:13 +00:00
|
|
|
entry_mode = _FIND;
|
|
|
|
show_bar(notebook);
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case finder_next:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_find_controller_search_next(
|
|
|
|
webkit_web_view_get_find_controller(notebook_get_webview(notebook)));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
case finder_prev:
|
2023-03-28 16:14:13 +00:00
|
|
|
webkit_find_controller_search_previous(
|
|
|
|
webkit_web_view_get_find_controller(notebook_get_webview(notebook)));
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
2023-02-07 13:17:10 +00:00
|
|
|
case new_tab:
|
2023-03-28 16:14:13 +00:00
|
|
|
notebook_append(notebook, NULL);
|
|
|
|
gtk_notebook_set_show_tabs(notebook, true);
|
|
|
|
entry_mode = _SEARCH;
|
|
|
|
show_bar(notebook);
|
|
|
|
break;
|
2023-02-05 02:11:56 +00:00
|
|
|
|
2023-02-07 13:17:10 +00:00
|
|
|
case hide_bar:
|
2023-03-28 16:14:13 +00:00
|
|
|
entry_mode = _HIDDEN;
|
|
|
|
show_bar(notebook);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case prettify: {
|
|
|
|
if (READABILITY_ENABLED) {
|
|
|
|
char* readability_js = malloc(READABILITY_N + 1);
|
|
|
|
read_readability_js(readability_js);
|
|
|
|
webkit_web_view_run_javascript(notebook_get_webview(notebook),
|
|
|
|
readability_js, NULL, NULL, NULL);
|
|
|
|
free(readability_js);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
int keypress(void* self, GdkEvent* e, GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
(void)self;
|
2022-11-14 20:41:43 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
for (int i = 0; i < sizeof(keys) / sizeof(keys[0]); i++)
|
2023-12-29 17:38:54 +00:00
|
|
|
if ((e->key.state == keys[i].mod || keys[i].mod == 0x0) && e->key.keyval == keys[i].key)
|
2023-03-28 16:14:13 +00:00
|
|
|
return handle_key(keys[i].id, notebook);
|
2023-12-29 17:51:07 +00:00
|
|
|
/*
|
|
|
|
printf("Event type: %d\n", e->type);
|
|
|
|
printf("Keyval: %d\n", e->key.keyval);
|
|
|
|
// Note: if I wanted to bind button presses, like the extra button in the mouse,
|
|
|
|
// I would have to bind the button-press-event signal instead.
|
|
|
|
// Some links in case I go down that road: <https://docs.gtk.org/gtk3/signal.Widget.button-press-event.html>
|
|
|
|
// https://docs.gtk.org/gdk3/union.Event.html
|
|
|
|
// https://docs.gtk.org/gdk3/struct.EventButton.html
|
|
|
|
*/
|
2023-03-28 16:14:13 +00:00
|
|
|
return 0;
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void search_activate(GtkEntry* self, GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
if (entry_mode == _SEARCH)
|
|
|
|
load_uri(notebook_get_webview(notebook),
|
|
|
|
gtk_entry_buffer_get_text(search_buf));
|
|
|
|
else if (entry_mode == _FIND)
|
|
|
|
webkit_find_controller_search(
|
|
|
|
webkit_web_view_get_find_controller(notebook_get_webview(notebook)),
|
|
|
|
gtk_entry_buffer_get_text(search_buf),
|
|
|
|
WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | WEBKIT_FIND_OPTIONS_WRAP_AROUND,
|
|
|
|
G_MAXUINT);
|
|
|
|
|
|
|
|
gtk_widget_hide(GTK_WIDGET(bar));
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void window_init(GtkNotebook* notebook)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
GtkCssProvider* css = gtk_css_provider_new();
|
|
|
|
gtk_css_provider_load_from_path(css, "/usr/share/themes/rose/style.css",
|
|
|
|
NULL);
|
|
|
|
gtk_style_context_add_provider_for_screen(gdk_screen_get_default(),
|
|
|
|
GTK_STYLE_PROVIDER(css), 800);
|
|
|
|
gtk_entry_buffer_new("", 0);
|
|
|
|
gtk_entry_set_alignment(search, 0.48);
|
2023-03-28 19:25:32 +00:00
|
|
|
gtk_widget_set_size_request(GTK_WIDGET(search), SEARCH_BAR_SIZE, -1);
|
2023-03-28 16:14:13 +00:00
|
|
|
gtk_header_bar_set_custom_title(bar, GTK_WIDGET(search));
|
|
|
|
gtk_window_set_titlebar(window, GTK_WIDGET(bar));
|
|
|
|
g_signal_connect(search, "activate", G_CALLBACK(search_activate), notebook);
|
|
|
|
g_signal_connect(window, "key-press-event", G_CALLBACK(keypress), notebook);
|
|
|
|
g_signal_connect(window, "destroy", G_CALLBACK(exit), notebook);
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
void notebook_init(GtkNotebook* notebook, const char* uri)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2023-03-28 16:14:13 +00:00
|
|
|
gtk_notebook_set_show_border(notebook, false);
|
|
|
|
gtk_notebook_set_show_tabs(notebook, false);
|
|
|
|
notebook_append(notebook, uri);
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|
|
|
|
|
2024-02-11 12:52:38 +00:00
|
|
|
int main(int argc, char** argv)
|
2022-11-14 20:41:43 +00:00
|
|
|
{
|
2024-02-11 12:52:38 +00:00
|
|
|
// <https://docs.gtk.org/gtk3/func.init.html>
|
|
|
|
gtk_init(NULL, NULL);
|
|
|
|
|
|
|
|
// Define GTK entities. These are declared globally
|
2023-03-28 16:14:13 +00:00
|
|
|
window = GTK_WINDOW(gtk_window_new(0));
|
|
|
|
bar = GTK_HEADER_BAR(gtk_header_bar_new());
|
|
|
|
search_buf = GTK_ENTRY_BUFFER(gtk_entry_buffer_new("", 0));
|
|
|
|
search = GTK_ENTRY(gtk_entry_new_with_buffer(search_buf));
|
|
|
|
gtk_window_set_default_size(window, WIDTH, HEIGHT);
|
2024-02-11 12:52:38 +00:00
|
|
|
notebook = GTK_NOTEBOOK(gtk_notebook_new());
|
2023-03-28 16:14:13 +00:00
|
|
|
window_init(notebook);
|
|
|
|
|
|
|
|
// Initialize with first uri
|
2023-06-26 10:26:53 +00:00
|
|
|
char* first_uri = argc > 1 ? argv[1] : HOME;
|
2023-03-28 16:14:13 +00:00
|
|
|
notebook_init(notebook, first_uri);
|
|
|
|
g_object_set(gtk_settings_get_default(), GTK, NULL);
|
|
|
|
|
|
|
|
// More GTK stuff
|
|
|
|
gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(notebook));
|
|
|
|
gtk_widget_show_all(GTK_WIDGET(window));
|
|
|
|
gtk_widget_hide(GTK_WIDGET(bar));
|
|
|
|
|
|
|
|
// Deal with more uris, if this is necessary.
|
|
|
|
if (argc > 2) {
|
|
|
|
gtk_notebook_set_show_tabs(notebook, true);
|
|
|
|
for (int i = 2; i < argc; i++) {
|
|
|
|
notebook_append(notebook, argv[i]);
|
|
|
|
}
|
|
|
|
}
|
2022-11-14 20:41:43 +00:00
|
|
|
|
2023-03-28 16:14:13 +00:00
|
|
|
gtk_main();
|
|
|
|
// this point is never reached, since gtk_main(); never exits.
|
2022-11-14 20:41:43 +00:00
|
|
|
}
|