about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-20 00:00:59 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-20 00:34:22 +0100
commitd6794e0d75128dda9be6bd4769e2cd81a57192c7 (patch)
treedf94d646c96655cca9cddd21f7cd8ea77180b59e /surf.c
parentReplace titlechangeleave() with catch-all winevent() (diff)
downloadsurf-d6794e0d75128dda9be6bd4769e2cd81a57192c7.tar.gz
surf-d6794e0d75128dda9be6bd4769e2cd81a57192c7.tar.bz2
surf-d6794e0d75128dda9be6bd4769e2cd81a57192c7.zip
Rename fullscreen() to togglefullscreen()
And handle c->fullscreen value in winevent(). This way we keep track of
fullscreen state even if we did not directly initiate the fullscreen.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/surf.c b/surf.c
index 6c83405..c84f0c5 100644
--- 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);
@@ -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");
@@ -1127,6 +1127,8 @@ createwindow(Client *c)
 	    G_CALLBACK(destroywin), 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;
 }
@@ -1339,6 +1341,13 @@ winevent(GtkWidget *w, GdkEvent *e, Client *c)
 		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;
 	}