Xinqi Bao's Git
a77f4c8ec8b4f73eda9084745de291f5d3db1b61
1 /* See LICENSE file for copyright and license details.
3 * dynamic window manager is designed like any other X client as well. It is
4 * driven through handling X events. In contrast to other X clients, a window
5 * manager selects for SubstructureRedirectMask on the root window, to receive
6 * events about window (dis-)appearance. Only one X connection at a time is
7 * allowed to select for this event mask.
9 * Calls to fetch an X event from the event queue are blocking. Due reading
10 * status text from standard input, a select()-driven main loop has been
11 * implemented which selects for reads on the X connection and STDIN_FILENO to
12 * handle all data smoothly. The event handlers of dwm are organized in an
13 * array which is accessed whenever a new event has been fetched. This allows
14 * event dispatching in O(1) time.
16 * Each child of the root window is called a client, except windows which have
17 * set the override_redirect flag. Clients are organized in a global
18 * doubly-linked client list, the focus history is remembered through a global
19 * stack list. Each client contains an array of Bools of the same size as the
20 * global tags array to indicate the tags of a client.
22 * Keys and tagging rules are organized as arrays and defined in config.h.
24 * To understand everything else, start reading main().
33 #include <sys/select.h>
34 #include <sys/types.h>
36 #include <X11/cursorfont.h>
37 #include <X11/keysym.h>
38 #include <X11/Xatom.h>
40 #include <X11/Xproto.h>
41 #include <X11/Xutil.h>
44 #define MAX(a, b) ((a)>(b)?(a):(b))
45 #define MIN(a, b) ((a)<(b)?(a):(b))
46 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
47 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
48 #define LENGTH(x) (sizeof x / sizeof x[0])
50 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
51 #define DEFGEOM(GEONAME,BX,BY,BW,WX,WY,WW,WH,MX,MY,MW,MH,TX,TY,TW,TH,MOX,MOY,MOW,MOH) \
52 void GEONAME(void) { \
53 bx = (BX); by = (BY); bw = (BW); \
54 wx = (WX); wy = (WY); ww = (WW); wh = (WH); \
55 mx = (MX); my = (MY); mw = (MW); mh = (MH); \
56 tx = (TX); ty = (TY); tw = (TW); th = (TH); \
57 mox = (MOX); moy = (MOY); mow = (MOW); moh = (MOH); \
61 enum { CurNormal
, CurResize
, CurMove
, CurLast
}; /* cursor */
62 enum { ColBorder
, ColFG
, ColBG
, ColLast
}; /* color */
63 enum { NetSupported
, NetWMName
, NetLast
}; /* EWMH atoms */
64 enum { WMProtocols
, WMDelete
, WMName
, WMState
, WMLast
};/* default atoms */
67 typedef struct Client Client
;
72 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
73 int minax
, maxax
, minay
, maxay
;
75 unsigned int bw
, oldbw
;
76 Bool isbanned
, isfixed
, isfloating
, isurgent
;
86 unsigned long norm
[ColLast
];
87 unsigned long sel
[ColLast
];
97 } DC
; /* draw context */
107 void (*func
)(const char *arg
);
113 void (*arrange
)(void);
119 const char *instance
;
125 /* function declarations */
126 void applyrules(Client
*c
);
128 void attach(Client
*c
);
129 void attachstack(Client
*c
);
131 void buttonpress(XEvent
*e
);
132 void checkotherwm(void);
134 void configure(Client
*c
);
135 void configurenotify(XEvent
*e
);
136 void configurerequest(XEvent
*e
);
137 unsigned int counttiled(void);
138 void destroynotify(XEvent
*e
);
139 void detach(Client
*c
);
140 void detachstack(Client
*c
);
142 void drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]);
143 void drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
);
144 void *emallocz(unsigned int size
);
145 void enternotify(XEvent
*e
);
146 void eprint(const char *errstr
, ...);
147 void expose(XEvent
*e
);
148 void focus(Client
*c
);
149 void focusin(XEvent
*e
);
150 void focusnext(const char *arg
);
151 void focusprev(const char *arg
);
152 Client
*getclient(Window w
);
153 unsigned long getcolor(const char *colstr
);
154 long getstate(Window w
);
155 Bool
gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
156 void grabbuttons(Client
*c
, Bool focused
);
158 unsigned int idxoftag(const char *t
);
159 void initfont(const char *fontstr
);
160 Bool
isoccupied(unsigned int t
);
161 Bool
isprotodel(Client
*c
);
162 Bool
isurgent(unsigned int t
);
163 Bool
isvisible(Client
*c
);
164 void keypress(XEvent
*e
);
165 void killclient(const char *arg
);
166 void manage(Window w
, XWindowAttributes
*wa
);
167 void mappingnotify(XEvent
*e
);
168 void maprequest(XEvent
*e
);
170 void movemouse(Client
*c
);
171 Client
*nexttiled(Client
*c
);
172 void propertynotify(XEvent
*e
);
173 void quit(const char *arg
);
174 void reapply(const char *arg
);
175 void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
);
176 void resizemouse(Client
*c
);
180 void setclientstate(Client
*c
, long state
);
181 void setgeom(const char *arg
);
182 void setlayout(const char *arg
);
183 void setmfact(const char *arg
);
185 void spawn(const char *arg
);
186 void tag(const char *arg
);
187 unsigned int textnw(const char *text
, unsigned int len
);
188 unsigned int textw(const char *text
);
190 void tilehstack(unsigned int n
);
191 Client
*tilemaster(unsigned int n
);
192 void tileresize(Client
*c
, int x
, int y
, int w
, int h
);
194 void tilevstack(unsigned int n
);
195 void togglefloating(const char *arg
);
196 void toggletag(const char *arg
);
197 void toggleview(const char *arg
);
198 void unban(Client
*c
);
199 void unmanage(Client
*c
);
200 void unmapnotify(XEvent
*e
);
201 void updatebarpos(void);
202 void updatesizehints(Client
*c
);
203 void updatetitle(Client
*c
);
204 void updatewmhints(Client
*c
);
205 void view(const char *arg
);
206 void viewprevtag(const char *arg
); /* views previous selected tags */
207 int xerror(Display
*dpy
, XErrorEvent
*ee
);
208 int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
209 int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
210 void zoom(const char *arg
);
214 int screen
, sx
, sy
, sw
, sh
;
215 int (*xerrorxlib
)(Display
*, XErrorEvent
*);
216 int bx
, by
, bw
, bh
, blw
, bgw
, mx
, my
, mw
, mh
, mox
, moy
, mow
, moh
, tx
, ty
, tw
, th
, wx
, wy
, ww
, wh
;
217 int viewtags_set
= 0;
219 unsigned int numlockmask
= 0;
220 void (*handler
[LASTEvent
]) (XEvent
*) = {
221 [ButtonPress
] = buttonpress
,
222 [ConfigureRequest
] = configurerequest
,
223 [ConfigureNotify
] = configurenotify
,
224 [DestroyNotify
] = destroynotify
,
225 [EnterNotify
] = enternotify
,
228 [KeyPress
] = keypress
,
229 [MappingNotify
] = mappingnotify
,
230 [MapRequest
] = maprequest
,
231 [PropertyNotify
] = propertynotify
,
232 [UnmapNotify
] = unmapnotify
234 Atom wmatom
[WMLast
], netatom
[NetLast
];
235 Bool otherwm
, readin
;
239 Client
*clients
= NULL
;
241 Client
*stack
= NULL
;
242 Cursor cursor
[CurLast
];
247 /* configuration, allows nested code to access above variables */
249 #define TAGSZ (LENGTH(tags) * sizeof(Bool))
250 Layout
*lt
= layouts
;
253 /* function implementations */
256 applyrules(Client
*c
) {
258 Bool matched
= False
;
260 XClassHint ch
= { 0 };
263 XGetClassHint(dpy
, c
->win
, &ch
);
264 for(i
= 0; i
< LENGTH(rules
); i
++) {
266 if((!r
->title
|| strstr(c
->name
, r
->title
))
267 && (!r
->class || (ch
.res_class
&& strstr(ch
.res_class
, r
->class)))
268 && (!r
->instance
|| (ch
.res_name
&& strstr(ch
.res_name
, r
->instance
)))) {
269 c
->isfloating
= r
->isfloating
;
271 c
->tags
[idxoftag(r
->tag
)] = True
;
281 memcpy(c
->tags
, seltags
, TAGSZ
);
288 for(c
= clients
; c
; c
= c
->next
)
291 if(lt
->isfloating
|| c
->isfloating
)
292 resize(c
, c
->fx
, c
->fy
, c
->fw
, c
->fh
, True
);
312 attachstack(Client
*c
) {
321 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
326 buttonpress(XEvent
*e
) {
329 XButtonPressedEvent
*ev
= &e
->xbutton
;
331 if(ev
->window
== barwin
) {
332 if((ev
->x
< bgw
) && ev
->button
== Button1
) {
337 for(i
= 0; i
< LENGTH(tags
); i
++) {
339 if(ev
->x
>= bgw
&& ev
->x
< x
) {
340 if(ev
->button
== Button1
) {
341 if(ev
->state
& MODKEY
)
346 else if(ev
->button
== Button3
) {
347 if(ev
->state
& MODKEY
)
355 if((ev
->x
< x
+ blw
) && ev
->button
== Button1
)
358 else if((c
= getclient(ev
->window
))) {
360 if(CLEANMASK(ev
->state
) != MODKEY
)
362 if(ev
->button
== Button1
) {
366 else if(ev
->button
== Button2
) {
367 if(!lt
->isfloating
&& c
->isfloating
)
368 togglefloating(NULL
);
372 else if(ev
->button
== Button3
&& !c
->isfixed
) {
382 XSetErrorHandler(xerrorstart
);
384 /* this causes an error if some other window manager is running */
385 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
388 eprint("dwm: another window manager is already running\n");
390 XSetErrorHandler(NULL
);
391 xerrorxlib
= XSetErrorHandler(xerror
);
403 XFreeFontSet(dpy
, dc
.font
.set
);
405 XFreeFont(dpy
, dc
.font
.xfont
);
406 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
407 XFreePixmap(dpy
, dc
.drawable
);
409 XFreeCursor(dpy
, cursor
[CurNormal
]);
410 XFreeCursor(dpy
, cursor
[CurResize
]);
411 XFreeCursor(dpy
, cursor
[CurMove
]);
412 XDestroyWindow(dpy
, barwin
);
414 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
418 configure(Client
*c
) {
421 ce
.type
= ConfigureNotify
;
429 ce
.border_width
= c
->bw
;
431 ce
.override_redirect
= False
;
432 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
436 configurenotify(XEvent
*e
) {
437 XConfigureEvent
*ev
= &e
->xconfigure
;
439 if(ev
->window
== root
&& (ev
->width
!= sw
|| ev
->height
!= sh
)) {
442 setgeom(geom
->symbol
);
447 configurerequest(XEvent
*e
) {
449 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
452 if((c
= getclient(ev
->window
))) {
453 if(ev
->value_mask
& CWBorderWidth
)
454 c
->bw
= ev
->border_width
;
455 if(c
->isfixed
|| c
->isfloating
|| lt
->isfloating
) {
456 if(ev
->value_mask
& CWX
)
458 if(ev
->value_mask
& CWY
)
460 if(ev
->value_mask
& CWWidth
)
462 if(ev
->value_mask
& CWHeight
)
464 if((c
->x
- sx
+ c
->w
) > sw
&& c
->isfloating
)
465 c
->x
= sx
+ (sw
/ 2 - c
->w
/ 2); /* center in x direction */
466 if((c
->y
- sy
+ c
->h
) > sh
&& c
->isfloating
)
467 c
->y
= sy
+ (sh
/ 2 - c
->h
/ 2); /* center in y direction */
468 if((ev
->value_mask
& (CWX
|CWY
))
469 && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
472 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
480 wc
.width
= ev
->width
;
481 wc
.height
= ev
->height
;
482 wc
.border_width
= ev
->border_width
;
483 wc
.sibling
= ev
->above
;
484 wc
.stack_mode
= ev
->detail
;
485 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
495 for(n
= 0, c
= nexttiled(clients
); c
; c
= nexttiled(c
->next
), n
++);
500 destroynotify(XEvent
*e
) {
502 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
504 if((c
= getclient(ev
->window
)))
511 c
->prev
->next
= c
->next
;
513 c
->next
->prev
= c
->prev
;
516 c
->next
= c
->prev
= NULL
;
520 detachstack(Client
*c
) {
523 for(tc
=&stack
; *tc
&& *tc
!= c
; tc
=&(*tc
)->snext
);
535 drawtext(geom
->symbol
, dc
.norm
, False
);
538 for(c
= stack
; c
&& !isvisible(c
); c
= c
->snext
);
539 for(i
= 0; i
< LENGTH(tags
); i
++) {
540 dc
.w
= textw(tags
[i
]);
542 drawtext(tags
[i
], dc
.sel
, isurgent(i
));
543 drawsquare(c
&& c
->tags
[i
], isoccupied(i
), isurgent(i
), dc
.sel
);
546 drawtext(tags
[i
], dc
.norm
, isurgent(i
));
547 drawsquare(c
&& c
->tags
[i
], isoccupied(i
), isurgent(i
), dc
.norm
);
553 drawtext(lt
->symbol
, dc
.norm
, False
);
564 drawtext(stext
, dc
.norm
, False
);
565 if((dc
.w
= dc
.x
- x
) > bh
) {
568 drawtext(c
->name
, dc
.sel
, False
);
569 drawsquare(False
, c
->isfloating
, False
, dc
.sel
);
572 drawtext(NULL
, dc
.norm
, False
);
574 XCopyArea(dpy
, dc
.drawable
, barwin
, dc
.gc
, 0, 0, bw
, bh
, 0, 0);
579 drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]) {
582 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
584 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
585 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
586 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
590 r
.width
= r
.height
= x
+ 1;
591 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
594 r
.width
= r
.height
= x
;
595 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
600 drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
) {
602 unsigned int len
, olen
;
603 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
606 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
607 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
611 len
= MIN(olen
, sizeof buf
);
612 memcpy(buf
, text
, len
);
614 h
= dc
.font
.ascent
+ dc
.font
.descent
;
615 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
617 /* shorten text if necessary */
618 for(; len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
; len
--);
629 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
631 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
633 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
637 emallocz(unsigned int size
) {
638 void *res
= calloc(1, size
);
641 eprint("fatal: could not malloc() %u bytes\n", size
);
646 enternotify(XEvent
*e
) {
648 XCrossingEvent
*ev
= &e
->xcrossing
;
650 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
652 if((c
= getclient(ev
->window
)))
659 eprint(const char *errstr
, ...) {
662 va_start(ap
, errstr
);
663 vfprintf(stderr
, errstr
, ap
);
670 XExposeEvent
*ev
= &e
->xexpose
;
672 if(ev
->count
== 0 && (ev
->window
== barwin
))
678 if(!c
|| (c
&& !isvisible(c
)))
679 for(c
= stack
; c
&& !isvisible(c
); c
= c
->snext
);
680 if(sel
&& sel
!= c
) {
681 grabbuttons(sel
, False
);
682 XSetWindowBorder(dpy
, sel
->win
, dc
.norm
[ColBorder
]);
687 grabbuttons(c
, True
);
691 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
692 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
695 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
700 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
701 XFocusChangeEvent
*ev
= &e
->xfocus
;
703 if(sel
&& ev
->window
!= sel
->win
)
704 XSetInputFocus(dpy
, sel
->win
, RevertToPointerRoot
, CurrentTime
);
708 focusnext(const char *arg
) {
713 for(c
= sel
->next
; c
&& !isvisible(c
); c
= c
->next
);
715 for(c
= clients
; c
&& !isvisible(c
); c
= c
->next
);
723 focusprev(const char *arg
) {
728 for(c
= sel
->prev
; c
&& !isvisible(c
); c
= c
->prev
);
730 for(c
= clients
; c
&& c
->next
; c
= c
->next
);
731 for(; c
&& !isvisible(c
); c
= c
->prev
);
740 getclient(Window w
) {
743 for(c
= clients
; c
&& c
->win
!= w
; c
= c
->next
);
748 getcolor(const char *colstr
) {
749 Colormap cmap
= DefaultColormap(dpy
, screen
);
752 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
753 eprint("error, cannot allocate color '%s'\n", colstr
);
761 unsigned char *p
= NULL
;
762 unsigned long n
, extra
;
765 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
766 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
767 if(status
!= Success
)
776 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
) {
781 if(!text
|| size
== 0)
784 XGetTextProperty(dpy
, w
, &name
, atom
);
787 if(name
.encoding
== XA_STRING
)
788 strncpy(text
, (char *)name
.value
, size
- 1);
790 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
792 strncpy(text
, *list
, size
- 1);
793 XFreeStringList(list
);
796 text
[size
- 1] = '\0';
802 grabbuttons(Client
*c
, Bool focused
) {
804 unsigned int buttons
[] = { Button1
, Button2
, Button3
};
805 unsigned int modifiers
[] = { MODKEY
, MODKEY
|LockMask
, MODKEY
|numlockmask
,
806 MODKEY
|numlockmask
|LockMask
} ;
808 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
810 for(i
= 0; i
< LENGTH(buttons
); i
++)
811 for(j
= 0; j
< LENGTH(modifiers
); j
++)
812 XGrabButton(dpy
, buttons
[i
], modifiers
[j
], c
->win
, False
,
813 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
815 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
816 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
823 XModifierKeymap
*modmap
;
825 /* init modifier map */
826 modmap
= XGetModifierMapping(dpy
);
827 for(i
= 0; i
< 8; i
++)
828 for(j
= 0; j
< modmap
->max_keypermod
; j
++) {
829 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
] == XKeysymToKeycode(dpy
, XK_Num_Lock
))
830 numlockmask
= (1 << i
);
832 XFreeModifiermap(modmap
);
834 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
835 for(i
= 0; i
< LENGTH(keys
); i
++) {
836 code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
);
837 XGrabKey(dpy
, code
, keys
[i
].mod
, root
, True
,
838 GrabModeAsync
, GrabModeAsync
);
839 XGrabKey(dpy
, code
, keys
[i
].mod
|LockMask
, root
, True
,
840 GrabModeAsync
, GrabModeAsync
);
841 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
, root
, True
,
842 GrabModeAsync
, GrabModeAsync
);
843 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
|LockMask
, root
, True
,
844 GrabModeAsync
, GrabModeAsync
);
849 idxoftag(const char *t
) {
852 for(i
= 0; (i
< LENGTH(tags
)) && t
&& strcmp(tags
[i
], t
); i
++);
853 return (i
< LENGTH(tags
)) ? i
: 0;
857 initfont(const char *fontstr
) {
858 char *def
, **missing
;
863 XFreeFontSet(dpy
, dc
.font
.set
);
864 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
867 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
868 XFreeStringList(missing
);
871 XFontSetExtents
*font_extents
;
872 XFontStruct
**xfonts
;
874 dc
.font
.ascent
= dc
.font
.descent
= 0;
875 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
876 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
877 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
878 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
879 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
885 XFreeFont(dpy
, dc
.font
.xfont
);
886 dc
.font
.xfont
= NULL
;
887 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
888 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
889 eprint("error, cannot load font: '%s'\n", fontstr
);
890 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
891 dc
.font
.descent
= dc
.font
.xfont
->descent
;
893 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
897 isoccupied(unsigned int t
) {
900 for(c
= clients
; c
; c
= c
->next
)
907 isprotodel(Client
*c
) {
912 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
913 for(i
= 0; !ret
&& i
< n
; i
++)
914 if(protocols
[i
] == wmatom
[WMDelete
])
922 isurgent(unsigned int t
) {
925 for(c
= clients
; c
; c
= c
->next
)
926 if(c
->isurgent
&& c
->tags
[t
])
932 isvisible(Client
*c
) {
935 for(i
= 0; i
< LENGTH(tags
); i
++)
936 if(c
->tags
[i
] && seltags
[i
])
942 keypress(XEvent
*e
) {
948 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
949 for(i
= 0; i
< LENGTH(keys
); i
++)
950 if(keysym
== keys
[i
].keysym
951 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
))
954 keys
[i
].func(keys
[i
].arg
);
959 killclient(const char *arg
) {
964 if(isprotodel(sel
)) {
965 ev
.type
= ClientMessage
;
966 ev
.xclient
.window
= sel
->win
;
967 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
968 ev
.xclient
.format
= 32;
969 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
970 ev
.xclient
.data
.l
[1] = CurrentTime
;
971 XSendEvent(dpy
, sel
->win
, False
, NoEventMask
, &ev
);
974 XKillClient(dpy
, sel
->win
);
978 manage(Window w
, XWindowAttributes
*wa
) {
979 Client
*c
, *t
= NULL
;
984 c
= emallocz(sizeof(Client
));
985 c
->tags
= emallocz(TAGSZ
);
991 c
->w
= c
->fw
= wa
->width
;
992 c
->h
= c
->fh
= wa
->height
;
993 c
->oldbw
= wa
->border_width
;
994 if(c
->w
== sw
&& c
->h
== sh
) {
997 c
->bw
= wa
->border_width
;
1000 if(c
->x
+ c
->w
+ 2 * c
->bw
> wx
+ ww
)
1001 c
->x
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1002 if(c
->y
+ c
->h
+ 2 * c
->bw
> wy
+ wh
)
1003 c
->y
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1004 c
->x
= MAX(c
->x
, wx
);
1005 c
->y
= MAX(c
->y
, wy
);
1011 wc
.border_width
= c
->bw
;
1012 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1013 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
1014 configure(c
); /* propagates border_width, if size doesn't change */
1016 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1017 grabbuttons(c
, False
);
1019 if((rettrans
= XGetTransientForHint(dpy
, w
, &trans
) == Success
))
1020 for(t
= clients
; t
&& t
->win
!= trans
; t
= t
->next
);
1022 memcpy(c
->tags
, t
->tags
, TAGSZ
);
1026 c
->isfloating
= (rettrans
== Success
) || c
->isfixed
;
1029 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1031 XMapWindow(dpy
, c
->win
);
1032 setclientstate(c
, NormalState
);
1037 mappingnotify(XEvent
*e
) {
1038 XMappingEvent
*ev
= &e
->xmapping
;
1040 XRefreshKeyboardMapping(ev
);
1041 if(ev
->request
== MappingKeyboard
)
1046 maprequest(XEvent
*e
) {
1047 static XWindowAttributes wa
;
1048 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1050 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1052 if(wa
.override_redirect
)
1054 if(!getclient(ev
->window
))
1055 manage(ev
->window
, &wa
);
1062 for(c
= clients
; c
; c
= c
->next
)
1063 if((lt
->isfloating
|| !c
->isfloating
) && isvisible(c
))
1064 resize(c
, mox
, moy
, mow
- 2 * c
->bw
, moh
- 2 * c
->bw
, RESIZEHINTS
);
1068 movemouse(Client
*c
) {
1069 int x1
, y1
, ocx
, ocy
, di
, nx
, ny
;
1076 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1077 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
1079 XQueryPointer(dpy
, root
, &dummy
, &dummy
, &x1
, &y1
, &di
, &di
, &dui
);
1081 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1084 XUngrabPointer(dpy
, CurrentTime
);
1086 case ConfigureRequest
:
1089 handler
[ev
.type
](&ev
);
1093 nx
= ocx
+ (ev
.xmotion
.x
- x1
);
1094 ny
= ocy
+ (ev
.xmotion
.y
- y1
);
1095 if(abs(wx
- nx
) < SNAP
)
1097 else if(abs((wx
+ ww
) - (nx
+ c
->w
+ 2 * c
->bw
)) < SNAP
)
1098 nx
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1099 if(abs(wy
- ny
) < SNAP
)
1101 else if(abs((wy
+ wh
) - (ny
+ c
->h
+ 2 * c
->bw
)) < SNAP
)
1102 ny
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1103 if(!c
->isfloating
&& !lt
->isfloating
&& (abs(nx
- c
->x
) > SNAP
|| abs(ny
- c
->y
) > SNAP
))
1104 togglefloating(NULL
);
1105 if(lt
->isfloating
|| c
->isfloating
) {
1108 resize(c
, nx
, ny
, c
->w
, c
->h
, False
);
1116 nexttiled(Client
*c
) {
1117 for(; c
&& (c
->isfloating
|| !isvisible(c
)); c
= c
->next
);
1122 propertynotify(XEvent
*e
) {
1125 XPropertyEvent
*ev
= &e
->xproperty
;
1127 if(ev
->state
== PropertyDelete
)
1128 return; /* ignore */
1129 if((c
= getclient(ev
->window
))) {
1132 case XA_WM_TRANSIENT_FOR
:
1133 XGetTransientForHint(dpy
, c
->win
, &trans
);
1134 if(!c
->isfloating
&& (c
->isfloating
= (getclient(trans
) != NULL
)))
1137 case XA_WM_NORMAL_HINTS
:
1145 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1154 quit(const char *arg
) {
1155 readin
= running
= False
;
1159 reapply(const char *arg
) {
1162 for(c
= clients
; c
; c
= c
->next
) {
1163 memset(c
->tags
, 0, TAGSZ
);
1170 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
) {
1174 /* set minimum possible */
1178 /* temporarily remove base dimensions */
1182 /* adjust for aspect limits */
1183 if(c
->minax
!= c
->maxax
&& c
->minay
!= c
->maxay
1184 && c
->minax
> 0 && c
->maxax
> 0 && c
->minay
> 0 && c
->maxay
> 0)
1186 if(w
* c
->maxay
> h
* c
->maxax
)
1187 w
= h
* c
->maxax
/ c
->maxay
;
1188 else if(w
* c
->minay
< h
* c
->minax
)
1189 h
= w
* c
->minay
/ c
->minax
;
1192 /* adjust for increment value */
1198 /* restore base dimensions */
1202 w
= MAX(w
, c
->minw
);
1203 h
= MAX(h
, c
->minh
);
1206 w
= MIN(w
, c
->maxw
);
1209 h
= MIN(h
, c
->maxh
);
1211 if(w
<= 0 || h
<= 0)
1214 x
= sw
- w
- 2 * c
->bw
;
1216 y
= sh
- h
- 2 * c
->bw
;
1217 if(x
+ w
+ 2 * c
->bw
< sx
)
1219 if(y
+ h
+ 2 * c
->bw
< sy
)
1221 if(c
->x
!= x
|| c
->y
!= y
|| c
->w
!= w
|| c
->h
!= h
) {
1224 c
->w
= wc
.width
= w
;
1225 c
->h
= wc
.height
= h
;
1226 wc
.border_width
= c
->bw
;
1227 XConfigureWindow(dpy
, c
->win
,
1228 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1235 resizemouse(Client
*c
) {
1242 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1243 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1245 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1247 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1250 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0,
1251 c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1252 XUngrabPointer(dpy
, CurrentTime
);
1253 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1255 case ConfigureRequest
:
1258 handler
[ev
.type
](&ev
);
1262 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1263 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1264 if(!c
->isfloating
&& !lt
->isfloating
&& (abs(nw
- c
->w
) > SNAP
|| abs(nh
- c
->h
) > SNAP
)) {
1267 togglefloating(NULL
);
1269 if((lt
->isfloating
) || c
->isfloating
) {
1270 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1288 if(sel
->isfloating
|| lt
->isfloating
)
1289 XRaiseWindow(dpy
, sel
->win
);
1290 if(!lt
->isfloating
) {
1291 wc
.stack_mode
= Below
;
1292 wc
.sibling
= barwin
;
1293 for(c
= stack
; c
; c
= c
->snext
)
1294 if(!c
->isfloating
&& isvisible(c
)) {
1295 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1296 wc
.sibling
= c
->win
;
1300 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1306 char sbuf
[sizeof stext
];
1309 unsigned int len
, offset
;
1312 /* main event loop, also reads status text from stdin */
1314 xfd
= ConnectionNumber(dpy
);
1317 len
= sizeof stext
- 1;
1318 sbuf
[len
] = stext
[len
] = '\0'; /* 0-terminator is never touched */
1322 FD_SET(STDIN_FILENO
, &rd
);
1324 if(select(xfd
+ 1, &rd
, NULL
, NULL
, NULL
) == -1) {
1327 eprint("select failed\n");
1329 if(FD_ISSET(STDIN_FILENO
, &rd
)) {
1330 switch((r
= read(STDIN_FILENO
, sbuf
+ offset
, len
- offset
))) {
1332 strncpy(stext
, strerror(errno
), len
);
1336 strncpy(stext
, "EOF", 4);
1340 for(p
= sbuf
+ offset
; r
> 0; p
++, r
--, offset
++)
1341 if(*p
== '\n' || *p
== '\0') {
1343 strncpy(stext
, sbuf
, len
);
1344 p
+= r
- 1; /* p is sbuf + offset + r - 1 */
1345 for(r
= 0; *(p
- r
) && *(p
- r
) != '\n'; r
++);
1348 memmove(sbuf
, p
- r
+ 1, r
);
1355 while(XPending(dpy
)) {
1356 XNextEvent(dpy
, &ev
);
1357 if(handler
[ev
.type
])
1358 (handler
[ev
.type
])(&ev
); /* call handler */
1365 unsigned int i
, num
;
1366 Window
*wins
, d1
, d2
;
1367 XWindowAttributes wa
;
1370 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1371 for(i
= 0; i
< num
; i
++) {
1372 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1373 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1375 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1376 manage(wins
[i
], &wa
);
1378 for(i
= 0; i
< num
; i
++) { /* now the transients */
1379 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1381 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1382 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1383 manage(wins
[i
], &wa
);
1391 setclientstate(Client
*c
, long state
) {
1392 long data
[] = {state
, None
};
1394 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1395 PropModeReplace
, (unsigned char *)data
, 2);
1399 setgeom(const char *arg
) {
1403 if(++geom
== &geoms
[LENGTH(geoms
)])
1407 for(i
= 0; i
< LENGTH(geoms
); i
++)
1408 if(!strcmp(geoms
[i
].symbol
, arg
))
1410 if(i
== LENGTH(geoms
))
1420 setlayout(const char *arg
) {
1424 if(++lt
== &layouts
[LENGTH(layouts
)])
1428 for(i
= 0; i
< LENGTH(layouts
); i
++)
1429 if(!strcmp(arg
, layouts
[i
].symbol
))
1431 if(i
== LENGTH(layouts
))
1442 setmfact(const char *arg
) {
1450 d
= strtod(arg
, NULL
);
1451 if(arg
[0] == '-' || arg
[0] == '+')
1453 if(d
< 0.1 || d
> 0.9)
1457 setgeom(geom
->symbol
);
1463 XSetWindowAttributes wa
;
1466 screen
= DefaultScreen(dpy
);
1467 root
= RootWindow(dpy
, screen
);
1470 /* apply default geometry */
1473 sw
= DisplayWidth(dpy
, screen
);
1474 sh
= DisplayHeight(dpy
, screen
);
1475 bh
= dc
.font
.height
+ 2;
1480 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1481 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1482 wmatom
[WMName
] = XInternAtom(dpy
, "WM_NAME", False
);
1483 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1484 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1485 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1488 wa
.cursor
= cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1489 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1490 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1492 /* init appearance */
1493 dc
.norm
[ColBorder
] = getcolor(NORMBORDERCOLOR
);
1494 dc
.norm
[ColBG
] = getcolor(NORMBGCOLOR
);
1495 dc
.norm
[ColFG
] = getcolor(NORMFGCOLOR
);
1496 dc
.sel
[ColBorder
] = getcolor(SELBORDERCOLOR
);
1497 dc
.sel
[ColBG
] = getcolor(SELBGCOLOR
);
1498 dc
.sel
[ColFG
] = getcolor(SELFGCOLOR
);
1501 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1502 dc
.gc
= XCreateGC(dpy
, root
, 0, 0);
1503 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1505 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1508 viewtags
[0] = emallocz(TAGSZ
);
1509 viewtags
[1] = emallocz(TAGSZ
);
1510 viewtags
[0][0] = viewtags
[1][0] = True
;
1511 seltags
= viewtags
[0];
1514 for(blw
= i
= 0; LENGTH(layouts
) > 1 && i
< LENGTH(layouts
); i
++) {
1515 w
= textw(layouts
[i
].symbol
);
1518 for(bgw
= i
= 0; LENGTH(geoms
) > 1 && i
< LENGTH(geoms
); i
++) {
1519 w
= textw(geoms
[i
].symbol
);
1523 wa
.override_redirect
= 1;
1524 wa
.background_pixmap
= ParentRelative
;
1525 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1527 barwin
= XCreateWindow(dpy
, root
, bx
, by
, bw
, bh
, 0, DefaultDepth(dpy
, screen
),
1528 CopyFromParent
, DefaultVisual(dpy
, screen
),
1529 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1530 XDefineCursor(dpy
, barwin
, cursor
[CurNormal
]);
1531 XMapRaised(dpy
, barwin
);
1532 strcpy(stext
, "dwm-"VERSION
);
1535 /* EWMH support per view */
1536 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1537 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1539 /* select for events */
1540 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
1541 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
;
1542 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1543 XSelectInput(dpy
, root
, wa
.event_mask
);
1551 spawn(const char *arg
) {
1552 static char *shell
= NULL
;
1554 if(!shell
&& !(shell
= getenv("SHELL")))
1558 /* The double-fork construct avoids zombie processes and keeps the code
1559 * clean from stupid signal handlers. */
1563 close(ConnectionNumber(dpy
));
1565 execl(shell
, shell
, "-c", arg
, (char *)NULL
);
1566 fprintf(stderr
, "dwm: execl '%s -c %s'", shell
, arg
);
1575 tag(const char *arg
) {
1580 for(i
= 0; i
< LENGTH(tags
); i
++)
1581 sel
->tags
[i
] = (NULL
== arg
);
1582 sel
->tags
[idxoftag(arg
)] = True
;
1587 textnw(const char *text
, unsigned int len
) {
1591 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1594 return XTextWidth(dc
.font
.xfont
, text
, len
);
1598 textw(const char *text
) {
1599 return textnw(text
, strlen(text
)) + dc
.font
.height
;
1605 unsigned int i
, n
= counttiled();
1619 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1620 if(i
+ 1 == n
) /* remainder */
1621 tileresize(c
, x
, ty
, (tx
+ tw
) - x
- 2 * c
->bw
, th
- 2 * c
->bw
);
1623 tileresize(c
, x
, ty
, w
- 2 * c
->bw
, th
- 2 * c
->bw
);
1625 x
= c
->x
+ c
->w
+ 2 * c
->bw
;
1630 tilemaster(unsigned int n
) {
1631 Client
*c
= nexttiled(clients
);
1634 tileresize(c
, mox
, moy
, mow
- 2 * c
->bw
, moh
- 2 * c
->bw
);
1636 tileresize(c
, mx
, my
, mw
- 2 * c
->bw
, mh
- 2 * c
->bw
);
1641 tileresize(Client
*c
, int x
, int y
, int w
, int h
) {
1642 resize(c
, x
, y
, w
, h
, RESIZEHINTS
);
1643 if((RESIZEHINTS
) && ((c
->h
< bh
) || (c
->h
> h
) || (c
->w
< bh
) || (c
->w
> w
)))
1644 /* client doesn't accept size constraints */
1645 resize(c
, x
, y
, w
, h
, False
);
1651 unsigned int i
, n
= counttiled();
1665 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1666 if(i
+ 1 == n
) /* remainder */
1667 tileresize(c
, tx
, y
, tw
- 2 * c
->bw
, (ty
+ th
) - y
- 2 * c
->bw
);
1669 tileresize(c
, tx
, y
, tw
- 2 * c
->bw
, h
- 2 * c
->bw
);
1671 y
= c
->y
+ c
->h
+ 2 * c
->bw
;
1676 togglefloating(const char *arg
) {
1679 sel
->isfloating
= !sel
->isfloating
;
1681 resize(sel
, sel
->x
, sel
->y
, sel
->w
, sel
->h
, True
);
1686 toggletag(const char *arg
) {
1692 sel
->tags
[i
] = !sel
->tags
[i
];
1693 for(j
= 0; j
< LENGTH(tags
) && !sel
->tags
[j
]; j
++);
1694 if(j
== LENGTH(tags
))
1695 sel
->tags
[i
] = True
; /* at least one tag must be enabled */
1700 toggleview(const char *arg
) {
1704 seltags
[i
] = !seltags
[i
];
1705 for(j
= 0; j
< LENGTH(tags
) && !seltags
[j
]; j
++);
1706 if(j
== LENGTH(tags
))
1707 seltags
[i
] = True
; /* at least one tag must be viewed */
1715 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1716 c
->isbanned
= False
;
1720 unmanage(Client
*c
) {
1723 wc
.border_width
= c
->oldbw
;
1724 /* The server grab construct avoids race conditions. */
1726 XSetErrorHandler(xerrordummy
);
1727 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1732 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1733 setclientstate(c
, WithdrawnState
);
1737 XSetErrorHandler(xerror
);
1743 unmapnotify(XEvent
*e
) {
1745 XUnmapEvent
*ev
= &e
->xunmap
;
1747 if((c
= getclient(ev
->window
)))
1752 updatebarpos(void) {
1754 if(dc
.drawable
!= 0)
1755 XFreePixmap(dpy
, dc
.drawable
);
1756 dc
.drawable
= XCreatePixmap(dpy
, root
, bw
, bh
, DefaultDepth(dpy
, screen
));
1757 XMoveResizeWindow(dpy
, barwin
, bx
, by
, bw
, bh
);
1761 updatesizehints(Client
*c
) {
1765 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
) || !size
.flags
)
1767 c
->flags
= size
.flags
;
1768 if(c
->flags
& PBaseSize
) {
1769 c
->basew
= size
.base_width
;
1770 c
->baseh
= size
.base_height
;
1772 else if(c
->flags
& PMinSize
) {
1773 c
->basew
= size
.min_width
;
1774 c
->baseh
= size
.min_height
;
1777 c
->basew
= c
->baseh
= 0;
1778 if(c
->flags
& PResizeInc
) {
1779 c
->incw
= size
.width_inc
;
1780 c
->inch
= size
.height_inc
;
1783 c
->incw
= c
->inch
= 0;
1784 if(c
->flags
& PMaxSize
) {
1785 c
->maxw
= size
.max_width
;
1786 c
->maxh
= size
.max_height
;
1789 c
->maxw
= c
->maxh
= 0;
1790 if(c
->flags
& PMinSize
) {
1791 c
->minw
= size
.min_width
;
1792 c
->minh
= size
.min_height
;
1794 else if(c
->flags
& PBaseSize
) {
1795 c
->minw
= size
.base_width
;
1796 c
->minh
= size
.base_height
;
1799 c
->minw
= c
->minh
= 0;
1800 if(c
->flags
& PAspect
) {
1801 c
->minax
= size
.min_aspect
.x
;
1802 c
->maxax
= size
.max_aspect
.x
;
1803 c
->minay
= size
.min_aspect
.y
;
1804 c
->maxay
= size
.max_aspect
.y
;
1807 c
->minax
= c
->maxax
= c
->minay
= c
->maxay
= 0;
1808 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1809 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1813 updatetitle(Client
*c
) {
1814 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1815 gettextprop(c
->win
, wmatom
[WMName
], c
->name
, sizeof c
->name
);
1819 updatewmhints(Client
*c
) {
1822 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1824 sel
->isurgent
= False
;
1826 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1832 view(const char *arg
) {
1833 Bool tmp
[LENGTH(tags
)];
1836 for(i
= 0; i
< LENGTH(tags
); i
++)
1837 tmp
[i
] = (NULL
== arg
);
1838 tmp
[idxoftag(arg
)] = True
;
1840 if(memcmp(seltags
, tmp
, TAGSZ
) != 0) {
1841 seltags
= viewtags
[viewtags_set
^= 1]; /* toggle tagset */
1842 memcpy(seltags
, tmp
, TAGSZ
);
1850 viewprevtag(const char *arg
) {
1851 seltags
= viewtags
[viewtags_set
^= 1]; /* toggle tagset */
1855 /* There's no way to check accesses to destroyed windows, thus those cases are
1856 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1857 * default error handler, which may call exit. */
1859 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1860 if(ee
->error_code
== BadWindow
1861 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1862 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1863 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1864 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1865 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1866 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1867 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1869 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1870 ee
->request_code
, ee
->error_code
);
1871 return xerrorxlib(dpy
, ee
); /* may call exit */
1875 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1879 /* Startup Error handler to check if another window manager
1880 * is already running. */
1882 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
1888 zoom(const char *arg
) {
1891 if(c
== nexttiled(clients
))
1892 if(!c
|| !(c
= nexttiled(c
->next
)))
1894 if(!lt
->isfloating
&& !sel
->isfloating
) {
1903 main(int argc
, char *argv
[]) {
1904 if(argc
== 2 && !strcmp("-v", argv
[1]))
1905 eprint("dwm-"VERSION
", © 2006-2008 dwm engineers, see LICENSE for details\n");
1907 eprint("usage: dwm [-v]\n");
1909 setlocale(LC_CTYPE
, "");
1910 if(!(dpy
= XOpenDisplay(0)))
1911 eprint("dwm: cannot open display\n");