dwm/dwm.c

2073 lines
51 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details.
*
* dynamic window manager is designed like any other X client as well. It is
* driven through handling X events. In contrast to other X clients, a window
* manager selects for SubstructureRedirectMask on the root window, to receive
* events about window (dis-)appearance. Only one X connection at a time is
* allowed to select for this event mask.
*
* The event handlers of dwm are organized in an array which is accessed
* whenever a new event has been fetched. This allows event dispatching
* in O(1) time.
*
* Each child of the root window is called a client, except windows which have
* set the override_redirect flag. Clients are organized in a linked client
* list on each monitor, the focus history is remembered through a stack list
* on each monitor. Each client contains a bit array to indicate the tags of a
* client.
*
* Keys and tagging rules are organized as arrays and defined in config.h.
*
* To understand everything else, start reading main().
*/
2007-09-15 22:25:27 +02:00
#include <errno.h>
#include <locale.h>
2007-09-15 22:25:27 +02:00
#include <stdarg.h>
#include <signal.h>
#include <stdbool.h>
2007-09-15 22:25:27 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2007-09-27 09:14:32 +02:00
#include <sys/types.h>
2007-09-15 22:25:27 +02:00
#include <sys/wait.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
2007-10-17 11:19:14 +02:00
#include <X11/Xlib.h>
2007-09-15 22:25:27 +02:00
#include <X11/Xproto.h>
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif /* XINERAMA */
#include <X11/Xft/Xft.h>
2007-09-15 22:25:27 +02:00
2013-04-17 21:21:47 +02:00
#include "drw.h"
#include "util.h"
2012-11-17 19:01:22 +01:00
2007-09-15 22:25:27 +02:00
/* macros */
#define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
2011-06-27 21:12:42 +02:00
#define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
2011-11-06 20:31:29 +01:00
#define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
* MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
2009-06-23 18:20:33 +02:00
#define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
#define LENGTH(X) (sizeof X / sizeof X[0])
#define MOUSEMASK (BUTTONMASK|PointerMotionMask)
#define WIDTH(X) ((X)->w + 2 * (X)->bw)
#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (drw_text(drw, 0, 0, 0, 0, (X), 0) + drw->fonts[0]->h)
/* enums */
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
enum { SchemeNorm, SchemeSel, SchemeLast }; /* color schemes */
enum { NetSupported, NetWMName, NetWMState,
2011-11-02 13:01:28 +01:00
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
2008-06-20 17:52:07 +02:00
enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
typedef union {
int i;
2008-07-16 19:17:42 +02:00
unsigned int ui;
float f;
const void *v;
} Arg;
typedef struct {
2008-07-16 19:17:42 +02:00
unsigned int click;
unsigned int mask;
unsigned int button;
void (*func)(const Arg *arg);
const Arg arg;
} Button;
2009-06-22 15:58:08 +02:00
typedef struct Monitor Monitor;
typedef struct Client Client;
struct Client {
char name[256];
2008-06-15 11:52:57 +02:00
float mina, maxa;
int x, y, w, h;
int oldx, oldy, oldw, oldh;
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
2008-05-22 12:50:18 +02:00
int bw, oldbw;
2008-07-16 19:17:42 +02:00
unsigned int tags;
bool isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
Client *next;
Client *snext;
Monitor *mon;
Window win;
};
typedef struct {
2008-07-16 19:17:42 +02:00
unsigned int mod;
KeySym keysym;
2008-06-11 10:12:06 +02:00
void (*func)(const Arg *);
const Arg arg;
} Key;
typedef struct {
2009-06-22 15:58:08 +02:00
const char *symbol;
void (*arrange)(Monitor *);
} Layout;
struct Monitor {
char ltsymbol[16];
float mfact;
2011-10-25 21:40:46 +02:00
int nmaster;
int num;
2009-07-09 12:29:01 +02:00
int by; /* bar geometry */
2009-06-30 21:15:31 +02:00
int mx, my, mw, mh; /* screen size */
int wx, wy, ww, wh; /* window area */
unsigned int seltags;
unsigned int sellt;
unsigned int tagset[2];
bool showbar;
bool topbar;
Client *clients;
Client *sel;
Client *stack;
2009-06-22 15:58:08 +02:00
Monitor *next;
Window barwin;
const Layout *lt[2];
2009-06-22 15:58:08 +02:00
};
typedef struct {
2008-03-14 15:35:45 +01:00
const char *class;
const char *instance;
const char *title;
2008-07-16 19:17:42 +02:00
unsigned int tags;
bool isfloating;
int monitor;
} Rule;
2007-10-18 17:02:19 +02:00
/* function declarations */
2008-06-11 10:12:06 +02:00
static void applyrules(Client *c);
static bool applysizehints(Client *c, int *x, int *y, int *w, int *h, bool interact);
static void arrange(Monitor *m);
static void arrangemon(Monitor *m);
2008-06-11 10:12:06 +02:00
static void attach(Client *c);
static void attachstack(Client *c);
static void buttonpress(XEvent *e);
static void checkotherwm(void);
static void cleanup(void);
static void cleanupmon(Monitor *mon);
static void clearurgent(Client *c);
static void clientmessage(XEvent *e);
2008-06-11 10:12:06 +02:00
static void configure(Client *c);
static void configurenotify(XEvent *e);
static void configurerequest(XEvent *e);
static Monitor *createmon(void);
2008-06-11 10:12:06 +02:00
static void destroynotify(XEvent *e);
static void detach(Client *c);
static void detachstack(Client *c);
static Monitor *dirtomon(int dir);
static void drawbar(Monitor *m);
static void drawbars(void);
2008-06-11 10:12:06 +02:00
static void enternotify(XEvent *e);
static void expose(XEvent *e);
static void focus(Client *c);
static void focusin(XEvent *e);
2009-07-01 20:15:20 +02:00
static void focusmon(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void focusstack(const Arg *arg);
static bool getrootptr(int *x, int *y);
2008-06-11 10:12:06 +02:00
static long getstate(Window w);
static bool gettextprop(Window w, Atom atom, char *text, unsigned int size);
static void grabbuttons(Client *c, bool focused);
2008-06-11 10:12:06 +02:00
static void grabkeys(void);
2011-10-25 21:40:46 +02:00
static void incnmaster(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void keypress(XEvent *e);
static void killclient(const Arg *arg);
static void manage(Window w, XWindowAttributes *wa);
static void mappingnotify(XEvent *e);
static void maprequest(XEvent *e);
static void monocle(Monitor *m);
2011-11-15 20:16:58 +01:00
static void motionnotify(XEvent *e);
static void movemouse(const Arg *arg);
2009-06-23 18:20:33 +02:00
static Client *nexttiled(Client *c);
2011-04-15 10:13:06 +02:00
static void pop(Client *);
2008-06-11 10:12:06 +02:00
static void propertynotify(XEvent *e);
static void quit(const Arg *arg);
2011-11-06 20:31:29 +01:00
static Monitor *recttomon(int x, int y, int w, int h);
static void resize(Client *c, int x, int y, int w, int h, bool interact);
static void resizeclient(Client *c, int x, int y, int w, int h);
static void resizemouse(const Arg *arg);
static void restack(Monitor *m);
2008-06-11 10:12:06 +02:00
static void run(void);
static void scan(void);
static bool sendevent(Client *c, Atom proto);
static void sendmon(Client *c, Monitor *m);
2008-06-11 10:12:06 +02:00
static void setclientstate(Client *c, long state);
static void setfocus(Client *c);
static void setfullscreen(Client *c, bool fullscreen);
2008-06-19 12:38:53 +02:00
static void setlayout(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void setmfact(const Arg *arg);
static void setup(void);
static void showhide(Client *c);
2009-08-13 11:45:59 +02:00
static void sigchld(int unused);
2008-06-11 10:12:06 +02:00
static void spawn(const Arg *arg);
static void tag(const Arg *arg);
2009-07-01 20:15:20 +02:00
static void tagmon(const Arg *arg);
static void tile(Monitor *);
2008-06-11 10:12:06 +02:00
static void togglebar(const Arg *arg);
static void togglefloating(const Arg *arg);
static void toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
static void unfocus(Client *c, bool setfocus);
static void unmanage(Client *c, bool destroyed);
2008-06-11 10:12:06 +02:00
static void unmapnotify(XEvent *e);
static bool updategeom(void);
static void updatebarpos(Monitor *m);
2009-06-22 15:58:08 +02:00
static void updatebars(void);
static void updateclientlist(void);
static void updatenumlockmask(void);
2008-06-11 10:12:06 +02:00
static void updatesizehints(Client *c);
static void updatestatus(void);
2011-11-02 13:01:28 +01:00
static void updatewindowtype(Client *c);
2008-06-11 10:12:06 +02:00
static void updatetitle(Client *c);
static void updatewmhints(Client *c);
static void view(const Arg *arg);
2009-06-30 20:39:59 +02:00
static Client *wintoclient(Window w);
static Monitor *wintomon(Window w);
2008-06-11 10:12:06 +02:00
static int xerror(Display *dpy, XErrorEvent *ee);
static int xerrordummy(Display *dpy, XErrorEvent *ee);
static int xerrorstart(Display *dpy, XErrorEvent *ee);
static void zoom(const Arg *arg);
/* variables */
2009-07-12 23:49:06 +02:00
static const char broken[] = "broken";
static char stext[256];
static int screen;
static int sw, sh; /* X display screen geometry width, height */
static int bh, blw = 0; /* bar geometry */
2008-06-11 10:12:06 +02:00
static int (*xerrorxlib)(Display *, XErrorEvent *);
2008-07-16 19:17:42 +02:00
static unsigned int numlockmask = 0;
2008-06-11 10:12:06 +02:00
static void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
[ClientMessage] = clientmessage,
[ConfigureRequest] = configurerequest,
[ConfigureNotify] = configurenotify,
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,
[Expose] = expose,
[FocusIn] = focusin,
[KeyPress] = keypress,
[MappingNotify] = mappingnotify,
[MapRequest] = maprequest,
2011-11-15 20:16:58 +01:00
[MotionNotify] = motionnotify,
[PropertyNotify] = propertynotify,
[UnmapNotify] = unmapnotify
};
2008-06-11 10:12:06 +02:00
static Atom wmatom[WMLast], netatom[NetLast];
static bool running = true;
2013-06-16 15:20:29 +02:00
static Cur *cursor[CurLast];
static ClrScheme scheme[SchemeLast];
2008-06-11 10:12:06 +02:00
static Display *dpy;
2013-06-16 15:20:29 +02:00
static Drw *drw;
static Monitor *mons, *selmon;
static Window root;
2009-07-02 21:56:23 +02:00
/* configuration, allows nested code to access above variables */
#include "config.h"
2008-07-16 19:17:42 +02:00
/* compile-time check if all tags fit into an unsigned int bit array. */
2009-07-14 17:01:14 +02:00
struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
2007-10-18 17:02:19 +02:00
/* function implementations */
void
2007-09-16 11:53:14 +02:00
applyrules(Client *c) {
2009-07-12 23:49:06 +02:00
const char *class, *instance;
2008-07-16 19:17:42 +02:00
unsigned int i;
const Rule *r;
Monitor *m;
XClassHint ch = { NULL, NULL };
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02:00
/* rule matching */
c->isfloating = false;
c->tags = 0;
XGetClassHint(dpy, c->win, &ch);
class = ch.res_class ? ch.res_class : broken;
instance = ch.res_name ? ch.res_name : broken;
for(i = 0; i < LENGTH(rules); i++) {
r = &rules[i];
if((!r->title || strstr(c->name, r->title))
&& (!r->class || strstr(class, r->class))
&& (!r->instance || strstr(instance, r->instance)))
{
c->isfloating = r->isfloating;
c->tags |= r->tags;
for(m = mons; m && m->num != r->monitor; m = m->next);
if(m)
c->mon = m;
2007-09-16 11:53:14 +02:00
}
2008-02-26 23:51:23 +01:00
}
if(ch.res_class)
XFree(ch.res_class);
if(ch.res_name)
XFree(ch.res_name);
c->tags = c->tags & TAGMASK ? c->tags & TAGMASK : c->mon->tagset[c->mon->seltags];
2007-09-15 22:25:27 +02:00
}
bool
applysizehints(Client *c, int *x, int *y, int *w, int *h, bool interact) {
bool baseismin;
2009-06-30 21:15:31 +02:00
Monitor *m = c->mon;
/* set minimum possible */
*w = MAX(1, *w);
*h = MAX(1, *h);
if(interact) {
if(*x > sw)
*x = sw - WIDTH(c);
if(*y > sh)
*y = sh - HEIGHT(c);
if(*x + *w + 2 * c->bw < 0)
*x = 0;
if(*y + *h + 2 * c->bw < 0)
*y = 0;
}
else {
2011-11-04 20:02:35 +01:00
if(*x >= m->wx + m->ww)
*x = m->wx + m->ww - WIDTH(c);
if(*y >= m->wy + m->wh)
*y = m->wy + m->wh - HEIGHT(c);
if(*x + *w + 2 * c->bw <= m->wx)
*x = m->wx;
if(*y + *h + 2 * c->bw <= m->wy)
*y = m->wy;
}
if(*h < bh)
*h = bh;
if(*w < bh)
*w = bh;
2011-10-25 21:08:08 +02:00
if(resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
/* see last two sentences in ICCCM 4.1.2.3 */
baseismin = c->basew == c->minw && c->baseh == c->minh;
if(!baseismin) { /* temporarily remove base dimensions */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for aspect limits */
if(c->mina > 0 && c->maxa > 0) {
if(c->maxa < (float)*w / *h)
2009-07-17 16:28:07 +02:00
*w = *h * c->maxa + 0.5;
else if(c->mina < (float)*h / *w)
2009-07-17 16:28:07 +02:00
*h = *w * c->mina + 0.5;
}
if(baseismin) { /* increment calculation requires this */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for increment value */
if(c->incw)
*w -= *w % c->incw;
if(c->inch)
*h -= *h % c->inch;
/* restore base dimensions */
*w = MAX(*w + c->basew, c->minw);
*h = MAX(*h + c->baseh, c->minh);
if(c->maxw)
*w = MIN(*w, c->maxw);
if(c->maxh)
*h = MIN(*h, c->maxh);
}
return *x != c->x || *y != c->y || *w != c->w || *h != c->h;
}
void
arrange(Monitor *m) {
if(m)
showhide(m->stack);
else for(m = mons; m; m = m->next)
showhide(m->stack);
if(m) {
arrangemon(m);
restack(m);
} else for(m = mons; m; m = m->next)
arrangemon(m);
}
void
arrangemon(Monitor *m) {
strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
if(m->lt[m->sellt]->arrange)
m->lt[m->sellt]->arrange(m);
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
attach(Client *c) {
c->next = c->mon->clients;
c->mon->clients = c;
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
attachstack(Client *c) {
c->snext = c->mon->stack;
c->mon->stack = c;
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
buttonpress(XEvent *e) {
2008-07-16 19:17:42 +02:00
unsigned int i, x, click;
2008-06-20 17:52:07 +02:00
Arg arg = {0};
2007-09-16 11:53:14 +02:00
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XButtonPressedEvent *ev = &e->xbutton;
2007-09-15 22:25:27 +02:00
2008-06-15 11:52:57 +02:00
click = ClkRootWin;
/* focus monitor if necessary */
2009-06-30 20:39:59 +02:00
if((m = wintomon(ev->window)) && m != selmon) {
unfocus(selmon->sel, true);
selmon = m;
focus(NULL);
}
2009-07-09 12:29:01 +02:00
if(ev->window == selmon->barwin) {
i = x = 0;
2011-07-27 19:59:10 +02:00
do
x += TEXTW(tags[i]);
2011-07-27 19:59:10 +02:00
while(ev->x >= x && ++i < LENGTH(tags));
2008-06-20 17:52:07 +02:00
if(i < LENGTH(tags)) {
click = ClkTagBar;
arg.ui = 1 << i;
}
else if(ev->x < x + blw)
click = ClkLtSymbol;
else if(ev->x > selmon->ww - TEXTW(stext))
click = ClkStatusText;
else
click = ClkWinTitle;
2007-09-15 22:25:27 +02:00
}
2009-06-30 20:39:59 +02:00
else if((c = wintoclient(ev->window))) {
2008-06-15 11:52:57 +02:00
focus(c);
click = ClkClientWin;
2008-06-15 11:52:57 +02:00
}
for(i = 0; i < LENGTH(buttons); i++)
if(click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
2009-07-14 17:26:04 +02:00
&& CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
2008-09-01 23:18:50 +02:00
buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 12:34:08 +02:00
checkotherwm(void) {
xerrorxlib = XSetErrorHandler(xerrorstart);
2007-09-16 12:34:08 +02:00
/* this causes an error if some other window manager is running */
XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
XSetErrorHandler(xerror);
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
}
void
2007-09-16 11:53:14 +02:00
cleanup(void) {
2008-08-12 21:24:40 +02:00
Arg a = {.ui = ~0};
Layout foo = { "", NULL };
Monitor *m;
size_t i;
2008-06-11 10:12:06 +02:00
view(&a);
selmon->lt[selmon->sellt] = &foo;
for(m = mons; m; m = m->next)
while(m->stack)
unmanage(m->stack, false);
2008-02-18 18:08:22 +01:00
XUngrabKey(dpy, AnyKey, AnyModifier, root);
while(mons)
cleanupmon(mons);
for(i = 0; i < CurLast; i++)
drw_cur_free(drw, cursor[i]);
for(i = 0; i < SchemeLast; i++) {
drw_clr_free(scheme[i].border);
drw_clr_free(scheme[i].bg);
drw_clr_free(scheme[i].fg);
}
2013-06-16 15:20:29 +02:00
drw_free(drw);
2008-02-18 18:08:22 +01:00
XSync(dpy, False);
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
2007-09-15 22:25:27 +02:00
}
2009-06-22 15:58:08 +02:00
void
cleanupmon(Monitor *mon) {
2009-06-22 15:58:08 +02:00
Monitor *m;
if(mon == mons)
mons = mons->next;
else {
for(m = mons; m && m->next != mon; m = m->next);
m->next = mon->next;
2009-06-22 15:58:08 +02:00
}
XUnmapWindow(dpy, mon->barwin);
XDestroyWindow(dpy, mon->barwin);
free(mon);
2009-06-22 15:58:08 +02:00
}
void
clearurgent(Client *c) {
XWMHints *wmh;
c->isurgent = false;
if(!(wmh = XGetWMHints(dpy, c->win)))
return;
wmh->flags &= ~XUrgencyHint;
XSetWMHints(dpy, c->win, wmh);
XFree(wmh);
}
void
clientmessage(XEvent *e) {
XClientMessageEvent *cme = &e->xclient;
Client *c = wintoclient(cme->window);
if(!c)
return;
2011-11-06 20:30:06 +01:00
if(cme->message_type == netatom[NetWMState]) {
if(cme->data.l[1] == netatom[NetWMFullscreen] || cme->data.l[2] == netatom[NetWMFullscreen])
setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD */
|| (cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c->isfullscreen)));
}
else if(cme->message_type == netatom[NetActiveWindow]) {
if(!ISVISIBLE(c)) {
2011-05-12 16:16:33 +02:00
c->mon->seltags ^= 1;
c->mon->tagset[c->mon->seltags] = c->tags;
}
pop(c);
}
}
void
2007-09-16 11:53:14 +02:00
configure(Client *c) {
XConfigureEvent ce;
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02:00
ce.type = ConfigureNotify;
ce.display = dpy;
ce.event = c->win;
ce.window = c->win;
ce.x = c->x;
ce.y = c->y;
ce.width = c->w;
ce.height = c->h;
ce.border_width = c->bw;
2007-09-16 11:53:14 +02:00
ce.above = None;
ce.override_redirect = False;
XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
}
void
2007-09-16 11:53:14 +02:00
configurenotify(XEvent *e) {
2009-06-22 15:58:08 +02:00
Monitor *m;
2007-09-16 11:53:14 +02:00
XConfigureEvent *ev = &e->xconfigure;
bool dirty;
2007-09-16 11:53:14 +02:00
/* TODO: updategeom handling sucks, needs to be simplified */
if(ev->window == root) {
dirty = (sw != ev->width || sh != ev->height);
2008-03-19 10:27:17 +01:00
sw = ev->width;
sh = ev->height;
if(updategeom() || dirty) {
2013-06-16 15:20:29 +02:00
drw_resize(drw, sw, bh);
updatebars();
for(m = mons; m; m = m->next)
XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
focus(NULL);
arrange(NULL);
}
2008-03-19 10:27:17 +01:00
}
2007-09-15 22:25:27 +02:00
}
void
2007-09-15 22:25:27 +02:00
configurerequest(XEvent *e) {
Client *c;
Monitor *m;
2007-09-15 22:25:27 +02:00
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
2009-06-30 20:39:59 +02:00
if((c = wintoclient(ev->window))) {
2007-09-15 22:25:27 +02:00
if(ev->value_mask & CWBorderWidth)
c->bw = ev->border_width;
else if(c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
m = c->mon;
if(ev->value_mask & CWX) {
c->oldx = c->x;
c->x = m->mx + ev->x;
}
if(ev->value_mask & CWY) {
c->oldy = c->y;
c->y = m->my + ev->y;
}
if(ev->value_mask & CWWidth) {
c->oldw = c->w;
2007-09-15 22:25:27 +02:00
c->w = ev->width;
}
if(ev->value_mask & CWHeight) {
c->oldh = c->h;
2007-09-15 22:25:27 +02:00
c->h = ev->height;
}
2009-08-16 09:18:54 +02:00
if((c->x + c->w) > m->mx + m->mw && c->isfloating)
c->x = m->mx + (m->mw / 2 - WIDTH(c) / 2); /* center in x direction */
2009-08-16 09:18:54 +02:00
if((c->y + c->h) > m->my + m->mh && c->isfloating)
c->y = m->my + (m->mh / 2 - HEIGHT(c) / 2); /* center in y direction */
2008-06-19 15:01:40 +02:00
if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
2007-09-15 22:25:27 +02:00
configure(c);
2009-06-23 18:20:33 +02:00
if(ISVISIBLE(c))
2007-09-15 22:25:27 +02:00
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
}
else
configure(c);
}
else {
wc.x = ev->x;
wc.y = ev->y;
wc.width = ev->width;
wc.height = ev->height;
wc.border_width = ev->border_width;
wc.sibling = ev->above;
wc.stack_mode = ev->detail;
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
}
XSync(dpy, False);
}
Monitor *
createmon(void) {
Monitor *m;
m = ecalloc(1, sizeof(Monitor));
m->tagset[0] = m->tagset[1] = 1;
m->mfact = mfact;
2011-10-25 21:40:46 +02:00
m->nmaster = nmaster;
m->showbar = showbar;
m->topbar = topbar;
m->lt[0] = &layouts[0];
m->lt[1] = &layouts[1 % LENGTH(layouts)];
strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
return m;
}
void
2007-09-15 22:25:27 +02:00
destroynotify(XEvent *e) {
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
2009-06-30 20:39:59 +02:00
if((c = wintoclient(ev->window)))
unmanage(c, true);
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
detach(Client *c) {
2008-07-03 11:58:35 +02:00
Client **tc;
2008-06-11 10:12:06 +02:00
for(tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
2008-07-03 11:58:35 +02:00
*tc = c->next;
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
void
2007-09-16 11:53:14 +02:00
detachstack(Client *c) {
2009-06-30 20:45:25 +02:00
Client **tc, *t;
2007-09-16 11:53:14 +02:00
for(tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
2007-09-16 11:53:14 +02:00
*tc = c->snext;
2009-06-30 20:39:59 +02:00
if(c == c->mon->sel) {
2009-06-30 20:45:25 +02:00
for(t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
c->mon->sel = t;
2009-06-30 20:39:59 +02:00
}
2007-09-16 11:53:14 +02:00
}
Monitor *
dirtomon(int dir) {
Monitor *m = NULL;
2009-07-02 21:38:56 +02:00
if(dir > 0) {
if(!(m = selmon->next))
m = mons;
2009-07-02 21:38:56 +02:00
}
2011-07-27 19:59:10 +02:00
else if(selmon == mons)
for(m = mons; m->next; m = m->next);
else
for(m = mons; m->next != selmon; m = m->next);
return m;
}
void
drawbar(Monitor *m) {
int x, xx, w, dx;
unsigned int i, occ = 0, urg = 0;
Client *c;
dx = (drw->fonts[0]->ascent + drw->fonts[0]->descent + 2) / 4;
for(c = m->clients; c; c = c->next) {
occ |= c->tags;
if(c->isurgent)
urg |= c->tags;
}
2013-06-16 15:20:29 +02:00
x = 0;
for(i = 0; i < LENGTH(tags); i++) {
2013-06-16 15:20:29 +02:00
w = TEXTW(tags[i]);
drw_setscheme(drw, m->tagset[m->seltags] & 1 << i ? &scheme[SchemeSel] : &scheme[SchemeNorm]);
2013-06-16 15:20:29 +02:00
drw_text(drw, x, 0, w, bh, tags[i], urg & 1 << i);
drw_rect(drw, x + 1, 1, dx, dx, m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
2013-06-16 15:20:29 +02:00
occ & 1 << i, urg & 1 << i);
x += w;
}
2013-06-16 15:20:29 +02:00
w = blw = TEXTW(m->ltsymbol);
drw_setscheme(drw, &scheme[SchemeNorm]);
2013-06-16 15:20:29 +02:00
drw_text(drw, x, 0, w, bh, m->ltsymbol, 0);
x += w;
xx = x;
if(m == selmon) { /* status is only drawn on selected monitor */
2013-06-16 15:20:29 +02:00
w = TEXTW(stext);
x = m->ww - w;
if(x < xx) {
x = xx;
w = m->ww - xx;
}
2013-06-16 15:20:29 +02:00
drw_text(drw, x, 0, w, bh, stext, 0);
2007-09-15 22:25:27 +02:00
}
2009-07-02 19:40:04 +02:00
else
2013-06-16 15:20:29 +02:00
x = m->ww;
if((w = x - xx) > bh) {
x = xx;
if(m->sel) {
drw_setscheme(drw, m == selmon ? &scheme[SchemeSel] : &scheme[SchemeNorm]);
2013-06-16 15:20:29 +02:00
drw_text(drw, x, 0, w, bh, m->sel->name, 0);
drw_rect(drw, x + 1, 1, dx, dx, m->sel->isfixed, m->sel->isfloating, 0);
2013-06-16 15:20:29 +02:00
}
else {
drw_setscheme(drw, &scheme[SchemeNorm]);
drw_rect(drw, x, 0, w, bh, 1, 0, 1);
}
}
2013-06-16 15:20:29 +02:00
drw_map(drw, m->barwin, 0, 0, m->ww, bh);
2007-09-15 22:25:27 +02:00
}
void
drawbars(void) {
2009-06-22 15:58:08 +02:00
Monitor *m;
2009-06-22 15:58:08 +02:00
for(m = mons; m; m = m->next)
drawbar(m);
}
void
2007-09-16 11:53:14 +02:00
enternotify(XEvent *e) {
2011-06-25 10:07:28 +02:00
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XCrossingEvent *ev = &e->xcrossing;
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
return;
2011-06-25 10:07:28 +02:00
c = wintoclient(ev->window);
m = c ? c->mon : wintomon(ev->window);
if(m != selmon) {
unfocus(selmon->sel, true);
selmon = m;
}
else if(!c || c == selmon->sel)
2011-06-25 10:07:28 +02:00
return;
focus(c);
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
expose(XEvent *e) {
2009-06-22 15:58:08 +02:00
Monitor *m;
2007-09-16 11:53:14 +02:00
XExposeEvent *ev = &e->xexpose;
2007-09-15 22:25:27 +02:00
2009-06-30 20:39:59 +02:00
if(ev->count == 0 && (m = wintomon(ev->window)))
drawbar(m);
}
void
2007-09-16 11:53:14 +02:00
focus(Client *c) {
2009-06-23 18:20:33 +02:00
if(!c || !ISVISIBLE(c))
for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
/* was if(selmon->sel) */
if(selmon->sel && selmon->sel != c)
unfocus(selmon->sel, false);
2007-09-16 11:53:14 +02:00
if(c) {
2009-06-24 16:37:32 +02:00
if(c->mon != selmon)
selmon = c->mon;
if(c->isurgent)
clearurgent(c);
2007-09-16 11:53:14 +02:00
detachstack(c);
attachstack(c);
grabbuttons(c, true);
XSetWindowBorder(dpy, c->win, scheme[SchemeSel].border->pix);
setfocus(c);
2007-09-16 11:53:14 +02:00
}
else {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
selmon->sel = c;
drawbars();
2007-09-15 22:25:27 +02:00
}
void
focusin(XEvent *e) { /* there are some broken focus acquiring clients */
XFocusChangeEvent *ev = &e->xfocus;
if(selmon->sel && ev->window != selmon->sel->win)
setfocus(selmon->sel);
}
void
focusmon(const Arg *arg) {
Monitor *m;
if(!mons->next)
return;
if((m = dirtomon(arg->i)) == selmon)
return;
unfocus(selmon->sel, false); /* s/true/false/ fixes input focus issues
in gedit and anjuta */
selmon = m;
focus(NULL);
}
void
2008-06-11 10:12:06 +02:00
focusstack(const Arg *arg) {
Client *c = NULL, *i;
2007-09-15 22:25:27 +02:00
if(!selmon->sel)
2007-09-16 11:53:14 +02:00
return;
if(arg->i > 0) {
2009-06-23 18:20:33 +02:00
for(c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
2008-06-11 10:12:06 +02:00
if(!c)
2009-06-23 18:20:33 +02:00
for(c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
2007-09-15 22:25:27 +02:00
}
2008-06-11 10:12:06 +02:00
else {
for(i = selmon->clients; i != selmon->sel; i = i->next)
2009-06-23 18:20:33 +02:00
if(ISVISIBLE(i))
2008-06-11 10:12:06 +02:00
c = i;
if(!c)
2008-06-11 10:12:06 +02:00
for(; i; i = i->next)
2009-06-23 18:20:33 +02:00
if(ISVISIBLE(i))
2008-06-11 10:12:06 +02:00
c = i;
2007-09-16 11:53:14 +02:00
}
if(c) {
focus(c);
restack(selmon);
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
}
2011-11-06 20:30:06 +01:00
Atom
getatomprop(Client *c, Atom prop) {
int di;
unsigned long dl;
unsigned char *p = NULL;
Atom da, atom = None;
if(XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
&da, &di, &dl, &dl, &p) == Success && p) {
atom = *(Atom *)p;
XFree(p);
}
return atom;
}
bool
2009-07-08 18:05:20 +02:00
getrootptr(int *x, int *y) {
int di;
unsigned int dui;
Window dummy;
2009-07-02 19:40:04 +02:00
return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui) == True;
}
long
2007-09-16 11:53:14 +02:00
getstate(Window w) {
int format;
2007-09-16 11:53:14 +02:00
long result = -1;
unsigned char *p = NULL;
2008-07-16 19:17:42 +02:00
unsigned long n, extra;
2007-09-16 11:53:14 +02:00
Atom real;
2007-09-15 22:25:27 +02:00
if(XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
&real, &format, &n, &extra, (unsigned char **)&p) != Success)
2007-09-16 11:53:14 +02:00
return -1;
if(n != 0)
result = *p;
XFree(p);
return result;
2007-09-15 22:25:27 +02:00
}
bool
2008-07-16 19:17:42 +02:00
gettextprop(Window w, Atom atom, char *text, unsigned int size) {
2007-09-16 11:53:14 +02:00
char **list = NULL;
int n;
XTextProperty name;
2007-09-15 22:25:27 +02:00
if(!text || size == 0)
return false;
2007-09-16 11:53:14 +02:00
text[0] = '\0';
XGetTextProperty(dpy, w, &name, atom);
if(!name.nitems)
return false;
2007-09-16 11:53:14 +02:00
if(name.encoding == XA_STRING)
strncpy(text, (char *)name.value, size - 1);
else {
2009-07-14 17:26:04 +02:00
if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
2007-09-16 11:53:14 +02:00
strncpy(text, *list, size - 1);
XFreeStringList(list);
2007-09-15 22:25:27 +02:00
}
2007-09-16 11:53:14 +02:00
}
text[size - 1] = '\0';
XFree(name.value);
return true;
2007-09-15 22:25:27 +02:00
}
void
grabbuttons(Client *c, bool focused) {
updatenumlockmask();
{
unsigned int i, j;
unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
if(focused) {
for(i = 0; i < LENGTH(buttons); i++)
if(buttons[i].click == ClkClientWin)
for(j = 0; j < LENGTH(modifiers); j++)
XGrabButton(dpy, buttons[i].button,
buttons[i].mask | modifiers[j],
c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
2009-07-02 21:56:23 +02:00
}
else
XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
}
2007-09-16 11:53:14 +02:00
}
void
2008-05-13 15:33:02 +02:00
grabkeys(void) {
updatenumlockmask();
2009-07-02 19:40:04 +02:00
{
unsigned int i, j;
2008-08-23 10:31:28 +02:00
unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
KeyCode code;
XUngrabKey(dpy, AnyKey, AnyModifier, root);
2011-07-27 19:59:10 +02:00
for(i = 0; i < LENGTH(keys); i++)
2008-09-02 19:47:01 +02:00
if((code = XKeysymToKeycode(dpy, keys[i].keysym)))
for(j = 0; j < LENGTH(modifiers); j++)
XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
True, GrabModeAsync, GrabModeAsync);
}
}
2011-10-25 21:40:46 +02:00
void
incnmaster(const Arg *arg) {
2011-10-31 20:09:27 +01:00
selmon->nmaster = MAX(selmon->nmaster + arg->i, 0);
2011-10-25 21:40:46 +02:00
arrange(selmon);
}
#ifdef XINERAMA
static bool
isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info) {
while(n--)
if(unique[n].x_org == info->x_org && unique[n].y_org == info->y_org
&& unique[n].width == info->width && unique[n].height == info->height)
return false;
return true;
}
#endif /* XINERAMA */
void
2007-09-16 11:53:14 +02:00
keypress(XEvent *e) {
2008-07-16 19:17:42 +02:00
unsigned int i;
2007-09-16 11:53:14 +02:00
KeySym keysym;
XKeyEvent *ev;
ev = &e->xkey;
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
2007-10-28 12:52:16 +01:00
for(i = 0; i < LENGTH(keys); i++)
2007-09-16 11:53:14 +02:00
if(keysym == keys[i].keysym
2009-07-14 17:26:04 +02:00
&& CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
&& keys[i].func)
2008-06-11 10:12:06 +02:00
keys[i].func(&(keys[i].arg));
2007-09-16 11:53:14 +02:00
}
void
2008-06-11 10:12:06 +02:00
killclient(const Arg *arg) {
if(!selmon->sel)
2007-09-15 22:25:27 +02:00
return;
if(!sendevent(selmon->sel, wmatom[WMDelete])) {
2009-09-08 14:30:18 +02:00
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
XSetCloseDownMode(dpy, DestroyAll);
XKillClient(dpy, selmon->sel->win);
2009-09-08 14:30:18 +02:00
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
manage(Window w, XWindowAttributes *wa) {
Client *c, *t = NULL;
2008-08-18 11:22:46 +02:00
Window trans = None;
2007-09-16 11:53:14 +02:00
XWindowChanges wc;
2007-09-15 22:25:27 +02:00
c = ecalloc(1, sizeof(Client));
2007-09-16 11:53:14 +02:00
c->win = w;
2009-07-12 23:34:29 +02:00
updatetitle(c);
if(XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
c->mon = t->mon;
c->tags = t->tags;
}
else {
c->mon = selmon;
applyrules(c);
}
/* geometry */
c->x = c->oldx = wa->x;
c->y = c->oldy = wa->y;
c->w = c->oldw = wa->width;
c->h = c->oldh = wa->height;
c->oldbw = wa->border_width;
2011-11-06 20:30:06 +01:00
if(c->x + WIDTH(c) > c->mon->mx + c->mon->mw)
c->x = c->mon->mx + c->mon->mw - WIDTH(c);
if(c->y + HEIGHT(c) > c->mon->my + c->mon->mh)
c->y = c->mon->my + c->mon->mh - HEIGHT(c);
c->x = MAX(c->x, c->mon->mx);
/* only fix client y-offset, if the client center might cover the bar */
c->y = MAX(c->y, ((c->mon->by == c->mon->my) && (c->x + (c->w / 2) >= c->mon->wx)
&& (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
c->bw = borderpx;
wc.border_width = c->bw;
2007-09-16 11:53:14 +02:00
XConfigureWindow(dpy, w, CWBorderWidth, &wc);
XSetWindowBorder(dpy, w, scheme[SchemeNorm].border->pix);
2007-09-16 11:53:14 +02:00
configure(c); /* propagates border_width, if size doesn't change */
2011-11-02 13:01:28 +01:00
updatewindowtype(c);
2007-09-16 11:53:14 +02:00
updatesizehints(c);
updatewmhints(c);
XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
grabbuttons(c, false);
2007-09-16 11:53:14 +02:00
if(!c->isfloating)
c->isfloating = c->oldstate = trans != None || c->isfixed;
if(c->isfloating)
XRaiseWindow(dpy, c->win);
2007-09-16 11:53:14 +02:00
attach(c);
attachstack(c);
XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
(unsigned char *) &(c->win), 1);
2008-06-22 10:29:06 +02:00
XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
2007-09-16 11:53:14 +02:00
setclientstate(c, NormalState);
if (c->mon == selmon)
unfocus(selmon->sel, false);
c->mon->sel = c;
arrange(c->mon);
XMapWindow(dpy, c->win);
focus(NULL);
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
mappingnotify(XEvent *e) {
XMappingEvent *ev = &e->xmapping;
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02:00
XRefreshKeyboardMapping(ev);
2008-08-23 10:31:28 +02:00
if(ev->request == MappingKeyboard)
grabkeys();
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 11:53:14 +02:00
maprequest(XEvent *e) {
static XWindowAttributes wa;
XMapRequestEvent *ev = &e->xmaprequest;
if(!XGetWindowAttributes(dpy, ev->window, &wa))
2007-09-15 22:25:27 +02:00
return;
2007-09-16 11:53:14 +02:00
if(wa.override_redirect)
return;
2009-06-30 20:39:59 +02:00
if(!wintoclient(ev->window))
2007-09-16 11:53:14 +02:00
manage(ev->window, &wa);
2007-09-15 22:25:27 +02:00
}
2008-06-19 12:38:53 +02:00
void
monocle(Monitor *m) {
unsigned int n = 0;
2008-06-19 12:38:53 +02:00
Client *c;
for(c = m->clients; c; c = c->next)
if(ISVISIBLE(c))
n++;
if(n > 0) /* override layout symbol */
snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
2009-06-23 18:20:33 +02:00
for(c = nexttiled(m->clients); c; c = nexttiled(c->next))
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, false);
2008-06-19 12:38:53 +02:00
}
2011-11-15 20:16:58 +01:00
void
motionnotify(XEvent *e) {
static Monitor *mon = NULL;
Monitor *m;
XMotionEvent *ev = &e->xmotion;
if(ev->window != root)
return;
if((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
unfocus(selmon->sel, true);
2011-11-15 20:16:58 +01:00
selmon = m;
focus(NULL);
}
mon = m;
}
void
movemouse(const Arg *arg) {
int x, y, ocx, ocy, nx, ny;
Client *c;
Monitor *m;
2007-09-15 22:25:27 +02:00
XEvent ev;
Time lasttime = 0;
2007-09-15 22:25:27 +02:00
if(!(c = selmon->sel))
return;
if(c->isfullscreen) /* no support moving fullscreen windows by mouse */
return;
restack(selmon);
ocx = c->x;
ocy = c->y;
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
2013-06-16 15:20:29 +02:00
None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
2007-09-15 22:25:27 +02:00
return;
2009-07-08 18:05:20 +02:00
if(!getrootptr(&x, &y))
return;
do {
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2011-05-12 16:16:33 +02:00
switch(ev.type) {
2007-09-16 11:53:14 +02:00
case ConfigureRequest:
case Expose:
case MapRequest:
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;
nx = ocx + (ev.xmotion.x - x);
ny = ocy + (ev.xmotion.y - y);
if(nx >= selmon->wx && nx <= selmon->wx + selmon->ww
2009-07-14 17:26:04 +02:00
&& ny >= selmon->wy && ny <= selmon->wy + selmon->wh) {
if(abs(selmon->wx - nx) < snap)
nx = selmon->wx;
else if(abs((selmon->wx + selmon->ww) - (nx + WIDTH(c))) < snap)
nx = selmon->wx + selmon->ww - WIDTH(c);
if(abs(selmon->wy - ny) < snap)
ny = selmon->wy;
else if(abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
ny = selmon->wy + selmon->wh - HEIGHT(c);
if(!c->isfloating && selmon->lt[selmon->sellt]->arrange
2009-07-14 17:26:04 +02:00
&& (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
2008-05-19 14:41:58 +02:00
togglefloating(NULL);
}
if(!selmon->lt[selmon->sellt]->arrange || c->isfloating)
resize(c, nx, ny, c->w, c->h, true);
2007-09-16 11:53:14 +02:00
break;
}
2009-07-14 17:01:14 +02:00
} while(ev.type != ButtonRelease);
XUngrabPointer(dpy, CurrentTime);
2011-11-06 20:31:29 +01:00
if((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
sendmon(c, m);
selmon = m;
focus(NULL);
}
2007-09-16 11:53:14 +02:00
}
Client *
2009-06-23 18:20:33 +02:00
nexttiled(Client *c) {
for(; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
2007-09-16 11:53:14 +02:00
return c;
2007-09-15 22:25:27 +02:00
}
void
pop(Client *c) {
detach(c);
attach(c);
focus(c);
arrange(c->mon);
2009-06-30 20:39:59 +02:00
}
void
2007-09-16 11:53:14 +02:00
propertynotify(XEvent *e) {
Client *c;
Window trans;
XPropertyEvent *ev = &e->xproperty;
2007-09-15 22:25:27 +02:00
2009-02-12 17:26:12 +01:00
if((ev->window == root) && (ev->atom == XA_WM_NAME))
updatestatus();
else if(ev->state == PropertyDelete)
2007-09-16 11:53:14 +02:00
return; /* ignore */
2009-06-30 20:39:59 +02:00
else if((c = wintoclient(ev->window))) {
2011-05-12 16:16:33 +02:00
switch(ev->atom) {
default: break;
case XA_WM_TRANSIENT_FOR:
if(!c->isfloating && (XGetTransientForHint(dpy, c->win, &trans)) &&
2010-09-27 09:53:44 +02:00
(c->isfloating = (wintoclient(trans)) != NULL))
arrange(c->mon);
break;
case XA_WM_NORMAL_HINTS:
updatesizehints(c);
break;
case XA_WM_HINTS:
updatewmhints(c);
drawbars();
break;
2007-09-16 11:53:14 +02:00
}
if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
updatetitle(c);
if(c == c->mon->sel)
2009-08-18 16:59:38 +02:00
drawbar(c->mon);
2007-09-16 11:53:14 +02:00
}
2011-11-02 13:01:28 +01:00
if(ev->atom == netatom[NetWMWindowType])
updatewindowtype(c);
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
}
void
2008-06-11 10:12:06 +02:00
quit(const Arg *arg) {
running = false;
2007-09-15 22:25:27 +02:00
}
2011-11-06 20:31:29 +01:00
Monitor *
recttomon(int x, int y, int w, int h) {
Monitor *m, *r = selmon;
int a, area = 0;
for(m = mons; m; m = m->next)
if((a = INTERSECT(x, y, w, h, m)) > area) {
area = a;
r = m;
}
return r;
}
void
resize(Client *c, int x, int y, int w, int h, bool interact) {
if(applysizehints(c, &x, &y, &w, &h, interact))
resizeclient(c, x, y, w, h);
}
void
resizeclient(Client *c, int x, int y, int w, int h) {
2007-10-03 16:25:25 +02:00
XWindowChanges wc;
2008-02-20 09:13:41 +01:00
c->oldx = c->x; c->x = wc.x = x;
c->oldy = c->y; c->y = wc.y = y;
c->oldw = c->w; c->w = wc.width = w;
c->oldh = c->h; c->h = wc.height = h;
wc.border_width = c->bw;
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
configure(c);
XSync(dpy, False);
2007-09-15 22:25:27 +02:00
}
void
resizemouse(const Arg *arg) {
int ocx, ocy, nw, nh;
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XEvent ev;
Time lasttime = 0;
2007-09-16 11:53:14 +02:00
if(!(c = selmon->sel))
return;
if(c->isfullscreen) /* no support resizing fullscreen windows by mouse */
return;
restack(selmon);
2007-09-16 11:53:14 +02:00
ocx = c->x;
ocy = c->y;
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
2013-06-16 15:20:29 +02:00
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
2007-09-16 11:53:14 +02:00
return;
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
do {
2008-08-18 20:28:57 +02:00
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2007-09-16 11:53:14 +02:00
switch(ev.type) {
case ConfigureRequest:
case Expose:
case MapRequest:
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;
2008-12-20 13:02:14 +01:00
nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
if(c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
2009-07-14 17:26:04 +02:00
{
if(!c->isfloating && selmon->lt[selmon->sellt]->arrange
2009-07-14 17:26:04 +02:00
&& (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
2008-05-19 14:41:58 +02:00
togglefloating(NULL);
2008-04-27 19:22:52 +02:00
}
if(!selmon->lt[selmon->sellt]->arrange || c->isfloating)
resize(c, c->x, c->y, nw, nh, true);
2007-09-16 11:53:14 +02:00
break;
}
2009-07-14 17:01:14 +02:00
} while(ev.type != ButtonRelease);
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
XUngrabPointer(dpy, CurrentTime);
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
2011-11-06 20:31:29 +01:00
if((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
sendmon(c, m);
selmon = m;
focus(NULL);
}
2007-09-15 22:25:27 +02:00
}
void
restack(Monitor *m) {
2007-09-16 11:53:14 +02:00
Client *c;
XEvent ev;
XWindowChanges wc;
2007-09-15 22:25:27 +02:00
drawbar(m);
if(!m->sel)
2007-09-16 11:53:14 +02:00
return;
if(m->sel->isfloating || !m->lt[m->sellt]->arrange)
XRaiseWindow(dpy, m->sel->win);
if(m->lt[m->sellt]->arrange) {
2007-09-16 11:53:14 +02:00
wc.stack_mode = Below;
wc.sibling = m->barwin;
for(c = m->stack; c; c = c->snext)
2009-06-23 18:20:33 +02:00
if(!c->isfloating && ISVISIBLE(c)) {
2008-04-27 19:22:52 +02:00
XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
wc.sibling = c->win;
}
2007-09-16 11:53:14 +02:00
}
XSync(dpy, False);
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
2007-09-15 22:25:27 +02:00
}
void
2007-09-16 12:34:08 +02:00
run(void) {
XEvent ev;
/* main event loop */
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
2011-07-27 19:59:10 +02:00
while(running && !XNextEvent(dpy, &ev))
if(handler[ev.type])
2009-07-14 17:01:14 +02:00
handler[ev.type](&ev); /* call handler */
2007-09-16 12:34:08 +02:00
}
void
2007-09-15 22:25:27 +02:00
scan(void) {
2008-07-16 19:17:42 +02:00
unsigned int i, num;
Window d1, d2, *wins = NULL;
2007-09-15 22:25:27 +02:00
XWindowAttributes wa;
if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
for(i = 0; i < num; i++) {
if(!XGetWindowAttributes(dpy, wins[i], &wa)
2008-05-13 15:33:02 +02:00
|| wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
continue;
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)
2008-05-13 15:33:02 +02:00
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
manage(wins[i], &wa);
2007-09-15 22:25:27 +02:00
}
if(wins)
XFree(wins);
2007-09-15 22:25:27 +02:00
}
}
void
sendmon(Client *c, Monitor *m) {
if(c->mon == m)
return;
unfocus(c, true);
detach(c);
detachstack(c);
c->mon = m;
c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
attach(c);
attachstack(c);
focus(NULL);
arrange(NULL);
}
void
2007-09-16 11:53:14 +02:00
setclientstate(Client *c, long state) {
2009-07-02 21:56:23 +02:00
long data[] = { state, None };
2007-09-16 11:53:14 +02:00
XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
PropModeReplace, (unsigned char *)data, 2);
}
bool
sendevent(Client *c, Atom proto) {
int n;
Atom *protocols;
bool exists = false;
XEvent ev;
if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
while(!exists && n--)
exists = protocols[n] == proto;
XFree(protocols);
}
if(exists) {
ev.type = ClientMessage;
ev.xclient.window = c->win;
ev.xclient.message_type = wmatom[WMProtocols];
ev.xclient.format = 32;
ev.xclient.data.l[0] = proto;
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(dpy, c->win, False, NoEventMask, &ev);
}
return exists;
}
void
setfocus(Client *c) {
if(!c->neverfocus) {
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
XChangeProperty(dpy, root, netatom[NetActiveWindow],
XA_WINDOW, 32, PropModeReplace,
(unsigned char *) &(c->win), 1);
}
sendevent(c, wmatom[WMTakeFocus]);
}
2011-11-06 20:30:06 +01:00
void
setfullscreen(Client *c, bool fullscreen) {
if(fullscreen && !c->isfullscreen) {
2011-11-06 20:30:06 +01:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
c->isfullscreen = true;
2011-11-06 20:30:06 +01:00
c->oldstate = c->isfloating;
c->oldbw = c->bw;
c->bw = 0;
c->isfloating = true;
2011-11-06 20:30:06 +01:00
resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
XRaiseWindow(dpy, c->win);
}
else if(!fullscreen && c->isfullscreen){
2011-11-06 20:30:06 +01:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)0, 0);
c->isfullscreen = false;
2011-11-06 20:30:06 +01:00
c->isfloating = c->oldstate;
c->bw = c->oldbw;
c->x = c->oldx;
c->y = c->oldy;
c->w = c->oldw;
c->h = c->oldh;
resizeclient(c, c->x, c->y, c->w, c->h);
arrange(c->mon);
}
}
2008-06-19 12:38:53 +02:00
void
setlayout(const Arg *arg) {
if(!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
selmon->sellt ^= 1;
if(arg && arg->v)
selmon->lt[selmon->sellt] = (Layout *)arg->v;
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
if(selmon->sel)
arrange(selmon);
2008-06-19 12:38:53 +02:00
else
drawbar(selmon);
2008-06-19 12:38:53 +02:00
}
/* arg > 1.0 will set mfact absolutly */
2008-05-19 21:07:12 +02:00
void
2008-06-11 10:12:06 +02:00
setmfact(const Arg *arg) {
float f;
2008-05-19 21:07:12 +02:00
if(!arg || !selmon->lt[selmon->sellt]->arrange)
2008-05-19 21:07:12 +02:00
return;
f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
2008-06-11 10:12:06 +02:00
if(f < 0.1 || f > 0.9)
return;
selmon->mfact = f;
arrange(selmon);
2008-05-19 21:07:12 +02:00
}
void
2007-09-15 22:25:27 +02:00
setup(void) {
XSetWindowAttributes wa;
2009-08-13 11:45:59 +02:00
/* clean up any zombies immediately */
sigchld(0);
/* init screen */
screen = DefaultScreen(dpy);
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);
root = RootWindow(dpy, screen);
2013-06-16 15:20:29 +02:00
drw = drw_create(dpy, screen, root, sw, sh);
drw_load_fonts(drw, fonts, LENGTH(fonts));
if (!drw->fontcount)
die("no fonts could be loaded.\n");
bh = drw->fonts[0]->h + 2;
updategeom();
2007-09-15 22:25:27 +02:00
/* init atoms */
wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
2011-05-12 16:16:33 +02:00
netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
2007-09-15 22:25:27 +02:00
netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
2011-11-02 13:01:28 +01:00
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
2007-09-15 22:25:27 +02:00
/* init cursors */
2013-06-16 15:20:29 +02:00
cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
cursor[CurResize] = drw_cur_create(drw, XC_sizing);
cursor[CurMove] = drw_cur_create(drw, XC_fleur);
2008-02-18 18:08:22 +01:00
/* init appearance */
scheme[SchemeNorm].border = drw_clr_create(drw, normbordercolor);
scheme[SchemeNorm].bg = drw_clr_create(drw, normbgcolor);
scheme[SchemeNorm].fg = drw_clr_create(drw, normfgcolor);
scheme[SchemeSel].border = drw_clr_create(drw, selbordercolor);
scheme[SchemeSel].bg = drw_clr_create(drw, selbgcolor);
scheme[SchemeSel].fg = drw_clr_create(drw, selfgcolor);
/* init bars */
2009-06-22 15:58:08 +02:00
updatebars();
updatestatus();
/* EWMH support per view */
XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
PropModeReplace, (unsigned char *) netatom, NetLast);
XDeleteProperty(dpy, root, netatom[NetClientList]);
/* select for events */
2013-06-16 15:20:29 +02:00
wa.cursor = cursor[CurNormal]->cursor;
2011-11-15 20:16:58 +01:00
wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|ButtonPressMask|PointerMotionMask
|EnterWindowMask|LeaveWindowMask|StructureNotifyMask|PropertyChangeMask;
XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
XSelectInput(dpy, root, wa.event_mask);
grabkeys();
focus(NULL);
2007-09-15 22:25:27 +02:00
}
void
showhide(Client *c) {
2008-09-06 10:34:49 +02:00
if(!c)
return;
2009-06-23 18:20:33 +02:00
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) && !c->isfullscreen)
resize(c, c->x, c->y, c->w, c->h, false);
showhide(c->snext);
}
2008-09-06 10:34:49 +02:00
else { /* hide clients bottom up */
showhide(c->snext);
2011-10-30 12:14:34 +01:00
XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
2008-09-06 10:34:49 +02:00
}
}
void
2009-08-13 11:45:59 +02:00
sigchld(int unused) {
2009-08-16 09:18:25 +02:00
if(signal(SIGCHLD, sigchld) == SIG_ERR)
die("can't install SIGCHLD handler:");
while(0 < waitpid(-1, NULL, WNOHANG));
}
void
2008-06-11 10:12:06 +02:00
spawn(const Arg *arg) {
if(arg->v == dmenucmd)
dmenumon[0] = '0' + selmon->num;
if(fork() == 0) {
if(dpy)
close(ConnectionNumber(dpy));
setsid();
execvp(((char **)arg->v)[0], (char **)arg->v);
fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
perror(" failed");
2011-05-12 16:16:33 +02:00
exit(EXIT_SUCCESS);
2007-09-15 22:25:27 +02:00
}
}
void
2008-06-11 10:12:06 +02:00
tag(const Arg *arg) {
if(selmon->sel && arg->ui & TAGMASK) {
selmon->sel->tags = arg->ui & TAGMASK;
focus(NULL);
arrange(selmon);
}
2007-09-15 22:25:27 +02:00
}
void
tagmon(const Arg *arg) {
if(!selmon->sel || !mons->next)
2009-07-02 21:38:56 +02:00
return;
sendmon(selmon->sel, dirtomon(arg->i));
}
2008-05-19 21:07:12 +02:00
void
tile(Monitor *m) {
2011-10-29 00:45:12 +02:00
unsigned int i, n, h, mw, my, ty;
2008-05-19 21:07:12 +02:00
Client *c;
2009-06-23 18:20:33 +02:00
for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
2008-05-19 21:07:12 +02:00
if(n == 0)
return;
2011-10-25 21:40:46 +02:00
2011-10-31 20:09:27 +01:00
if(n > m->nmaster)
mw = m->nmaster ? m->ww * m->mfact : 0;
else
mw = m->ww;
2011-10-29 00:45:12 +02:00
for(i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
if(i < m->nmaster) {
h = (m->wh - my) / (MIN(n, m->nmaster) - i);
resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), false);
2011-10-29 00:45:12 +02:00
my += HEIGHT(c);
}
else {
h = (m->wh - ty) / (n - i);
resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), false);
2011-10-29 00:45:12 +02:00
ty += HEIGHT(c);
}
2008-05-19 21:07:12 +02:00
}
void
2008-06-11 10:12:06 +02:00
togglebar(const Arg *arg) {
selmon->showbar = !selmon->showbar;
updatebarpos(selmon);
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
arrange(selmon);
}
void
2008-06-11 10:12:06 +02:00
togglefloating(const Arg *arg) {
if(!selmon->sel)
2007-09-16 11:53:14 +02:00
return;
if(selmon->sel->isfullscreen) /* no support for fullscreen windows */
return;
selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
if(selmon->sel->isfloating)
resize(selmon->sel, selmon->sel->x, selmon->sel->y,
selmon->sel->w, selmon->sel->h, false);
arrange(selmon);
2007-09-16 11:53:14 +02:00
}
void
2008-06-11 10:12:06 +02:00
toggletag(const Arg *arg) {
2009-08-16 09:18:54 +02:00
unsigned int newtags;
2008-06-19 10:11:11 +02:00
if(!selmon->sel)
return;
2009-08-16 09:18:54 +02:00
newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
if(newtags) {
selmon->sel->tags = newtags;
focus(NULL);
arrange(selmon);
2008-06-19 10:11:11 +02:00
}
2007-09-16 11:53:14 +02:00
}
void
2008-06-11 10:12:06 +02:00
toggleview(const Arg *arg) {
2009-08-16 09:18:54 +02:00
unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
2008-06-19 10:11:11 +02:00
2009-08-16 09:18:54 +02:00
if(newtagset) {
selmon->tagset[selmon->seltags] = newtagset;
focus(NULL);
arrange(selmon);
2008-06-19 10:11:11 +02:00
}
2007-09-16 11:53:14 +02:00
}
void
unfocus(Client *c, bool setfocus) {
if(!c)
return;
grabbuttons(c, false);
XSetWindowBorder(dpy, c->win, scheme[SchemeNorm].border->pix);
if(setfocus) {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
}
void
unmanage(Client *c, bool destroyed) {
Monitor *m = c->mon;
2007-09-16 11:53:14 +02:00
XWindowChanges wc;
/* The server grab construct avoids race conditions. */
detach(c);
detachstack(c);
2009-09-08 14:18:05 +02:00
if(!destroyed) {
2009-09-08 14:13:03 +02:00
wc.border_width = c->oldbw;
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
setclientstate(c, WithdrawnState);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
2007-09-16 11:53:14 +02:00
free(c);
2009-06-30 20:39:59 +02:00
focus(NULL);
updateclientlist();
arrange(m);
2007-09-16 11:53:14 +02:00
}
void
2007-09-16 11:53:14 +02:00
unmapnotify(XEvent *e) {
Client *c;
XUnmapEvent *ev = &e->xunmap;
if((c = wintoclient(ev->window))) {
if(ev->send_event)
setclientstate(c, WithdrawnState);
else
unmanage(c, false);
}
2007-09-16 11:53:14 +02:00
}
2009-06-22 15:58:08 +02:00
void
updatebars(void) {
Monitor *m;
2011-05-12 16:16:33 +02:00
XSetWindowAttributes wa = {
.override_redirect = True,
.background_pixmap = ParentRelative,
.event_mask = ButtonPressMask|ExposureMask
};
2009-06-22 15:58:08 +02:00
for(m = mons; m; m = m->next) {
if (m->barwin)
continue;
2009-06-22 15:58:08 +02:00
m->barwin = XCreateWindow(dpy, root, m->wx, m->by, m->ww, bh, 0, DefaultDepth(dpy, screen),
CopyFromParent, DefaultVisual(dpy, screen),
CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
2013-06-16 15:20:29 +02:00
XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
2009-06-22 15:58:08 +02:00
XMapRaised(dpy, m->barwin);
}
}
void
updatebarpos(Monitor *m) {
m->wy = m->my;
m->wh = m->mh;
if(m->showbar) {
m->wh -= bh;
m->by = m->topbar ? m->wy : m->wy + m->wh;
m->wy = m->topbar ? m->wy + bh : m->wy;
}
else
m->by = -bh;
}
void
updateclientlist() {
Client *c;
Monitor *m;
XDeleteProperty(dpy, root, netatom[NetClientList]);
for(m = mons; m; m = m->next)
for(c = m->clients; c; c = c->next)
XChangeProperty(dpy, root, netatom[NetClientList],
XA_WINDOW, 32, PropModeAppend,
(unsigned char *) &(c->win), 1);
}
bool
updategeom(void) {
bool dirty = false;
2009-06-30 20:39:59 +02:00
#ifdef XINERAMA
2009-06-22 15:58:08 +02:00
if(XineramaIsActive(dpy)) {
int i, j, n, nn;
Client *c;
Monitor *m;
XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
XineramaScreenInfo *unique = NULL;
for(n = 0, m = mons; m; m = m->next, n++);
/* only consider unique geometries as separate screens */
unique = ecalloc(nn, sizeof(XineramaScreenInfo));
for(i = 0, j = 0; i < nn; i++)
if(isuniquegeom(unique, j, &info[i]))
memcpy(&unique[j++], &info[i], sizeof(XineramaScreenInfo));
XFree(info);
nn = j;
if(n <= nn) {
for(i = 0; i < (nn - n); i++) { /* new monitors available */
for(m = mons; m && m->next; m = m->next);
if(m)
m->next = createmon();
else
mons = createmon();
}
for(i = 0, m = mons; i < nn && m; m = m->next, i++)
if(i >= n
|| (unique[i].x_org != m->mx || unique[i].y_org != m->my
|| unique[i].width != m->mw || unique[i].height != m->mh))
{
dirty = true;
m->num = i;
m->mx = m->wx = unique[i].x_org;
m->my = m->wy = unique[i].y_org;
m->mw = m->ww = unique[i].width;
m->mh = m->wh = unique[i].height;
updatebarpos(m);
}
}
else { /* less monitors available nn < n */
for(i = nn; i < n; i++) {
for(m = mons; m && m->next; m = m->next);
while(m->clients) {
dirty = true;
c = m->clients;
m->clients = c->next;
detachstack(c);
c->mon = mons;
attach(c);
attachstack(c);
}
if(m == selmon)
selmon = mons;
cleanupmon(m);
}
}
free(unique);
}
else
2009-06-30 20:39:59 +02:00
#endif /* XINERAMA */
2009-06-22 15:58:08 +02:00
/* default monitor setup */
{
if(!mons)
mons = createmon();
if(mons->mw != sw || mons->mh != sh) {
dirty = true;
mons->mw = mons->ww = sw;
mons->mh = mons->wh = sh;
updatebarpos(mons);
}
2009-06-22 15:58:08 +02:00
}
if(dirty) {
selmon = mons;
selmon = wintomon(root);
}
return dirty;
}
void
updatenumlockmask(void) {
unsigned int i, j;
XModifierKeymap *modmap;
numlockmask = 0;
modmap = XGetModifierMapping(dpy);
for(i = 0; i < 8; i++)
for(j = 0; j < modmap->max_keypermod; j++)
if(modmap->modifiermap[i * modmap->max_keypermod + j]
== XKeysymToKeycode(dpy, XK_Num_Lock))
numlockmask = (1 << i);
XFreeModifiermap(modmap);
}
void
2007-09-16 11:53:14 +02:00
updatesizehints(Client *c) {
long msize;
XSizeHints size;
2008-09-07 10:53:59 +02:00
if(!XGetWMNormalHints(dpy, c->win, &size, &msize))
/* size is uninitialized, ensure that size.flags aren't used */
size.flags = PSize;
if(size.flags & PBaseSize) {
2007-09-16 11:53:14 +02:00
c->basew = size.base_width;
c->baseh = size.base_height;
}
else if(size.flags & PMinSize) {
2007-09-16 11:53:14 +02:00
c->basew = size.min_width;
c->baseh = size.min_height;
}
else
c->basew = c->baseh = 0;
if(size.flags & PResizeInc) {
2007-09-16 11:53:14 +02:00
c->incw = size.width_inc;
c->inch = size.height_inc;
}
else
c->incw = c->inch = 0;
if(size.flags & PMaxSize) {
2007-09-16 11:53:14 +02:00
c->maxw = size.max_width;
c->maxh = size.max_height;
}
else
c->maxw = c->maxh = 0;
if(size.flags & PMinSize) {
2007-09-16 11:53:14 +02:00
c->minw = size.min_width;
c->minh = size.min_height;
}
else if(size.flags & PBaseSize) {
2007-09-16 11:53:14 +02:00
c->minw = size.base_width;
c->minh = size.base_height;
}
else
c->minw = c->minh = 0;
if(size.flags & PAspect) {
c->mina = (float)size.min_aspect.y / size.min_aspect.x;
c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
2007-09-16 11:53:14 +02:00
}
else
2008-06-11 10:12:06 +02:00
c->maxa = c->mina = 0.0;
2007-09-16 11:53:14 +02:00
c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
&& c->maxw == c->minw && c->maxh == c->minh);
2007-09-16 11:53:14 +02:00
}
void
2007-09-16 11:53:14 +02:00
updatetitle(Client *c) {
if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
2008-08-25 11:43:45 +02:00
gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
2009-07-12 23:49:06 +02:00
if(c->name[0] == '\0') /* hack to mark broken clients */
strcpy(c->name, broken);
2007-09-16 11:53:14 +02:00
}
void
updatestatus(void) {
if(!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
strcpy(stext, "dwm-"VERSION);
drawbar(selmon);
}
2011-11-02 13:01:28 +01:00
void
2011-11-06 20:30:06 +01:00
updatewindowtype(Client *c) {
Atom state = getatomprop(c, netatom[NetWMState]);
Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
2011-11-02 13:01:28 +01:00
2011-11-06 20:30:06 +01:00
if(state == netatom[NetWMFullscreen])
setfullscreen(c, true);
2011-11-06 20:30:06 +01:00
if(wtype == netatom[NetWMWindowTypeDialog])
c->isfloating = true;
2011-11-02 13:01:28 +01:00
}
void
updatewmhints(Client *c) {
XWMHints *wmh;
if((wmh = XGetWMHints(dpy, c->win))) {
if(c == selmon->sel && wmh->flags & XUrgencyHint) {
wmh->flags &= ~XUrgencyHint;
XSetWMHints(dpy, c->win, wmh);
}
2008-03-05 14:13:13 +01:00
else
c->isurgent = (wmh->flags & XUrgencyHint) ? true : false;
if(wmh->flags & InputHint)
c->neverfocus = !wmh->input;
else
c->neverfocus = false;
XFree(wmh);
}
}
2008-02-26 23:51:23 +01:00
void
2008-06-11 10:12:06 +02:00
view(const Arg *arg) {
if((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
2008-07-02 12:06:46 +02:00
return;
selmon->seltags ^= 1; /* toggle sel tagset */
if(arg->ui & TAGMASK)
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
focus(NULL);
arrange(selmon);
2008-02-26 23:51:23 +01:00
}
2009-06-30 20:39:59 +02:00
Client *
wintoclient(Window w) {
Client *c;
Monitor *m;
for(m = mons; m; m = m->next)
for(c = m->clients; c; c = c->next)
if(c->win == w)
return c;
return NULL;
}
Monitor *
wintomon(Window w) {
int x, y;
Client *c;
Monitor *m;
2009-07-08 18:05:20 +02:00
if(w == root && getrootptr(&x, &y))
2011-11-06 20:31:29 +01:00
return recttomon(x, y, 1, 1);
2009-06-30 20:39:59 +02:00
for(m = mons; m; m = m->next)
if(w == m->barwin)
return m;
if((c = wintoclient(w)))
return c->mon;
2009-07-02 15:42:06 +02:00
return selmon;
2009-06-30 20:39:59 +02:00
}
2007-09-16 11:53:14 +02:00
/* There's no way to check accesses to destroyed windows, thus those cases are
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
* default error handler, which may call exit. */
int
2007-09-16 11:53:14 +02:00
xerror(Display *dpy, XErrorEvent *ee) {
if(ee->error_code == BadWindow
|| (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)
2008-05-06 16:13:36 +02:00
|| (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
2007-09-16 11:53:14 +02:00
|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
return 0;
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
2008-05-13 15:33:02 +02:00
ee->request_code, ee->error_code);
2007-09-16 11:53:14 +02:00
return xerrorxlib(dpy, ee); /* may call exit */
}
int
xerrordummy(Display *dpy, XErrorEvent *ee) {
2007-09-16 11:53:14 +02:00
return 0;
}
/* Startup Error handler to check if another window manager
* is already running. */
int
xerrorstart(Display *dpy, XErrorEvent *ee) {
2010-11-19 12:53:59 +01:00
die("dwm: another window manager is already running\n");
2007-09-16 11:53:14 +02:00
return -1;
}
2008-05-19 21:07:12 +02:00
void
2008-06-11 10:12:06 +02:00
zoom(const Arg *arg) {
Client *c = selmon->sel;
2008-05-19 21:07:12 +02:00
if(!selmon->lt[selmon->sellt]->arrange
2009-07-02 19:40:04 +02:00
|| (selmon->sel && selmon->sel->isfloating))
return;
2009-06-23 18:20:33 +02:00
if(c == nexttiled(selmon->clients))
if(!c || !(c = nexttiled(c->next)))
2008-05-19 21:07:12 +02:00
return;
pop(c);
2008-05-19 21:07:12 +02:00
}
2007-09-15 22:25:27 +02:00
int
main(int argc, char *argv[]) {
if(argc == 2 && !strcmp("-v", argv[1]))
die("dwm-"VERSION", © 2006-2015 dwm engineers, see LICENSE for details\n");
2007-09-15 22:25:27 +02:00
else if(argc != 1)
2008-07-03 18:05:56 +02:00
die("usage: dwm [-v]\n");
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
fputs("warning: no locale support\n", stderr);
2009-02-21 20:20:11 +01:00
if(!(dpy = XOpenDisplay(NULL)))
2008-07-03 18:05:56 +02:00
die("dwm: cannot open display\n");
2007-09-16 12:34:08 +02:00
checkotherwm();
2007-09-15 22:25:27 +02:00
setup();
scan();
2007-09-16 12:34:08 +02:00
run();
2007-09-15 22:25:27 +02:00
cleanup();
XCloseDisplay(dpy);
2011-05-12 16:16:33 +02:00
return EXIT_SUCCESS;
2007-09-15 22:25:27 +02:00
}