tpreparing sourcecode feature coming with webkit-1.1.14. - surf - customized bu… | |
git clone git://src.adamsgaard.dk/surf | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 6c57c348add4326818115d282ea000ccf0857e6a | |
parent 9708b64eed9c51ebbec702d92bc97645ccbb0be6 | |
Author: Enno Boland (tox) <[email protected]> | |
Date: Wed, 9 Sep 2009 14:00:31 +0200 | |
preparing sourcecode feature coming with webkit-1.1.14. | |
Diffstat: | |
M config.def.h | 1 + | |
M surf.c | 11 +++++++++++ | |
2 files changed, 12 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/config.def.h b/config.def.h | |
t@@ -19,6 +19,7 @@ static Key keys[] = { | |
{ MODKEY, GDK_l, navigate, { .i = +1 }, BROWSER }, | |
{ MODKEY, GDK_h, navigate, { .i = -1 }, BROWSER }, | |
{ 0, GDK_Escape, stop, { 0 }, BROWSER }, | |
+ { MODKEY, GDK_o, source, { 0 }, BROWSER }, | |
{ MODKEY, GDK_n, searchtext, { .b = TRUE }, BROWSER|SE… | |
{ MODKEY, GDK_N, searchtext, { .b = FALSE }, BROWSER|SE… | |
{ 0, GDK_Return, searchtext, { .b = TRUE }, SEARCHBAR … | |
diff --git a/surf.c b/surf.c | |
t@@ -104,6 +104,7 @@ static void setup(); | |
static void titlechange(WebKitWebView* view, WebKitWebFrame* frame, | |
const gchar* title, Client *c); | |
static void searchtext(Client *c, const Arg *arg); | |
+static void source(Client *c, const Arg *arg); | |
static void showsearch(Client *c, const Arg *arg); | |
static void showurl(Client *c, const Arg *arg); | |
static void stop(Client *c, const Arg *arg); | |
t@@ -548,6 +549,16 @@ showsearch(Client *c, const Arg *arg) { | |
} | |
void | |
+source(Client *c, const Arg *arg) { | |
+ Arg a = { .b = FALSE }; | |
+ /*gboolean s; | |
+ | |
+ s = webkit_web_view_get_view_source_mode(c->view); | |
+ webkit_web_view_set_view_source_mode(c->view, c->source);*/ | |
+ reload(c, &a); | |
+} | |
+ | |
+void | |
searchtext(Client *c, const Arg *arg) { | |
gboolean forward = *(gboolean *)arg; | |
webkit_web_view_search_text(c->view, |