Rename fullscreen() to togglefullscreen()
[surf.git] / surf.c
diff --git a/surf.c b/surf.c
index e8b2c3d..c84f0c5 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -127,7 +127,7 @@ static void die(const char *errstr, ...);
 static void evalscript(Client *c, const char *jsstr, ...);
 static void runscript(Client *c);
 static void find(Client *c, const Arg *arg);
-static void fullscreen(Client *c, const Arg *arg);
+static void togglefullscreen(Client *c, const Arg *a);
 static gboolean permissionrequested(WebKitWebView *v,
                WebKitPermissionRequest *r, Client *c);
 static const char *getatom(Client *c, int a);
@@ -167,6 +167,7 @@ static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
 static void print(Client *c, const Arg *arg);
 static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event,
                                 gpointer d);
+static gboolean winevent(GtkWidget *w, GdkEvent *e, Client *c);
 static void progresschanged(WebKitWebView *v, GParamSpec *ps, Client *c);
 static void linkopen(Client *c, const Arg *arg);
 static void linkopenembed(Client *c, const Arg *arg);
@@ -180,7 +181,6 @@ static void sigchld(int unused);
 static void spawn(Client *c, const Arg *arg);
 static void stop(Client *c, const Arg *arg);
 static void titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c);
-static void titlechangeleave(void *a, void *b, Client *c);
 static void toggle(Client *c, const Arg *arg);
 static void togglecookiepolicy(Client *c, const Arg *arg);
 static void togglegeolocation(Client *c, const Arg *arg);
@@ -600,13 +600,13 @@ find(Client *c, const Arg *arg)
 }
 
 void
-fullscreen(Client *c, const Arg *arg)
+togglefullscreen(Client *c, const Arg *a)
 {
+       /* toggling value is handled in winevent() */
        if (c->fullscreen)
                gtk_window_unfullscreen(GTK_WINDOW(c->win));
        else
                gtk_window_fullscreen(GTK_WINDOW(c->win));
-       c->fullscreen = !c->fullscreen;
 }
 
 gboolean
@@ -1037,7 +1037,7 @@ showview(WebKitWebView *v, Client *c)
                webkit_web_view_set_zoom_level(c->view, zoomlevel);
 
        if (runinfullscreen)
-               fullscreen(c, NULL);
+               togglefullscreen(c, NULL);
 
        setatom(c, AtomFind, "");
        setatom(c, AtomUri, "about:blank");
@@ -1125,8 +1125,10 @@ createwindow(Client *c)
 
        g_signal_connect(G_OBJECT(w), "destroy",
            G_CALLBACK(destroywin), c);
-       g_signal_connect(G_OBJECT(w), "leave_notify_event",
-           G_CALLBACK(titlechangeleave), c);
+       g_signal_connect(G_OBJECT(w), "leave-notify-event",
+           G_CALLBACK(winevent), c);
+       g_signal_connect(G_OBJECT(w), "window-state-event",
+           G_CALLBACK(winevent), c);
 
        return w;
 }
@@ -1331,11 +1333,26 @@ titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c)
        updatetitle(c);
 }
 
-void
-titlechangeleave(void *a, void *b, Client *c)
+gboolean
+winevent(GtkWidget *w, GdkEvent *e, Client *c)
 {
-       c->linkhover = NULL;
-       updatetitle(c);
+       switch (e->type) {
+       case GDK_LEAVE_NOTIFY:
+               c->targeturi = NULL;
+               updatetitle(c);
+               break;
+       case GDK_WINDOW_STATE: /* fallthrough */
+               if (e->window_state.changed_mask ==
+                   GDK_WINDOW_STATE_FULLSCREEN) {
+                       c->fullscreen = e->window_state.new_window_state &
+                           GDK_WINDOW_STATE_FULLSCREEN;
+                       break;
+               }
+       default:
+               return FALSE;
+       }
+
+       return TRUE;
 }
 
 void