X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=surf.c;h=c0debf0d8300af79e82b844edc43da13fa512106;hb=6c57c348add4326818115d282ea000ccf0857e6a;hp=deb916fcc70c87ff39fd65428b5de69d11f25b70;hpb=9708b64eed9c51ebbec702d92bc97645ccbb0be6;p=surf.git diff --git a/surf.c b/surf.c index deb916f..c0debf0 100644 --- a/surf.c +++ b/surf.c @@ -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); @@ -547,6 +548,16 @@ showsearch(Client *c, const Arg *arg) { gtk_widget_grab_focus(c->searchbar); } +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;