isfullscreen int

This commit is contained in:
Stivvo 2020-09-04 19:58:00 +02:00 committed by Guido Cella
parent af68b71094
commit 2abfd475de
1 changed files with 5 additions and 4 deletions

9
dwl.c
View File

@ -116,7 +116,7 @@ typedef struct {
int prevy; int prevy;
int prevwidth; int prevwidth;
int prevheight; int prevheight;
bool isfullscreen; int isfullscreen;
} Client; } Client;
typedef struct { typedef struct {
@ -919,7 +919,7 @@ createnotify(struct wl_listener *listener, void *data)
c->fullscreen.notify = fullscreenotify; c->fullscreen.notify = fullscreenotify;
wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &c->fullscreen); wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &c->fullscreen);
c->isfullscreen = false; c->isfullscreen = 0;
} }
void void
@ -1050,7 +1050,8 @@ destroyxdeco(struct wl_listener *listener, void *data)
} }
void void
fullscreenotify(struct wl_listener *listener, void *data) { fullscreenotify(struct wl_listener *listener, void *data)
{
Client *c = wl_container_of(listener, c, fullscreen); Client *c = wl_container_of(listener, c, fullscreen);
c->isfullscreen = !c->isfullscreen; c->isfullscreen = !c->isfullscreen;
@ -2466,7 +2467,7 @@ createnotifyx11(struct wl_listener *listener, void *data)
c->fullscreen.notify = fullscreenotify; c->fullscreen.notify = fullscreenotify;
wl_signal_add(&xwayland_surface->events.request_fullscreen, &c->fullscreen); wl_signal_add(&xwayland_surface->events.request_fullscreen, &c->fullscreen);
c->isfullscreen = false; c->isfullscreen = 0;
} }
Atom Atom