2007-05-30 07:19:28 -03:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2006-07-15 12:00:56 -03:00
|
|
|
#include "dwm.h"
|
2006-07-14 06:57:33 -03:00
|
|
|
#include <errno.h>
|
2006-12-07 06:02:46 -03:00
|
|
|
#include <locale.h>
|
2006-07-10 11:38:18 -03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2006-07-14 05:07:38 -03:00
|
|
|
#include <string.h>
|
2006-07-14 06:57:33 -03:00
|
|
|
#include <unistd.h>
|
2006-07-21 13:34:10 -03:00
|
|
|
#include <sys/select.h>
|
2006-07-10 11:38:18 -03:00
|
|
|
#include <X11/cursorfont.h>
|
2006-08-14 14:18:02 -03:00
|
|
|
#include <X11/keysym.h>
|
2006-07-10 11:38:18 -03:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xproto.h>
|
2007-08-15 14:27:32 -03:00
|
|
|
#include <X11/Xutil.h>
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2006-08-23 05:21:57 -03:00
|
|
|
/* extern */
|
|
|
|
|
2007-01-14 18:32:26 -03:00
|
|
|
char stext[256];
|
2007-02-21 07:49:06 -03:00
|
|
|
int screen, sx, sy, sw, sh, wax, way, waw, wah;
|
2007-09-15 08:16:54 -03:00
|
|
|
unsigned int ntags;
|
2007-06-06 06:17:56 -03:00
|
|
|
unsigned int numlockmask = 0;
|
2007-08-22 14:01:05 -03:00
|
|
|
Atom wmatom[WMLast], netatom[NetLast];
|
2007-08-17 16:12:55 -03:00
|
|
|
Bool *seltags;
|
2007-01-23 13:12:15 -03:00
|
|
|
Bool selscreen = True;
|
2006-08-23 05:21:57 -03:00
|
|
|
Client *clients = NULL;
|
|
|
|
Client *sel = NULL;
|
2006-09-07 12:53:40 -03:00
|
|
|
Client *stack = NULL;
|
2006-08-23 05:21:57 -03:00
|
|
|
Cursor cursor[CurLast];
|
|
|
|
Display *dpy;
|
2007-09-15 08:16:54 -03:00
|
|
|
Window root;
|
2006-08-23 05:21:57 -03:00
|
|
|
|
2006-07-17 04:12:29 -03:00
|
|
|
/* static */
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2006-07-15 11:30:50 -03:00
|
|
|
static int (*xerrorxlib)(Display *, XErrorEvent *);
|
2006-08-16 04:31:41 -03:00
|
|
|
static Bool otherwm, readin;
|
2007-02-21 07:45:51 -03:00
|
|
|
static Bool running = True;
|
2006-07-10 11:38:18 -03:00
|
|
|
|
|
|
|
static void
|
2006-09-25 03:21:51 -03:00
|
|
|
cleanup(void) {
|
2006-08-16 04:31:41 -03:00
|
|
|
close(STDIN_FILENO);
|
2007-01-02 12:25:01 -03:00
|
|
|
while(stack) {
|
2007-06-04 06:37:33 -03:00
|
|
|
unban(stack);
|
2007-08-22 14:01:05 -03:00
|
|
|
unmanage(stack);
|
2006-07-15 12:00:56 -03:00
|
|
|
}
|
2006-08-15 04:37:12 -03:00
|
|
|
if(dc.font.set)
|
|
|
|
XFreeFontSet(dpy, dc.font.set);
|
|
|
|
else
|
|
|
|
XFreeFont(dpy, dc.font.xfont);
|
2006-08-15 02:31:42 -03:00
|
|
|
XUngrabKey(dpy, AnyKey, AnyModifier, root);
|
2006-08-15 04:37:12 -03:00
|
|
|
XFreePixmap(dpy, dc.drawable);
|
|
|
|
XFreeGC(dpy, dc.gc);
|
2006-08-16 14:25:29 -03:00
|
|
|
XDestroyWindow(dpy, barwin);
|
2006-12-06 07:19:06 -03:00
|
|
|
XFreeCursor(dpy, cursor[CurNormal]);
|
|
|
|
XFreeCursor(dpy, cursor[CurResize]);
|
|
|
|
XFreeCursor(dpy, cursor[CurMove]);
|
2006-07-15 12:00:56 -03:00
|
|
|
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
|
2006-08-15 02:31:42 -03:00
|
|
|
XSync(dpy, False);
|
2007-08-17 16:12:55 -03:00
|
|
|
free(seltags);
|
2006-07-15 12:00:56 -03:00
|
|
|
}
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2007-08-19 13:39:54 -03:00
|
|
|
static long
|
|
|
|
getstate(Window w) {
|
|
|
|
int format, status;
|
|
|
|
long result = -1;
|
|
|
|
unsigned char *p = NULL;
|
|
|
|
unsigned long n, extra;
|
|
|
|
Atom real;
|
|
|
|
|
|
|
|
status = XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
|
|
|
|
&real, &format, &n, &extra, (unsigned char **)&p);
|
|
|
|
if(status != Success)
|
|
|
|
return -1;
|
|
|
|
if(n != 0)
|
|
|
|
result = *p;
|
|
|
|
XFree(p);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-02-20 09:56:21 -03:00
|
|
|
static void
|
|
|
|
scan(void) {
|
|
|
|
unsigned int i, num;
|
|
|
|
Window *wins, d1, d2;
|
|
|
|
XWindowAttributes wa;
|
|
|
|
|
|
|
|
wins = NULL;
|
|
|
|
if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
|
|
|
|
for(i = 0; i < num; i++) {
|
|
|
|
if(!XGetWindowAttributes(dpy, wins[i], &wa)
|
|
|
|
|| wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
|
|
|
|
continue;
|
2007-08-19 13:39:54 -03:00
|
|
|
if(wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
|
|
|
|
manage(wins[i], &wa);
|
|
|
|
}
|
|
|
|
for(i = 0; i < num; i++) { /* now the transients */
|
|
|
|
if(!XGetWindowAttributes(dpy, wins[i], &wa))
|
|
|
|
continue;
|
|
|
|
if(XGetTransientForHint(dpy, wins[i], &d1)
|
|
|
|
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
|
2007-02-20 09:56:21 -03:00
|
|
|
manage(wins[i], &wa);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(wins)
|
|
|
|
XFree(wins);
|
|
|
|
}
|
|
|
|
|
2006-08-23 05:21:57 -03:00
|
|
|
static void
|
2006-09-25 03:21:51 -03:00
|
|
|
setup(void) {
|
2006-08-23 05:21:57 -03:00
|
|
|
int i, j;
|
|
|
|
unsigned int mask;
|
|
|
|
Window w;
|
|
|
|
XModifierKeymap *modmap;
|
|
|
|
XSetWindowAttributes wa;
|
|
|
|
|
|
|
|
/* init atoms */
|
|
|
|
wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
|
|
|
|
wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
|
2007-08-19 05:40:07 -03:00
|
|
|
wmatom[WMName] = XInternAtom(dpy, "WM_NAME", False);
|
2007-01-28 16:29:41 -03:00
|
|
|
wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
|
2006-08-23 05:21:57 -03:00
|
|
|
netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
|
|
|
|
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
|
|
|
|
XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
|
|
|
|
PropModeReplace, (unsigned char *) netatom, NetLast);
|
|
|
|
/* init cursors */
|
|
|
|
cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
|
|
|
|
cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
|
|
|
|
cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
|
2006-10-06 06:50:15 -03:00
|
|
|
/* init modifier map */
|
2006-08-23 05:21:57 -03:00
|
|
|
modmap = XGetModifierMapping(dpy);
|
2007-02-14 05:09:18 -03:00
|
|
|
for (i = 0; i < 8; i++)
|
2006-08-23 05:21:57 -03:00
|
|
|
for (j = 0; j < modmap->max_keypermod; j++) {
|
2007-02-14 05:09:18 -03:00
|
|
|
if(modmap->modifiermap[i * modmap->max_keypermod + j]
|
|
|
|
== XKeysymToKeycode(dpy, XK_Num_Lock))
|
2006-08-23 05:21:57 -03:00
|
|
|
numlockmask = (1 << i);
|
|
|
|
}
|
2006-12-06 07:19:06 -03:00
|
|
|
XFreeModifiermap(modmap);
|
2006-10-06 06:50:15 -03:00
|
|
|
/* select for events */
|
2006-09-12 05:57:28 -03:00
|
|
|
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
|
2007-05-07 08:12:41 -03:00
|
|
|
| EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
|
2006-08-23 05:21:57 -03:00
|
|
|
wa.cursor = cursor[CurNormal];
|
|
|
|
XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
|
2007-05-07 08:12:41 -03:00
|
|
|
XSelectInput(dpy, root, wa.event_mask);
|
2006-08-23 05:21:57 -03:00
|
|
|
grabkeys();
|
2007-02-19 12:40:36 -03:00
|
|
|
compileregs();
|
2006-08-23 05:21:57 -03:00
|
|
|
for(ntags = 0; tags[ntags]; ntags++);
|
2007-08-17 16:12:55 -03:00
|
|
|
seltags = emallocz(sizeof(Bool) * ntags);
|
|
|
|
seltags[0] = True;
|
2006-10-06 06:50:15 -03:00
|
|
|
/* geometry */
|
2007-02-21 07:49:06 -03:00
|
|
|
sx = sy = 0;
|
2006-08-23 05:21:57 -03:00
|
|
|
sw = DisplayWidth(dpy, screen);
|
|
|
|
sh = DisplayHeight(dpy, screen);
|
2007-09-15 15:39:31 -03:00
|
|
|
initstyle();
|
2007-02-19 12:40:36 -03:00
|
|
|
initlayouts();
|
2007-09-15 08:16:54 -03:00
|
|
|
initbar();
|
2006-10-06 06:50:15 -03:00
|
|
|
/* multihead support */
|
2007-01-23 13:12:15 -03:00
|
|
|
selscreen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
|
2006-08-23 05:21:57 -03:00
|
|
|
}
|
|
|
|
|
2006-07-15 12:00:56 -03:00
|
|
|
/*
|
|
|
|
* Startup Error handler to check if another window manager
|
|
|
|
* is already running.
|
|
|
|
*/
|
|
|
|
static int
|
2006-09-12 05:57:28 -03:00
|
|
|
xerrorstart(Display *dsply, XErrorEvent *ee) {
|
2006-07-15 12:00:56 -03:00
|
|
|
otherwm = True;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-07-17 04:12:29 -03:00
|
|
|
/* extern */
|
|
|
|
|
2007-08-19 05:40:07 -03:00
|
|
|
Bool
|
|
|
|
gettextprop(Window w, Atom atom, char *text, unsigned int size) {
|
|
|
|
char **list = NULL;
|
|
|
|
int n;
|
|
|
|
XTextProperty name;
|
|
|
|
|
|
|
|
if(!text || size == 0)
|
|
|
|
return False;
|
|
|
|
text[0] = '\0';
|
|
|
|
XGetTextProperty(dpy, w, &name, atom);
|
|
|
|
if(!name.nitems)
|
|
|
|
return False;
|
|
|
|
if(name.encoding == XA_STRING)
|
|
|
|
strncpy(text, (char *)name.value, size - 1);
|
|
|
|
else {
|
|
|
|
if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
|
|
|
|
&& n > 0 && *list)
|
|
|
|
{
|
|
|
|
strncpy(text, *list, size - 1);
|
|
|
|
XFreeStringList(list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
text[size - 1] = '\0';
|
|
|
|
XFree(name.value);
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2006-07-15 12:00:56 -03:00
|
|
|
void
|
2007-02-22 07:42:08 -03:00
|
|
|
quit(const char *arg) {
|
2006-08-16 04:31:41 -03:00
|
|
|
readin = running = False;
|
2006-07-10 11:38:18 -03:00
|
|
|
}
|
|
|
|
|
2006-10-06 06:50:15 -03:00
|
|
|
/* There's no way to check accesses to destroyed windows, thus those cases are
|
2006-07-17 04:12:29 -03:00
|
|
|
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
|
2006-09-11 06:28:28 -03:00
|
|
|
* default error handler, which may call exit.
|
2006-07-15 11:30:50 -03:00
|
|
|
*/
|
|
|
|
int
|
2006-09-12 05:57:28 -03:00
|
|
|
xerror(Display *dpy, XErrorEvent *ee) {
|
2006-07-15 11:30:50 -03:00
|
|
|
if(ee->error_code == BadWindow
|
2006-07-20 07:18:06 -03:00
|
|
|
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|
|
|
|
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
|
2006-09-12 03:27:11 -03:00
|
|
|
|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
|
|
|
|
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
|
2006-07-15 11:30:50 -03:00
|
|
|
return 0;
|
|
|
|
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
|
2006-07-20 07:18:06 -03:00
|
|
|
ee->request_code, ee->error_code);
|
2006-09-11 06:28:28 -03:00
|
|
|
return xerrorxlib(dpy, ee); /* may call exit */
|
2006-07-12 11:00:51 -03:00
|
|
|
}
|
|
|
|
|
2006-07-10 11:38:18 -03:00
|
|
|
int
|
2006-09-12 05:57:28 -03:00
|
|
|
main(int argc, char *argv[]) {
|
2006-11-26 10:26:53 -03:00
|
|
|
char *p;
|
2006-08-23 05:21:57 -03:00
|
|
|
int r, xfd;
|
2006-07-20 07:18:06 -03:00
|
|
|
fd_set rd;
|
2007-02-19 11:23:35 -03:00
|
|
|
XEvent ev;
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2007-05-23 17:33:46 -03:00
|
|
|
if(argc == 2 && !strcmp("-v", argv[1]))
|
2007-05-30 07:10:01 -03:00
|
|
|
eprint("dwm-"VERSION", © 2006-2007 A. R. Garbe, S. van Dijk, J. Salmi, P. Hruby, S. Nagy\n");
|
2006-07-21 09:11:38 -03:00
|
|
|
else if(argc != 1)
|
|
|
|
eprint("usage: dwm [-v]\n");
|
2006-12-07 06:02:46 -03:00
|
|
|
setlocale(LC_CTYPE, "");
|
2007-02-19 17:17:54 -03:00
|
|
|
if(!(dpy = XOpenDisplay(0)))
|
2006-08-05 08:10:09 -03:00
|
|
|
eprint("dwm: cannot open display\n");
|
2006-08-14 02:23:46 -03:00
|
|
|
xfd = ConnectionNumber(dpy);
|
2006-07-10 11:38:18 -03:00
|
|
|
screen = DefaultScreen(dpy);
|
|
|
|
root = RootWindow(dpy, screen);
|
2006-07-15 11:30:50 -03:00
|
|
|
otherwm = False;
|
|
|
|
XSetErrorHandler(xerrorstart);
|
2006-08-05 08:10:09 -03:00
|
|
|
/* this causes an error if some other window manager is running */
|
2006-07-10 11:38:18 -03:00
|
|
|
XSelectInput(dpy, root, SubstructureRedirectMask);
|
2006-07-15 13:11:14 -03:00
|
|
|
XSync(dpy, False);
|
2006-07-15 11:30:50 -03:00
|
|
|
if(otherwm)
|
|
|
|
eprint("dwm: another window manager is already running\n");
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2006-08-15 02:31:42 -03:00
|
|
|
XSync(dpy, False);
|
2006-07-15 13:11:14 -03:00
|
|
|
XSetErrorHandler(NULL);
|
2006-07-15 11:30:50 -03:00
|
|
|
xerrorxlib = XSetErrorHandler(xerror);
|
2006-08-14 10:11:02 -03:00
|
|
|
XSync(dpy, False);
|
2006-08-23 05:21:57 -03:00
|
|
|
setup();
|
2007-09-15 07:36:42 -03:00
|
|
|
drawbar();
|
2006-07-15 11:30:50 -03:00
|
|
|
scan();
|
2006-07-10 11:38:18 -03:00
|
|
|
|
2006-08-07 07:12:56 -03:00
|
|
|
/* main event loop, also reads status text from stdin */
|
2006-08-10 10:19:25 -03:00
|
|
|
XSync(dpy, False);
|
2006-08-16 04:31:41 -03:00
|
|
|
readin = True;
|
2006-07-14 07:09:05 -03:00
|
|
|
while(running) {
|
2006-07-14 06:57:33 -03:00
|
|
|
FD_ZERO(&rd);
|
2006-08-02 11:32:05 -03:00
|
|
|
if(readin)
|
|
|
|
FD_SET(STDIN_FILENO, &rd);
|
2006-08-14 02:23:46 -03:00
|
|
|
FD_SET(xfd, &rd);
|
2006-11-25 15:26:16 -03:00
|
|
|
if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
|
|
|
|
if(errno == EINTR)
|
|
|
|
continue;
|
2006-11-26 10:26:53 -03:00
|
|
|
eprint("select failed\n");
|
2006-11-25 15:26:16 -03:00
|
|
|
}
|
|
|
|
if(FD_ISSET(STDIN_FILENO, &rd)) {
|
2006-11-26 10:26:53 -03:00
|
|
|
switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) {
|
2006-11-25 15:26:16 -03:00
|
|
|
case -1:
|
2006-11-26 10:26:53 -03:00
|
|
|
strncpy(stext, strerror(errno), sizeof stext - 1);
|
2006-11-27 06:29:47 -03:00
|
|
|
stext[sizeof stext - 1] = '\0';
|
2006-11-25 15:26:16 -03:00
|
|
|
readin = False;
|
|
|
|
break;
|
|
|
|
case 0:
|
2006-11-27 06:29:47 -03:00
|
|
|
strncpy(stext, "EOF", 4);
|
2006-11-25 15:26:16 -03:00
|
|
|
readin = False;
|
|
|
|
break;
|
|
|
|
default:
|
2006-11-26 11:43:16 -03:00
|
|
|
for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
|
2007-02-09 10:56:19 -03:00
|
|
|
for(; p >= stext && *p != '\n'; --p);
|
2006-11-26 10:26:53 -03:00
|
|
|
if(p > stext)
|
|
|
|
strncpy(stext, p + 1, sizeof stext);
|
2006-07-14 06:57:33 -03:00
|
|
|
}
|
2007-09-15 07:36:42 -03:00
|
|
|
drawbar();
|
2006-07-14 06:57:33 -03:00
|
|
|
}
|
2007-02-21 17:36:54 -03:00
|
|
|
while(XPending(dpy)) {
|
|
|
|
XNextEvent(dpy, &ev);
|
|
|
|
if(handler[ev.type])
|
|
|
|
(handler[ev.type])(&ev); /* call handler */
|
|
|
|
}
|
2006-07-10 17:16:48 -03:00
|
|
|
}
|
2006-07-10 11:38:18 -03:00
|
|
|
cleanup();
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
return 0;
|
|
|
|
}
|