Continue making chars const
[surf.git] / config.def.h
index 32ef407..94eb288 100644 (file)
@@ -5,54 +5,54 @@ static char *scriptfile     = "~/.surf/script.js";
 static char *styledir       = "~/.surf/styles/";
 static char *cachedir       = "~/.surf/cache/";
 
-static Bool kioskmode       = FALSE; /* Ignore shortcuts */
-static Bool showindicators  = TRUE;  /* Show indicators in window title */
-static Bool runinfullscreen = FALSE; /* Run in fullscreen mode by default */
+static int kioskmode       = 0;     /* Ignore shortcuts */
+static int showindicators  = 1;     /* Show indicators in window title */
+static int runinfullscreen = 0;     /* Run in fullscreen mode by default */
 
 static guint defaultfontsize = 12;   /* Default font size */
-static gfloat zoomlevel = 1.0;       /* Default zoom level */
+static gfloat zoomlevel     = 1.0;   /* Default zoom level */
 
 /* Soup default features */
 static char *cookiefile     = "~/.surf/cookies.txt";
 static char *cookiepolicies = "Aa@"; /* A: accept all; a: accept nothing,
                                       * @: accept no third party */
-static Bool strictssl       = FALSE; /* Refuse untrusted SSL connections */
+static int strictssl       = 0; /* Refuse untrusted SSL connections */
 
 /* Webkit default features */
-static Bool enablescrollbars      = TRUE;
-static Bool enablecaretbrowsing   = TRUE;
-static Bool enablecache           = TRUE;
-static Bool enableplugins         = TRUE;
-static Bool enablescripts         = TRUE;
-static Bool enableinspector       = TRUE;
-static Bool enablestyle           = TRUE;
-static Bool loadimages            = TRUE;
-static Bool hidebackground        = FALSE;
-static Bool allowgeolocation      = TRUE;
-static Bool enablednsprefetching  = FALSE;
-static Bool enableframeflattening = FALSE;
+static int enablescrollbars      = 1;
+static int enablecaretbrowsing   = 1;
+static int enablecache           = 1;
+static int enableplugins         = 1;
+static int enablescripts         = 1;
+static int enableinspector       = 1;
+static int enablestyle           = 1;
+static int loadimages            = 1;
+static int hidebackground        = 0;
+static int allowgeolocation      = 1;
+static int enablednsprefetching  = 0;
+static int enableframeflattening = 0;
 
 static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
                                     WEBKIT_FIND_OPTIONS_WRAP_AROUND;
 
 #define SETPROP(p, q) { \
-       .v = (const char *[]){ "/bin/sh", "-c", \
-            "prop=\"`xprop -id $2 $0 " \
-            "| sed \"s/^$0(STRING) = \\(\\\\\"\\?\\)\\(.*\\)\\1$/\\2/\" " \
-            "| xargs -0 printf %b | dmenu`\" &&" \
-            "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
-            p, q, winid, NULL \
-       } \
+        .v = (const char *[]){ "/bin/sh", "-c", \
+             "prop=\"`xprop -id $2 $0 " \
+             "| sed \"s/^$0(STRING) = \\(\\\\\"\\?\\)\\(.*\\)\\1$/\\2/\" " \
+             "| xargs -0 printf %b | dmenu`\" &&" \
+             "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
+             p, q, winid, NULL \
+        } \
 }
 
 /* DOWNLOAD(URI, referer) */
 #define DOWNLOAD(d, r) { \
-       .v = (const char *[]){ "/bin/sh", "-c", \
-            "st -e /bin/sh -c \"curl -L -J -O --user-agent '$1'" \
-            " --referer '$2' -b $3 -c $3 '$0';" \
-            " sleep 5;\"", \
-            d, useragent, r, cookiefile, NULL \
-       } \
+        .v = (const char *[]){ "/bin/sh", "-c", \
+             "st -e /bin/sh -c \"curl -L -J -O --user-agent '$1'" \
+             " --referer '$2' -b $3 -c $3 '$0';" \
+             " sleep 5;\"", \
+             d, useragent, r, cookiefile, NULL \
+        } \
 }
 
 /* PLUMB(URI) */
@@ -60,16 +60,16 @@ static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
  * "http://" or "https://" should be opened.
  */
 #define PLUMB(u) {\
-       .v = (const char *[]){ "/bin/sh", "-c", \
-            "xdg-open \"$0\"", u, NULL \
-       } \
+        .v = (const char *[]){ "/bin/sh", "-c", \
+             "xdg-open \"$0\"", u, NULL \
+        } \
 }
 
 /* VIDEOPLAY(URI) */
 #define VIDEOPLAY(u) {\
-       .v = (const char *[]){ "/bin/sh", "-c", \
-           "mpv --really-quiet \"$0\"", u, NULL \
-       } \
+        .v = (const char *[]){ "/bin/sh", "-c", \
+             "mpv --really-quiet \"$0\"", u, NULL \
+        } \
 }
 
 /* styles */
@@ -90,7 +90,7 @@ static SiteStyle styles[] = {
  * edit the CLEANMASK() macro.
  */
 static Key keys[] = {
-       /* modifier              keyval          function    arg */
+       /* modifier              keyval          function    arg */
        { MODKEY,                GDK_KEY_g,      spawn,      SETPROP("_SURF_URI", "_SURF_GO") },
        { MODKEY,                GDK_KEY_f,      spawn,      SETPROP("_SURF_FIND", "_SURF_FIND") },
        { MODKEY,                GDK_KEY_slash,  spawn,      SETPROP("_SURF_FIND", "_SURF_FIND") },
@@ -98,8 +98,8 @@ static Key keys[] = {
        { 0,                     GDK_KEY_Escape, stop,       { 0 } },
        { MODKEY,                GDK_KEY_c,      stop,       { 0 } },
 
-       { MODKEY|GDK_SHIFT_MASK, GDK_KEY_r,      reload,     { .b = TRUE } },
-       { MODKEY,                GDK_KEY_r,      reload,     { .b = FALSE } },
+       { MODKEY|GDK_SHIFT_MASK, GDK_KEY_r,      reload,     { .b = 1 } },
+       { MODKEY,                GDK_KEY_r,      reload,     { .b = 0 } },
 
        { MODKEY,                GDK_KEY_l,      navigate,   { .i = +1 } },
        { MODKEY,                GDK_KEY_h,      navigate,   { .i = -1 } },
@@ -118,8 +118,8 @@ static Key keys[] = {
        { MODKEY,                GDK_KEY_minus,  zoom,       { .i = -1 } },
        { MODKEY,                GDK_KEY_plus,   zoom,       { .i = +1 } },
 
-       { MODKEY,                GDK_KEY_p,      clipboard,  { .b = TRUE } },
-       { MODKEY,                GDK_KEY_y,      clipboard,  { .b = FALSE } },
+       { MODKEY,                GDK_KEY_p,      clipboard,  { .b = 1 } },
+       { MODKEY,                GDK_KEY_y,      clipboard,  { .b = 0 } },
 
        { MODKEY,                GDK_KEY_n,      find,       { .i = +1 } },
        { MODKEY|GDK_SHIFT_MASK, GDK_KEY_n,      find,       { .i = -1 } },