commit: ece738d6264e928bc15a9c5d10529f3aa1330be3
parent: f5d3ddcdaf87b422a02b4bfffe4ba1b299e61e73
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 28 Mar 2019 22:40:49 +0100
Move WebkitSettings to config.h
Diffstat:
2 files changed, 22 insertions(+), 24 deletions(-)
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