treappling printing; changing some keys. - surf - customized build of surf, the suckless webkit browser
 (HTM) git clone git://src.adamsgaard.dk/surf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4384cf198a38951839dfbd6abcab72d75076c593
 (DIR) parent 80d33d696d73c14c81da6e35ab06ee97517c9852
 (HTM) Author: Enno Boland (tox) <tox@s01.de>
       Date:   Sun,  6 Sep 2009 13:54:29 +0200
       
       reappling printing; changing some keys.
       Diffstat:
         M config.h                            |       5 +++--
         M surf.c                              |       8 +++++++-
       
       2 files changed, 10 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/config.h b/config.h
       t@@ -20,6 +20,7 @@ static Key urlbar_keys[] = {
        
        static Key general_keys[] = {
            /* modifier                    keyval      function        arg         stop event */
       +    { GDK_CONTROL_MASK,     GDK_P,      print,          {0},            TRUE },
            { GDK_CONTROL_MASK,     GDK_p,      clipboard,      {.b = TRUE },   TRUE },
            { GDK_CONTROL_MASK,     GDK_y,      clipboard,      {.b = FALSE},   TRUE },
            { GDK_CONTROL_MASK,     GDK_R,      reload,         {.b = TRUE},    TRUE },
       t@@ -32,8 +33,8 @@ static Key general_keys[] = {
            { GDK_CONTROL_MASK,     GDK_0,      zoompage,       {.f = +1.0 },   TRUE },
            { GDK_CONTROL_MASK,     GDK_n,      searchtext,     {.b = TRUE},    TRUE },
            { GDK_CONTROL_MASK,     GDK_N,      searchtext,     {.b = FALSE},   TRUE },
       -    { GDK_CONTROL_MASK,     GDK_Right,  navigate,       {.b = TRUE},    TRUE },
       -    { GDK_CONTROL_MASK,     GDK_Left,   navigate,       {.b = FALSE},   TRUE },
       +    { GDK_CONTROL_MASK,     GDK_h,      navigate,       {.b = TRUE},    TRUE },
       +    { GDK_CONTROL_MASK,     GDK_l,      navigate,       {.b = FALSE},   TRUE },
            { 0,                    GDK_Escape, stop,           {0},            TRUE },
        };
        
 (DIR) diff --git a/surf.c b/surf.c
       t@@ -98,11 +98,12 @@ static Client *newclient();
        static WebKitWebView *newwindow(WebKitWebView  *v, WebKitWebFrame *f, Client *c);
        static void pasteurl(GtkClipboard *clipboard, const gchar *text, gpointer d);
        static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
       +static void print(Client *c, const Arg *arg);
        static void progresschange(WebKitWebView *view, gint p, Client *c);
        static void request(SoupSession *s, SoupMessage *m, Client *c);
        static void setcookie(char *name, char *val, char *dom, char *path, long exp);
        static void reload(Client *c, const Arg *arg);
       -static void setup(void);
       +static void setup();
        static void titlechange(WebKitWebView* view, WebKitWebFrame* frame,
                        const gchar* title, Client *c);
        static void searchtext(Client *c, const Arg *arg);
       t@@ -473,6 +474,11 @@ processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
        }
        
        void
       +print(Client *c, const Arg *arg) {
       +        webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
       +}
       +
       +void
        progresschange(WebKitWebView* view, gint p, Client *c) {
                c->progress = p;
                updatetitle(c, NULL);