Introduction
Introduction Statistics Contact Development Disclaimer Help
tmoving config.h to config.def.h. - surf - customized build of surf, the suckle…
git clone git://src.adamsgaard.dk/surf
Log
Files
Refs
README
LICENSE
---
commit a1b70380dbfc83b2044cad3ce46f68e2878dd976
parent 03f0a3baf5a844dc44aa5c145f1dd5d12c56ad07
Author: Enno Boland (tox) <[email protected]>
Date: Mon, 7 Sep 2009 11:43:31 +0200
moving config.h to config.def.h.
Diffstat:
M Makefile | 6 +++++-
A config.def.h | 30 ++++++++++++++++++++++++++++++
D config.h | 30 ------------------------------
3 files changed, 35 insertions(+), 31 deletions(-)
---
diff --git a/Makefile b/Makefile
t@@ -18,7 +18,11 @@ options:
@echo CC $<
@${CC} -c ${CFLAGS} $<
-${OBJ}: config.mk
+${OBJ}: config.h config.mk
+
+config.h:
+ @echo creating $@ from config.def.h
+ @cp config.def.h $@
surf: ${OBJ}
@echo CC -o $@
diff --git a/config.def.h b/config.def.h
t@@ -0,0 +1,30 @@
+/* modifier 0 means no modifier */
+static GdkColor progress = { 65535,65535,0,0 };
+static GdkColor progress_trust = { 65535,0,65535,0 };
+static Key keys[] = {
+ /* modifier keyval function arg …
+ { GDK_CONTROL_MASK, GDK_R, reload, {.b = TRUE}, ALWAYS…
+ { GDK_CONTROL_MASK, GDK_r, reload, {.b = FALSE}, ALWAYS…
+ { GDK_CONTROL_MASK, GDK_g, showurl, {0}, ALWAYS…
+ { GDK_CONTROL_MASK, GDK_slash, showsearch, {0}, ALWAYS…
+ { 0, GDK_Escape, hidesearch, {0}, ALWAYS…
+ { 0, GDK_Escape, hideurl, {0}, ALWAYS…
+ { GDK_CONTROL_MASK, GDK_P, print, {0}, ALWAYS…
+ { GDK_CONTROL_MASK, GDK_p, clipboard, {.b = TRUE }, BROWSE…
+ { GDK_CONTROL_MASK, GDK_y, clipboard, {.b = FALSE}, BROWSE…
+ { GDK_CONTROL_MASK, GDK_equal, zoom, {.i = +1 }, BROWSE…
+ { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSE…
+ { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSE…
+ { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSE…
+ { GDK_CONTROL_MASK, GDK_l, navigate, {.i = +1}, BROWSE…
+ { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSE…
+ { 0, GDK_Escape, stop, {0}, BROWSE…
+ { GDK_CONTROL_MASK, GDK_n, searchtext, {.b = TRUE}, BROWSE…
+ { GDK_CONTROL_MASK, GDK_N, searchtext, {.b = FALSE}, BROWSE…
+ { 0, GDK_Return, searchtext, {.b = TRUE}, SEARCH…
+ { GDK_SHIFT_MASK, GDK_Return, searchtext, {.b = FALSE}, SEARCH…
+ { 0 },
+ { 0, GDK_Return, loaduri, {.v = NULL}, URLBAR…
+ { 0, GDK_Return, hideurl, {0}, URLBAR…
+};
+
diff --git a/config.h b/config.h
t@@ -1,30 +0,0 @@
-/* modifier 0 means no modifier */
-static GdkColor progress = { 65535,65535,0,0 };
-static GdkColor progress_trust = { 65535,0,65535,0 };
-static Key keys[] = {
- /* modifier keyval function arg …
- { 0, GDK_Escape, hidesearch, {0}, ALWAYS…
- { 0, GDK_Escape, hideurl, {0}, ALWAYS…
- { GDK_CONTROL_MASK, GDK_P, print, {0}, ALWAYS…
- { 0, GDK_Return, searchtext, {.b = TRUE}, SEARCH…
- { GDK_SHIFT_MASK, GDK_Return, searchtext, {.b = FALSE}, SEARCH…
- { GDK_CONTROL_MASK, GDK_n, searchtext, {.b = TRUE}, BROWSE…
- { GDK_CONTROL_MASK, GDK_N, searchtext, {.b = FALSE}, BROWSE…
- { 0 },
- { GDK_CONTROL_MASK, GDK_R, reload, {.b = TRUE}, ALWAYS…
- { GDK_CONTROL_MASK, GDK_r, reload, {.b = FALSE}, ALWAYS…
- { GDK_CONTROL_MASK, GDK_g, showurl, {0}, ALWAYS…
- { GDK_CONTROL_MASK, GDK_slash, showsearch, {0}, ALWAYS…
- { 0, GDK_Return, loaduri, {.v = NULL}, URLBAR…
- { 0, GDK_Return, hideurl, {0}, URLBAR…
- { GDK_CONTROL_MASK, GDK_p, clipboard, {.b = TRUE }, BROWSE…
- { GDK_CONTROL_MASK, GDK_y, clipboard, {.b = FALSE}, BROWSE…
- { GDK_CONTROL_MASK, GDK_equal, zoom, {.i = +1 }, BROWSE…
- { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSE…
- { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSE…
- { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSE…
- { GDK_CONTROL_MASK, GDK_l, navigate, {.i = +1}, BROWSE…
- { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSE…
- { 0, GDK_Escape, stop, {0}, BROWSE…
-};
-
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.