all repos — dwm @ c14d293e516fa9aebffb63f9775c3be38178ccb3

my dwm build

applied Jack's mplayer fullscreen patch
Anselm R Garbe anselm@garbe.us
Tue, 26 Apr 2011 08:13:39 +0000
commit

c14d293e516fa9aebffb63f9775c3be38178ccb3

parent

79b1657a1903447b69083515cfa81bb457a57554

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M dwm.cdwm.c

@@ -88,7 +88,7 @@ int oldx, oldy, oldw, oldh;

int basew, baseh, incw, inch, maxw, maxh, minw, minh; int bw, oldbw; unsigned int tags; - Bool isfixed, isfloating, isurgent, neverfocus, oldstate; + Bool isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen; Client *next; Client *snext; Monitor *mon;

@@ -532,6 +532,7 @@ if(cme->message_type == netatom[NetWMState] && cme->data.l[1] == netatom[NetWMFullscreen]) {

if(cme->data.l[0]) { XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32, PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1); + c->isfullscreen = True; c->oldstate = c->isfloating; c->oldbw = c->bw; c->bw = 0;

@@ -542,6 +543,7 @@ }

else { XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32, PropModeReplace, (unsigned char*)0, 0); + c->isfullscreen = False; c->isfloating = c->oldstate; c->bw = c->oldbw; c->x = c->oldx;

@@ -1584,7 +1586,7 @@ if(!c)

return; if(ISVISIBLE(c)) { /* show clients top down */ XMoveWindow(dpy, c->win, c->x, c->y); - if(!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) + if((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen) resize(c, c->x, c->y, c->w, c->h, False); showhide(c->snext); }