dwm/client.c

239 lines
4.9 KiB
C
Raw Normal View History

2006-07-10 22:16:48 +02:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
2006-07-11 13:02:22 +02:00
#include <stdlib.h>
2006-07-10 22:16:48 +02:00
#include <string.h>
#include <X11/Xatom.h>
#include "util.h"
#include "wm.h"
2006-07-11 21:24:10 +02:00
#define CLIENT_MASK (StructureNotifyMask | PropertyChangeMask | EnterWindowMask)
2006-07-11 16:14:22 +02:00
void
update_name(Client *c)
2006-07-10 22:16:48 +02:00
{
XTextProperty name;
int n;
2006-07-11 11:27:56 +02:00
char **list = NULL;
2006-07-10 22:16:48 +02:00
name.nitems = 0;
c->name[0] = 0;
XGetTextProperty(dpy, c->win, &name, net_atom[NetWMName]);
if(!name.nitems)
XGetWMName(dpy, c->win, &name);
if(!name.nitems)
return;
if(name.encoding == XA_STRING)
strncpy(c->name, (char *)name.value, sizeof(c->name));
else {
if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
&& n > 0 && *list)
{
strncpy(c->name, *list, sizeof(c->name));
XFreeStringList(list);
}
}
XFree(name.value);
}
2006-07-11 22:49:09 +02:00
void
update_size(Client *c)
{
XSizeHints size;
long msize;
if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
size.flags = PSize;
c->flags = size.flags;
2006-07-11 23:18:30 +02:00
if(c->flags & PBaseSize) {
c->basew = size.base_width;
c->baseh = size.base_height;
}
else
c->basew = c->baseh = 0;
if(c->flags & PResizeInc) {
c->incw = size.width_inc;
c->inch = size.height_inc;
}
else
c->incw = c->inch = 0;
if(c->flags & PMaxSize) {
c->maxw = size.max_width;
c->maxh = size.max_height;
}
else
c->maxw = c->maxh = 0;
if(c->flags & PMinSize) {
c->minw = size.min_width;
c->minh = size.min_height;
}
else
c->minw = c->minh = 0;
2006-07-11 22:49:09 +02:00
}
2006-07-11 16:14:22 +02:00
void
focus(Client *c)
{
2006-07-11 23:18:30 +02:00
Client **l, *old;
old = stack;
2006-07-11 16:14:22 +02:00
for(l=&stack; *l && *l != c; l=&(*l)->snext);
eassert(*l == c);
*l = c->snext;
c->snext = stack;
stack = c;
XRaiseWindow(dpy, c->win);
2006-07-11 23:18:30 +02:00
XRaiseWindow(dpy, c->title);
2006-07-11 16:14:22 +02:00
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
2006-07-11 23:18:30 +02:00
if(old && old != c) {
XMapWindow(dpy, old->title);
draw_client(old);
}
XUnmapWindow(dpy, c->title);
draw_bar();
2006-07-12 00:00:25 +02:00
discard_events(EnterWindowMask);
2006-07-11 16:14:22 +02:00
XFlush(dpy);
}
2006-07-11 13:02:22 +02:00
void
manage(Window w, XWindowAttributes *wa)
2006-07-10 22:16:48 +02:00
{
2006-07-11 13:02:22 +02:00
Client *c, **l;
2006-07-10 22:16:48 +02:00
XSetWindowAttributes twa;
c = emallocz(sizeof(Client));
c->win = w;
c->tx = c->x = wa->x;
c->ty = c->y = wa->y;
c->tw = c->w = wa->width;
2006-07-11 22:49:09 +02:00
c->h = wa->height;
c->th = barrect.height;
2006-07-11 22:49:09 +02:00
update_size(c);
XSetWindowBorderWidth(dpy, c->win, 1);
XSetWindowBorder(dpy, c->win, brush.border);
2006-07-11 21:24:10 +02:00
XSelectInput(dpy, c->win, CLIENT_MASK);
2006-07-10 22:16:48 +02:00
XGetTransientForHint(dpy, c->win, &c->trans);
twa.override_redirect = 1;
twa.background_pixmap = ParentRelative;
2006-07-12 00:00:25 +02:00
twa.event_mask = ExposureMask;
2006-07-10 22:16:48 +02:00
c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th,
2006-07-11 22:49:09 +02:00
0, DefaultDepth(dpy, screen), CopyFromParent,
2006-07-10 22:16:48 +02:00
DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);
2006-07-11 23:18:30 +02:00
update_name(c);
2006-07-11 13:02:22 +02:00
for(l=&clients; *l; l=&(*l)->next);
c->next = *l; /* *l == nil */
*l = c;
2006-07-11 16:14:22 +02:00
c->snext = stack;
stack = c;
XMapWindow(dpy, c->win);
2006-07-11 23:18:30 +02:00
XMapWindow(dpy, c->title);
XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
2006-07-11 21:24:10 +02:00
GrabModeAsync, GrabModeSync, None, None);
2006-07-11 23:18:30 +02:00
resize(c);
2006-07-11 16:14:22 +02:00
focus(c);
2006-07-11 13:02:22 +02:00
}
2006-07-10 22:16:48 +02:00
2006-07-11 21:24:10 +02:00
void
resize(Client *c)
{
XConfigureEvent e;
2006-07-11 22:49:09 +02:00
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
2006-07-11 21:24:10 +02:00
e.type = ConfigureNotify;
e.event = c->win;
e.window = c->win;
2006-07-11 22:49:09 +02:00
e.x = c->x;
e.y = c->y;
e.width = c->w;
e.height = c->h;
e.border_width = 0;
2006-07-11 21:24:10 +02:00
e.above = None;
e.override_redirect = False;
XSelectInput(dpy, c->win, CLIENT_MASK & ~StructureNotifyMask);
XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
XSelectInput(dpy, c->win, CLIENT_MASK);
XFlush(dpy);
}
2006-07-11 13:02:22 +02:00
static int
dummy_error_handler(Display *dpy, XErrorEvent *error)
{
return 0;
2006-07-10 22:16:48 +02:00
}
void
2006-07-11 13:02:22 +02:00
unmanage(Client *c)
2006-07-10 22:16:48 +02:00
{
2006-07-11 13:02:22 +02:00
Client **l;
XGrabServer(dpy);
XSetErrorHandler(dummy_error_handler);
2006-07-11 21:24:10 +02:00
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
2006-07-11 13:02:22 +02:00
XDestroyWindow(dpy, c->title);
for(l=&clients; *l && *l != c; l=&(*l)->next);
eassert(*l == c);
*l = c->next;
2006-07-11 16:14:22 +02:00
for(l=&stack; *l && *l != c; l=&(*l)->snext);
eassert(*l == c);
*l = c->snext;
2006-07-11 13:02:22 +02:00
free(c);
2006-07-10 22:16:48 +02:00
XFlush(dpy);
2006-07-11 13:02:22 +02:00
XSetErrorHandler(error_handler);
XUngrabServer(dpy);
2006-07-11 18:15:11 +02:00
if(stack)
focus(stack);
2006-07-10 22:16:48 +02:00
}
2006-07-12 00:00:25 +02:00
Client *
gettitle(Window w)
{
Client *c;
for(c = clients; c; c = c->next)
if(c->title == w)
return c;
return NULL;
}
2006-07-11 13:02:22 +02:00
Client *
getclient(Window w)
{
Client *c;
for(c = clients; c; c = c->next)
if(c->win == w)
return c;
return NULL;
}
2006-07-11 16:14:22 +02:00
2006-07-11 18:15:11 +02:00
void
draw_client(Client *c)
{
2006-07-11 23:18:30 +02:00
if(c == stack)
draw_bar();
2006-07-11 18:15:11 +02:00
c->tw = textwidth(&brush.font, c->name) + labelheight(&brush.font);
c->tx = c->x + c->w - c->tw + 2;
c->ty = c->y;
XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
2006-07-11 23:18:30 +02:00
brush.rect.x = brush.rect.y = 0;
brush.rect.width = c->tw;
brush.rect.height = c->th;
2006-07-11 18:15:11 +02:00
2006-07-11 23:18:30 +02:00
draw(dpy, &brush, True, c->name);
XCopyArea(dpy, brush.drawable, c->title, brush.gc,
0, 0, c->tw, c->th, 0, 0);
2006-07-11 23:18:30 +02:00
XFlush(dpy);
2006-07-11 18:15:11 +02:00
}