JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
522a425b1f3a6f2c82c2d3c28a74d0e73a7bde41
[dwm.git] / client.c
1 /*
2  * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
3  * See LICENSE file for license details.
4  */
5 #include "dwm.h"
6
7 #include <stdlib.h>
8 #include <string.h>
9 #include <X11/Xatom.h>
10 #include <X11/Xutil.h>
11
12 /* static functions */
13
14 static void
15 resizetitle(Client *c)
16 {
17         int i;
18
19         c->tw = 0;
20         for(i = 0; i < TLast; i++)
21                 if(c->tags[i])
22                         c->tw += textw(c->tags[i]);
23         c->tw += textw(c->name);
24         if(c->tw > c->w)
25                 c->tw = c->w + 2;
26         c->tx = c->x + c->w - c->tw + 2;
27         c->ty = c->y;
28         XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
29 }
30
31 static int
32 xerrordummy(Display *dsply, XErrorEvent *ee)
33 {
34         return 0;
35 }
36
37 /* extern functions */
38
39 void
40 ban(Client *c)
41 {
42         XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
43         XMoveWindow(dpy, c->title, c->tx + 2 * sw, c->ty);
44 }
45
46 void
47 focus(Client *c)
48 {
49         Client *old = sel;
50         XEvent ev;
51
52         sel = c;
53         if(old && old != c)
54                 drawtitle(old);
55         drawtitle(c);
56         XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
57         XSync(dpy, False);
58         while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
59 }
60
61 void
62 focusnext(Arg *arg)
63 {
64         Client *c;
65    
66         if(!sel)
67                 return;
68
69         if(!(c = getnext(sel->next)))
70                 c = getnext(clients);
71         if(c) {
72                 higher(c);
73                 c->revert = sel;
74                 focus(c);
75         }
76 }
77
78 void
79 focusprev(Arg *arg)
80 {
81         Client *c;
82
83         if(!sel)
84                 return;
85
86         if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) {
87                 higher(c);
88                 focus(c);
89         }
90 }
91
92 Client *
93 getclient(Window w)
94 {
95         Client *c;
96         for(c = clients; c; c = c->next)
97                 if(c->win == w)
98                         return c;
99         return NULL;
100 }
101
102 Client *
103 getctitle(Window w)
104 {
105         Client *c;
106         for(c = clients; c; c = c->next)
107                 if(c->title == w)
108                         return c;
109         return NULL;
110 }
111
112 void
113 gravitate(Client *c, Bool invert)
114 {
115         int dx = 0, dy = 0;
116
117         switch(c->grav) {
118         case StaticGravity:
119         case NorthWestGravity:
120         case NorthGravity:
121         case NorthEastGravity:
122                 dy = c->border;
123                 break;
124         case EastGravity:
125         case CenterGravity:
126         case WestGravity:
127                 dy = -(c->h / 2) + c->border;
128                 break;
129         case SouthEastGravity:
130         case SouthGravity:
131         case SouthWestGravity:
132                 dy = -c->h;
133                 break;
134         default:
135                 break;
136         }
137
138         switch (c->grav) {
139         case StaticGravity:
140         case NorthWestGravity:
141         case WestGravity:
142         case SouthWestGravity:
143                 dx = c->border;
144                 break;
145         case NorthGravity:
146         case CenterGravity:
147         case SouthGravity:
148                 dx = -(c->w / 2) + c->border;
149                 break;
150         case NorthEastGravity:
151         case EastGravity:
152         case SouthEastGravity:
153                 dx = -(c->w + c->border);
154                 break;
155         default:
156                 break;
157         }
158
159         if(invert) {
160                 dx = -dx;
161                 dy = -dy;
162         }
163         c->x += dx;
164         c->y += dy;
165 }
166
167 void
168 higher(Client *c)
169 {
170         XRaiseWindow(dpy, c->win);
171         XRaiseWindow(dpy, c->title);
172 }
173
174 void
175 killclient(Arg *arg)
176 {
177         if(!sel)
178                 return;
179         if(sel->proto & WM_PROTOCOL_DELWIN)
180                 sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
181         else
182                 XKillClient(dpy, sel->win);
183 }
184
185 void
186 lower(Client *c)
187 {
188         XLowerWindow(dpy, c->title);
189         XLowerWindow(dpy, c->win);
190 }
191
192 void
193 manage(Window w, XWindowAttributes *wa)
194 {
195         Client *c;
196         XSetWindowAttributes twa;
197         Window trans;
198
199         c = emallocz(sizeof(Client));
200         c->win = w;
201         c->tx = c->x = wa->x;
202         c->ty = c->y = wa->y;
203         if(c->y < bh)
204                 c->ty = c->y += bh;
205         c->tw = c->w = wa->width;
206         c->h = wa->height;
207         c->th = bh;
208         c->border = 1;
209         c->proto = getproto(c->win);
210         setsize(c);
211         XSelectInput(dpy, c->win,
212                         StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
213         XGetTransientForHint(dpy, c->win, &trans);
214         twa.override_redirect = 1;
215         twa.background_pixmap = ParentRelative;
216         twa.event_mask = ExposureMask;
217
218         c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th,
219                         0, DefaultDepth(dpy, screen), CopyFromParent,
220                         DefaultVisual(dpy, screen),
221                         CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);
222
223         settitle(c);
224         settags(c);
225
226         c->next = clients;
227         clients = c;
228
229         XGrabButton(dpy, Button1, ControlMask, c->win, False, ButtonPressMask,
230                         GrabModeAsync, GrabModeSync, None, None);
231         XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
232                         GrabModeAsync, GrabModeSync, None, None);
233         XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
234                         GrabModeAsync, GrabModeSync, None, None);
235         XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
236                         GrabModeAsync, GrabModeSync, None, None);
237
238         if(!c->isfloat)
239                 c->isfloat = trans
240                         || ((c->maxw == c->minw) && (c->maxh == c->minh));
241
242         arrange(NULL);
243         /* mapping the window now prevents flicker */
244         if(c->tags[tsel]) {
245                 XMapRaised(dpy, c->win);
246                 XMapRaised(dpy, c->title);
247                 focus(c);
248         }
249         else {
250                 ban(c);
251                 XMapRaised(dpy, c->win);
252                 XMapRaised(dpy, c->title);
253         }
254 }
255
256 void
257 maximize(Arg *arg)
258 {
259         if(!sel)
260                 return;
261         sel->x = sx;
262         sel->y = sy + bh;
263         sel->w = sw - 2 * sel->border;
264         sel->h = sh - 2 * sel->border - bh;
265         higher(sel);
266         resize(sel, False);
267 }
268
269 void
270 resize(Client *c, Bool inc)
271 {
272         XConfigureEvent e;
273
274         if(inc) {
275                 if(c->incw)
276                         c->w -= (c->w - c->basew) % c->incw;
277                 if(c->inch)
278                         c->h -= (c->h - c->baseh) % c->inch;
279         }
280         if(c->x > sw) /* might happen on restart */
281                 c->x = sw - c->w;
282         if(c->y > sh)
283                 c->ty = c->y = sh - c->h;
284         if(c->minw && c->w < c->minw)
285                 c->w = c->minw;
286         if(c->minh && c->h < c->minh)
287                 c->h = c->minh;
288         if(c->maxw && c->w > c->maxw)
289                 c->w = c->maxw;
290         if(c->maxh && c->h > c->maxh)
291                 c->h = c->maxh;
292         resizetitle(c);
293         XSetWindowBorderWidth(dpy, c->win, 1);
294         XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
295         e.type = ConfigureNotify;
296         e.event = c->win;
297         e.window = c->win;
298         e.x = c->x;
299         e.y = c->y;
300         e.width = c->w;
301         e.height = c->h;
302         e.border_width = c->border;
303         e.above = None;
304         e.override_redirect = False;
305         XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
306         XSync(dpy, False);
307 }
308
309 void
310 setsize(Client *c)
311 {
312         XSizeHints size;
313         long msize;
314         if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
315                 size.flags = PSize;
316         c->flags = size.flags;
317         if(c->flags & PBaseSize) {
318                 c->basew = size.base_width;
319                 c->baseh = size.base_height;
320         }
321         else
322                 c->basew = c->baseh = 0;
323         if(c->flags & PResizeInc) {
324                 c->incw = size.width_inc;
325                 c->inch = size.height_inc;
326         }
327         else
328                 c->incw = c->inch = 0;
329         if(c->flags & PMaxSize) {
330                 c->maxw = size.max_width;
331                 c->maxh = size.max_height;
332         }
333         else
334                 c->maxw = c->maxh = 0;
335         if(c->flags & PMinSize) {
336                 c->minw = size.min_width;
337                 c->minh = size.min_height;
338         }
339         else
340                 c->minw = c->minh = 0;
341         if(c->flags & PWinGravity)
342                 c->grav = size.win_gravity;
343         else
344                 c->grav = NorthWestGravity;
345 }
346
347 void
348 settitle(Client *c)
349 {
350         XTextProperty name;
351         int n;
352         char **list = NULL;
353
354         name.nitems = 0;
355         c->name[0] = 0;
356         XGetTextProperty(dpy, c->win, &name, netatom[NetWMName]);
357         if(!name.nitems)
358                 XGetWMName(dpy, c->win, &name);
359         if(!name.nitems)
360                 return;
361         if(name.encoding == XA_STRING)
362                 strncpy(c->name, (char *)name.value, sizeof(c->name));
363         else {
364                 if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
365                                 && n > 0 && *list)
366                 {
367                         strncpy(c->name, *list, sizeof(c->name));
368                         XFreeStringList(list);
369                 }
370         }
371         XFree(name.value);
372         resizetitle(c);
373 }
374
375 void
376 unmanage(Client *c)
377 {
378         Client **l;
379
380         XGrabServer(dpy);
381         XSetErrorHandler(xerrordummy);
382
383         XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
384         XDestroyWindow(dpy, c->title);
385
386         for(l = &clients; *l && *l != c; l = &(*l)->next);
387         *l = c->next;
388         for(l = &clients; *l; l = &(*l)->next)
389                 if((*l)->revert == c)
390                         (*l)->revert = NULL;
391         if(sel == c)
392                 sel = sel->revert ? sel->revert : clients;
393
394         free(c);
395
396         XSync(dpy, False);
397         XSetErrorHandler(xerror);
398         XUngrabServer(dpy);
399         arrange(NULL);
400         if(sel)
401                 focus(sel);
402 }
403
404 void
405 zoom(Arg *arg)
406 {
407         Client **l, *c;
408
409         if(!sel)
410                 return;
411
412         if(sel == getnext(clients) && sel->next)  {
413                 if((c = getnext(sel->next)))
414                         sel = c;
415         }
416
417         for(l = &clients; *l && *l != sel; l = &(*l)->next);
418         *l = sel->next;
419
420         sel->next = clients; /* pop */
421         clients = sel;
422         arrange(NULL);
423         focus(sel);
424 }