Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
removed finished message
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
9b91ab6
..
8d5ea30
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-24,7
+24,7
@@
resizetitle(Client *c)
c->tw = c->w + 2;
c->tx = c->x + c->w - c->tw + 2;
c->ty = c->y;
c->tw = c->w + 2;
c->tx = c->x + c->w - c->tw + 2;
c->ty = c->y;
- if(
c->tags[tsel]
)
+ if(
isvisible(c)
)
XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
else
XMoveResizeWindow(dpy, c->title, c->tx + 2 * sw, c->ty, c->tw, c->th);
XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
else
XMoveResizeWindow(dpy, c->title, c->tx + 2 * sw, c->ty, c->tw, c->th);
@@
-49,18
+49,15
@@
ban(Client *c)
void
focus(Client *c)
{
void
focus(Client *c)
{
+ if (!issel)
+ return;
Client *old = sel;
Client *old = sel;
- XEvent ev;
sel = c;
if(old && old != c)
drawtitle(old);
drawtitle(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
sel = c;
if(old && old != c)
drawtitle(old);
drawtitle(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
- XSync(dpy, False);
- XChangeProperty(dpy, root, netatom[NetActiveWindow], XA_WINDOW, 32,
- PropModeReplace, (unsigned char *)&c->win, 1);
- while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}
void
}
void
@@
-77,8
+74,8
@@
focusnext(Arg *arg)
if(!(c = getnext(sel->next)))
c = getnext(clients);
if(c) {
if(!(c = getnext(sel->next)))
c = getnext(clients);
if(c) {
- higher(c);
focus(c);
focus(c);
+ restack();
}
}
}
}
@@
-98,8
+95,8
@@
focusprev(Arg *arg)
c = getprev(c);
}
if(c) {
c = getprev(c);
}
if(c) {
- higher(c);
focus(c);
focus(c);
+ restack();
}
}
}
}
@@
-180,13
+177,6
@@
gravitate(Client *c, Bool invert)
c->y += dy;
}
c->y += dy;
}
-void
-higher(Client *c)
-{
- XRaiseWindow(dpy, c->win);
- XRaiseWindow(dpy, c->title);
-}
-
void
killclient(Arg *arg)
{
void
killclient(Arg *arg)
{
@@
-198,13
+188,6
@@
killclient(Arg *arg)
XKillClient(dpy, sel->win);
}
XKillClient(dpy, sel->win);
}
-void
-lower(Client *c)
-{
- XLowerWindow(dpy, c->title);
- XLowerWindow(dpy, c->win);
-}
-
void
manage(Window w, XWindowAttributes *wa)
{
void
manage(Window w, XWindowAttributes *wa)
{
@@
-278,13
+261,12
@@
manage(Window w, XWindowAttributes *wa)
|| (c->maxw && c->minw &&
c->maxw == c->minw && c->maxh == c->minh);
settitle(c);
|| (c->maxw && c->minw &&
c->maxw == c->minw && c->maxh == c->minh);
settitle(c);
- arrange(NULL);
- /* mapping the window now prevents flicker */
- XMapRaised(dpy, c->win);
- XMapRaised(dpy, c->title);
- if(c->tags[tsel])
+ XMapWindow(dpy, c->win);
+ XMapWindow(dpy, c->title);
+ if(isvisible(c))
focus(c);
focus(c);
+ arrange(NULL);
}
void
}
void
@@
-417,8
+399,8
@@
togglemax(Arg *arg)
sel->w = sw - 2;
sel->h = sh - 2 - bh;
sel->w = sw - 2;
sel->h = sh - 2 - bh;
-
higher(sel
);
- resize(sel,
False
, TopLeft);
+
restack(
);
+ resize(sel,
arrange == dofloat
, TopLeft);
sel->x = ox;
sel->y = oy;
sel->x = ox;
sel->y = oy;
@@
-445,25
+427,17
@@
unmanage(Client *c)
c->next->prev = c->prev;
if(c == clients)
clients = c->next;
c->next->prev = c->prev;
if(c == clients)
clients = c->next;
- if(sel == c) {
- sel = getnext(c->next);
- if(!sel)
- sel = getprev(c->prev);
- if(!sel)
- sel = clients;
- }
+ if(sel == c)
+ sel = getnext(clients);
free(c->tags);
free(c);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
free(c->tags);
free(c);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
- arrange(NULL);
if(sel)
focus(sel);
if(sel)
focus(sel);
- else
- XChangeProperty(dpy, root, netatom[NetActiveWindow], XA_WINDOW, 32,
- PropModeReplace, (unsigned char *)NULL, 1);
+ arrange(NULL);
}
void
}
void
@@
-471,7
+445,7
@@
zoom(Arg *arg)
{
Client *c;
{
Client *c;
- if(!sel || (arrange != dotile) || sel->isfloat)
+ if(!sel || (arrange != dotile) || sel->isfloat
|| sel->ismax
)
return;
if(sel == getnext(clients)) {
return;
if(sel == getnext(clients)) {
@@
-482,15
+456,13
@@
zoom(Arg *arg)
}
/* pop */
}
/* pop */
- if(sel->prev)
- sel->prev->next = sel->next;
+ sel->prev->next = sel->next;
if(sel->next)
sel->next->prev = sel->prev;
sel->prev = NULL;
if(sel->next)
sel->next->prev = sel->prev;
sel->prev = NULL;
- if(clients)
- clients->prev = sel;
+ clients->prev = sel;
sel->next = clients;
clients = sel;
sel->next = clients;
clients = sel;
- arrange(NULL);
focus(sel);
focus(sel);
+ arrange(NULL);
}
}