logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: c934fb2d92d08961937f263cc98ae4432a9b6222
parent: fff048592a5d1046e277e25f76c566928007d386
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 28 Mar 2019 22:43:22 +0100

Merge branch 'develop'

Diffstat:

MMakefile4++--
MREADME.md2+-
Mbadwolf.c23+----------------------
Mconfig.h23+++++++++++++++++++++--
4 files changed, 25 insertions(+), 27 deletions(-)

diff --git a/Makefile b/Makefile @@ -5,7 +5,7 @@ PREFIX = /usr/local DEPS = gtk+-3.0 webkit2gtk-4.0 OBJS = badwolf -CC = cc -std=c99 +CC = cc CFLAGS = -g -Wall -Wextra CDEPS = `pkg-config --cflags $(DEPS)` LIBS = `pkg-config --libs $(DEPS)` @@ -13,7 +13,7 @@ LIBS = `pkg-config --libs $(DEPS)` all: $(OBJS) .c: - $(CC) $(CFLAGS) $(CDEPS) $(LDFLAGS) $(LIBS) -o $@ $< + $(CC) -std=c11 $(CFLAGS) $(CDEPS) -o $@ $< $(LDFLAGS) $(LIBS) install: badwolf mkdir -p $(DESTDIR)$(PREFIX)/bin diff --git a/README.md b/README.md @@ -32,7 +32,7 @@ Files ending in `.sig` are OpenPGP signatures done with my [key](https://hacktiv ## Manual Installation Dependencies are: - [WebKitGTK](https://webkitgtk.org/), only the latest stable will be fully supported -- C99+ Compiler (such as clang or gcc) +- C11 Compiler (such as clang or gcc) - POSIX make (works with GNU or BSD) Compilation is done with `make`, install with `make install`. diff --git a/badwolf.c b/badwolf.c @@ -312,28 +312,7 @@ new_browser(struct Window *window, gchar *target_url, WebKitWebView *related_web webkit_web_context_set_process_model(web_context, WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES); - WebKitSettings *settings = - webkit_settings_new_with_settings("default-charset", - "utf-8", - "enable-caret-browsing", - TRUE, - "enable-developer-extras", - TRUE, - "enable-java", - FALSE, - "enable-javascript", - FALSE, - "enable-plugins", - FALSE, - "javascript-can-access-clipboard", - FALSE, - "javascript-can-open-windows-automatically", - FALSE, - "media-playback-requires-user-gesture", - TRUE, - "minimum-font-size", - 9, - NULL); + WebKitSettings *settings = webkit_settings_new_with_settings(BADWOLF_WEBKIT_SETTINGS); browser->webView = WEBKIT_WEB_VIEW(g_object_new(WEBKIT_TYPE_WEB_VIEW, "web-context", diff --git a/config.h b/config.h @@ -27,8 +27,7 @@ // BADWOLF_TOOLBAR_PADDING: Amount of padding between toolbar elements #define BADWOLF_TOOLBAR_PADDING 0 -/* - * BADWOLF_DEFAULT_WIDTH / BADWOLF_DEFAULT_HEIGHT: +/* BADWOLF_DEFAULT_WIDTH / BADWOLF_DEFAULT_HEIGHT: * Used to define the default width/height of the window, * useful for floating Window Managers, probably useless in tiling ones * @@ -36,3 +35,23 @@ */ #define BADWOLF_DEFAULT_WIDTH 800 #define BADWOLF_DEFAULT_HEIGHT 600 + +/* BADWOLF_WEBKIT_SETTINGS: + * Used when creating a new view with webkit_settings_new_with_settings the usage is: + * setting-name, setting-value, setting-name, …, NULL + * + * See: https://webkitgtk.org/reference/webkit2gtk/stable/WebKitSettings.html + */ +#define BADWOLF_WEBKIT_SETTINGS \ + "default-charset", "utf-8", \ + "enable-caret-browsing", TRUE, \ + "enable-developer-extras", TRUE, \ + "enable-java", FALSE, \ + "enable-javascript", FALSE, \ + "enable-plugins", FALSE, \ + "javascript-can-access-clipboard", FALSE, \ + "javascript-can-open-windows-automatically", FALSE, \ + "media-playback-requires-user-gesture", TRUE, \ + "minimum-font-size", 9, \ + NULL +// TODO: Look if there is a way to make clang-format ignore this define