wmii/cmd/wm/client.c

587 lines
13 KiB
C
Raw Normal View History

2005-11-18 18:54:58 +03:00
/*
2006-01-20 17:20:24 +03:00
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
2005-11-18 18:54:58 +03:00
* See LICENSE file for license details.
*/
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <X11/Xatom.h>
#include "wm.h"
2005-12-21 18:18:11 +03:00
Client *
alloc_client(Window w, XWindowAttributes *wa)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
XTextProperty name;
Client *c = (Client *) cext_emallocz(sizeof(Client));
XSetWindowAttributes fwa;
2006-03-10 13:59:26 +03:00
XClassHint ch;
long msize;
2006-03-07 19:22:36 +03:00
static unsigned int id = 1;
2005-12-21 18:18:11 +03:00
2006-03-07 19:22:36 +03:00
c->id = id++;
2005-12-21 18:18:11 +03:00
c->win = w;
c->rect.x = wa->x;
c->rect.y = wa->y;
c->border = wa->border_width;
c->rect.width = wa->width + 2 * c->border;
c->rect.height = wa->height + 2 * c->border;
XSetWindowBorderWidth(dpy, c->win, 0);
c->proto = win_proto(c->win);
XGetTransientForHint(dpy, c->win, &c->trans);
if(!XGetWMNormalHints(dpy, c->win, &c->size, &msize) || !c->size.flags)
c->size.flags = PSize;
XAddToSaveSet(dpy, c->win);
2005-12-21 18:18:11 +03:00
XGetWMName(dpy, c->win, &name);
if(name.value) {
cext_strlcpy(c->name, (char *)name.value, sizeof(c->name));
free(name.value);
}
2006-03-10 17:41:57 +03:00
if(XGetClassHint(dpy, c->win, &ch)) {
snprintf(c->classinst, sizeof(c->classinst), "%s:%s", ch.res_class, ch.res_name);
XFree(ch.res_class);
XFree(ch.res_name);
2006-03-10 17:41:57 +03:00
}
fwa.override_redirect = 1;
fwa.background_pixmap = ParentRelative;
fwa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask | ExposureMask | ButtonPressMask | PointerMotionMask;
c->framewin = XCreateWindow(dpy, root, c->rect.x, c->rect.y,
c->rect.width + 2 * def.border, c->rect.height + def.border + bar_height(), 0,
2006-03-10 13:59:26 +03:00
DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &fwa);
2006-03-10 13:59:26 +03:00
2006-03-05 15:22:42 +03:00
c->cursor = cursor[CurNormal];
2006-03-05 02:25:49 +03:00
XDefineCursor(dpy, c->framewin, c->cursor);
c->gc = XCreateGC(dpy, c->framewin, 0, 0);
XSync(dpy, False);
client = (Client **)cext_array_attach((void **)client, c, sizeof(Client *), &clientsz);
nclient++;
2005-12-21 18:18:11 +03:00
return c;
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
set_client_state(Client * c, int state)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
long data[2];
2005-11-18 18:54:58 +03:00
2005-12-21 18:18:11 +03:00
data[0] = (long) state;
data[1] = (long) None;
2006-03-05 02:11:08 +03:00
XChangeProperty(dpy, c->win, wm_atom[WMState], wm_atom[WMState], 32,
PropModeReplace, (unsigned char *) data, 2);
2005-11-18 18:54:58 +03:00
}
void
focus_client(Client *c)
2006-01-26 14:39:20 +03:00
{
Client *old = sel_client();
Frame *f = c->frame[c->sel];
int i = area2index(f->area);
2006-01-26 14:39:20 +03:00
f->area->tag->sel = i;
f->area->sel = frame2index(f);
2006-01-26 14:39:20 +03:00
if(old && (old != c)) {
grab_mouse(old->win, AnyModifier, Button1);
2006-01-26 14:39:20 +03:00
draw_client(old);
}
ungrab_mouse(c->win, AnyModifier, AnyButton);
grab_mouse(c->win, Mod1Mask, Button1);
grab_mouse(c->win, Mod1Mask, Button3);
restack_tag(f->area->tag);
2006-01-26 14:39:20 +03:00
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
draw_client(c);
XSync(dpy, False);
if(i > 0 && f->area->mode == Colstack)
arrange_area(f->area);
}
2005-12-21 18:18:11 +03:00
void
map_client(Client *c)
2005-11-18 18:54:58 +03:00
{
XSelectInput(dpy, c->win, CLIENT_MASK & ~StructureNotifyMask);
XMapWindow(dpy, c->win);
XSelectInput(dpy, c->win, CLIENT_MASK);
2005-12-21 18:18:11 +03:00
set_client_state(c, NormalState);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
unmap_client(Client *c)
2005-11-18 18:54:58 +03:00
{
ungrab_mouse(c->win, AnyModifier, AnyButton);
XSelectInput(dpy, c->win, CLIENT_MASK & ~StructureNotifyMask);
2005-12-21 18:18:11 +03:00
XUnmapWindow(dpy, c->win);
XSelectInput(dpy, c->win, CLIENT_MASK);
2005-12-21 18:18:11 +03:00
set_client_state(c, WithdrawnState);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
2006-01-25 21:41:12 +03:00
reparent_client(Client *c, Window w, int x, int y)
2005-11-18 18:54:58 +03:00
{
XSelectInput(dpy, c->win, CLIENT_MASK & ~StructureNotifyMask);
XReparentWindow(dpy, c->win, w, x, y);
XSelectInput(dpy, c->win, CLIENT_MASK);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
configure_client(Client *c)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
XConfigureEvent e;
Frame *f = c->frame[c->sel];
2005-12-21 18:18:11 +03:00
e.type = ConfigureNotify;
e.event = c->win;
e.window = c->win;
e.x = c->rect.x;
e.y = c->rect.y;
if(f) {
e.x += f->rect.x;
e.y += f->rect.y;
2006-01-25 21:41:12 +03:00
}
2005-12-21 18:18:11 +03:00
e.width = c->rect.width;
e.height = c->rect.height;
e.border_width = c->border;
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);
XSync(dpy, False);
2005-11-18 18:54:58 +03:00
}
static void
send_client_message(Window w, Atom a, long value)
{
XEvent e;
e.type = ClientMessage;
e.xclient.window = w;
e.xclient.message_type = a;
e.xclient.format = 32;
e.xclient.data.l[0] = value;
e.xclient.data.l[1] = CurrentTime;
XSendEvent(dpy, w, False, NoEventMask, &e);
XSync(dpy, False);
}
2005-12-21 18:18:11 +03:00
void
2006-02-16 17:28:51 +03:00
kill_client(Client * c)
2005-11-18 18:54:58 +03:00
{
2006-03-13 11:22:35 +03:00
if(c->proto & WM_PROTOCOL_DELWIN)
2006-03-05 02:11:08 +03:00
send_client_message(c->win, wm_atom[WMProtocols], wm_atom[WMDelete]);
2005-12-21 18:18:11 +03:00
else
XKillClient(dpy, c->win);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
update_client_property(Client *c, XPropertyEvent *e)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
XTextProperty name;
long msize;
2006-03-05 02:11:08 +03:00
if(e->atom == wm_atom[WMProtocols]) {
2005-12-21 18:18:11 +03:00
/* update */
c->proto = win_proto(c->win);
return;
}
switch (e->atom) {
case XA_WM_NAME:
XGetWMName(dpy, c->win, &name);
if(name.value) {
cext_strlcpy(c->name, (char*) name.value, sizeof(c->name));
free(name.value);
}
if(c->frame)
2005-12-21 18:18:11 +03:00
draw_client(c);
break;
case XA_WM_TRANSIENT_FOR:
XGetTransientForHint(dpy, c->win, &c->trans);
break;
case XA_WM_NORMAL_HINTS:
if(!XGetWMNormalHints(dpy, c->win, &c->size, &msize)
|| !c->size.flags) {
c->size.flags = PSize;
}
break;
}
2005-11-18 18:54:58 +03:00
}
/* speed reasoned function for client property change */
2005-12-21 18:18:11 +03:00
void
draw_client(Client *c)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
Draw d = { 0 };
char buf[512];
2005-12-21 18:18:11 +03:00
if(!c->nframe)
return; /* might not have been attached atm */
d.align = WEST;
2006-03-05 02:25:49 +03:00
d.drawable = c->framewin;
d.font = xfont;
2006-03-05 02:25:49 +03:00
d.gc = c->gc;
2006-01-26 14:39:20 +03:00
if(c == sel_client())
d.color = def.sel;
else
d.color = def.norm;
2006-01-26 14:39:20 +03:00
/* draw border */
if(def.border) {
d.rect = c->frame[c->sel]->rect;
d.rect.x = d.rect.y = 0;
d.notch = &c->rect;
2006-01-26 14:39:20 +03:00
blitz_drawlabel(dpy, &d);
blitz_drawborder(dpy, &d);
2006-01-26 14:39:20 +03:00
}
d.rect.x = 0;
2005-12-21 18:18:11 +03:00
d.rect.y = 0;
d.rect.width = c->frame[c->sel]->rect.width;
d.rect.height = bar_height();
2006-02-02 22:36:10 +03:00
d.notch = nil;
tags2str(buf, sizeof(buf), c->tag, c->ntag);
cext_strlcat(buf, " | ", sizeof(buf));
2006-03-15 11:02:25 +03:00
cext_strlcat(buf, c->name, sizeof(buf) - strlen(buf));
d.data = buf;
2005-12-21 18:18:11 +03:00
blitz_drawlabel(dpy, &d);
blitz_drawborder(dpy, &d);
2005-12-21 18:18:11 +03:00
XSync(dpy, False);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
void
gravitate(Client *c, Bool invert)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
int dx = 0, dy = 0;
int gravity = NorthWestGravity;
if(c->size.flags & PWinGravity) {
gravity = c->size.win_gravity;
}
/* y */
switch (gravity) {
case StaticGravity:
case NorthWestGravity:
case NorthGravity:
case NorthEastGravity:
dy = bar_height();
2005-12-21 18:18:11 +03:00
break;
case EastGravity:
case CenterGravity:
case WestGravity:
dy = -(c->rect.height / 2) + bar_height();
2005-12-21 18:18:11 +03:00
break;
case SouthEastGravity:
case SouthGravity:
case SouthWestGravity:
dy = -c->rect.height;
break;
default:
2005-12-21 18:18:11 +03:00
break;
}
/* x */
switch (gravity) {
case StaticGravity:
case NorthWestGravity:
case WestGravity:
case SouthWestGravity:
dx = def.border;
2005-12-21 18:18:11 +03:00
break;
case NorthGravity:
case CenterGravity:
case SouthGravity:
dx = -(c->rect.width / 2) + def.border;
2005-12-21 18:18:11 +03:00
break;
case NorthEastGravity:
case EastGravity:
case SouthEastGravity:
dx = -(c->rect.width + def.border);
2005-12-21 18:18:11 +03:00
break;
default:
2005-12-21 18:18:11 +03:00
break;
}
if(invert) {
dx = -dx;
dy = -dy;
}
c->rect.x += dx;
c->rect.y += dy;
2005-11-18 18:54:58 +03:00
}
2005-12-05 22:38:03 +03:00
void
manage_client(Client *c)
{
2006-03-09 01:06:48 +03:00
Tag *t;
2006-03-11 03:32:10 +03:00
Client *trans;
2006-03-15 11:02:25 +03:00
unsigned int i;
2006-03-15 11:02:25 +03:00
if(c->trans && (trans = win2client(c->trans))) {
for(i = 0; i < trans->ntag; i++)
cext_strlcpy(c->tag[i], trans->tag[i], sizeof(c->tag[i]));
c->ntag = trans->ntag;
}
2006-03-11 03:32:10 +03:00
else
match_tags(c);
reparent_client(c, c->framewin, c->rect.x, c->rect.y);
2006-03-09 01:06:48 +03:00
t = ntag ? tag[sel] : alloc_tag(def.tag);
2006-03-15 11:02:25 +03:00
if(!c->ntag) {
for(i = 0; i < t->ntag; i++) {
cext_strlcpy(c->tag[i], t->tag[i], sizeof(c->tag[i]));
c->ntag++;
}
2006-03-15 12:44:54 +03:00
}
2006-03-15 12:51:57 +03:00
else if((c->ntag == 1) && !strncmp(c->tag[0], "~", 2)) {
for(i = 0; i < t->ntag && i + 1 < MAX_TAGS; i++) {
cext_strlcpy(c->tag[i + 1], t->tag[i], sizeof(c->tag[i + 1]));
c->ntag++;
}
2006-03-14 10:53:56 +03:00
}
update_tags();
2005-12-05 22:38:03 +03:00
}
2005-12-06 00:22:24 +03:00
static int
dummy_error_handler(Display *dpy, XErrorEvent *error)
{
return 0;
}
2006-03-06 01:38:50 +03:00
void
destroy_client(Client *c)
2006-03-06 01:38:50 +03:00
{
int i;
2006-03-08 14:45:28 +03:00
Client *cl;
XGrabServer(dpy);
XSetErrorHandler(dummy_error_handler);
2006-03-06 01:38:50 +03:00
for(i = 0; i < ntag; i++)
detach_fromtag(tag[i], c);
unmap_client(c);
if(c->nframe) {
c->rect.x = c->frame[c->sel]->rect.x;
c->rect.y = c->frame[c->sel]->rect.y;
}
reparent_client(c, root, c->rect.x, c->rect.y);
XFreeGC(dpy, c->gc);
XDestroyWindow(dpy, c->framewin);
cext_array_detach((void **)client, c, &clientsz);
nclient--;
update_tags();
free(c);
2006-03-08 14:45:28 +03:00
if((cl = sel_client_of_tag(tag[sel])))
focus_client(cl);
XSync(dpy, False);
XSetErrorHandler(wmii_error_handler);
XUngrabServer(dpy);
2006-03-06 01:38:50 +03:00
}
2006-01-26 20:29:49 +03:00
Client *
sel_client()
{
return ntag ? sel_client_of_tag(tag[sel]) : nil;
2006-01-26 20:29:49 +03:00
}
static void
match_sizehints(Client *c)
{
2006-03-01 17:23:34 +03:00
XSizeHints *s = &c->size;
if(s->flags & PMinSize) {
if(c->rect.width < c->size.min_width)
c->rect.width = c->size.min_width;
if(c->rect.height < c->size.min_height)
c->rect.height = c->size.min_height;
}
2006-03-01 17:23:34 +03:00
if(s->flags & PMaxSize) {
if(c->rect.width > c->size.max_width)
c->rect.width = c->size.max_width;
if(c->rect.height > c->size.max_height)
c->rect.height = c->size.max_height;
}
if(s->flags & PResizeInc) {
int w = 0, h = 0;
if(c->size.flags & PBaseSize) {
w = c->size.base_width;
h = c->size.base_height;
} else if(c->size.flags & PMinSize) {
/* base_{width,height} default to min_{width,height} */
w = c->size.min_width;
h = c->size.min_height;
}
/* client_width = base_width + i * c->size.width_inc for an integer i */
w = c->frame[c->sel]->rect.width - 2 * def.border - w;
if(s->width_inc > 0)
c->frame[c->sel]->rect.width -= w % s->width_inc;
h = c->frame[c->sel]->rect.height - def.border - bar_height() - h;
if(s->height_inc > 0)
c->frame[c->sel]->rect.height -= h % s->height_inc;
}
}
void
2006-03-01 18:20:02 +03:00
resize_client(Client *c, XRectangle *r, XPoint *pt, Bool ignore_xcall)
{
Frame *f = c->frame[c->sel];
if(area2index(f->area))
2006-03-02 17:28:55 +03:00
resize_area(c, r, pt);
2006-02-02 21:22:27 +03:00
else
f->rect = *r;
if((f->area->mode != Colstack) || (f->area->sel == frame2index(f)))
match_sizehints(c);
if(!ignore_xcall) {
if(f->area->tag == tag[sel])
XMoveResizeWindow(dpy, c->framewin, f->rect.x, f->rect.y, f->rect.width, f->rect.height);
else
XMoveResizeWindow(dpy, c->framewin, 2 * rect.width + f->rect.x, f->rect.y, f->rect.width, f->rect.height);
}
if((f->area->mode != Colstack) || (f->area->sel == frame2index(f))) {
c->rect.x = def.border;
c->rect.y = bar_height();
c->rect.width = f->rect.width - 2 * def.border;
c->rect.height = f->rect.height - def.border - bar_height();
2006-03-01 13:30:44 +03:00
XMoveResizeWindow(dpy, c->win, c->rect.x, c->rect.y, c->rect.width, c->rect.height);
configure_client(c);
}
}
2006-02-13 12:31:38 +03:00
void
2006-02-14 14:06:16 +03:00
select_client(Client *c, char *arg)
2006-02-13 12:31:38 +03:00
{
Frame *f = c->frame[c->sel];
Area *a = f->area;
int i = frame2index(f);
if(i == -1)
return;
if(!strncmp(arg, "prev", 5)) {
if(!i)
i = a->nframe - 1;
else
i--;
} else if(!strncmp(arg, "next", 5)) {
if(i + 1 < a->nframe)
i++;
else
i = 0;
}
2006-02-13 12:31:38 +03:00
else {
const char *errstr;
i = cext_strtonum(arg, 0, a->nframe - 1, &errstr);
if(errstr)
2006-02-14 14:53:40 +03:00
return;
2006-02-13 12:31:38 +03:00
}
focus_client(a->frame[i]->client);
2006-02-13 12:31:38 +03:00
}
void
send2area_client(Client *c, char *arg)
2006-03-02 19:38:15 +03:00
{
const char *errstr;
Frame *f = c->frame[c->sel];
Area *to, *a = f->area;
Tag *t = a->tag;
int i = area2index(a);
if(i == -1)
return;
if(!strncmp(arg, "new", 4) && i) {
2006-03-08 14:45:28 +03:00
if(a->nframe == 1)
return;
2006-03-04 11:29:20 +03:00
to = alloc_area(t);
arrange_tag(t, True);
}
else if(!strncmp(arg, "prev", 5) && i) {
if(i == 1)
to = t->area[t->narea - 1];
else
to = t->area[i - 1];
}
else if(!strncmp(arg, "next", 5) && i) {
if(i < t->narea - 1)
to = t->area[i + 1];
else
to = t->area[1];
}
else if(!strncmp(arg, "toggle", 7)) {
if(i)
to = t->area[0];
else if(c->revert)
to = c->revert;
else
to = t->area[1];
}
else {
i = cext_strtonum(arg, 0, t->narea - 1, &errstr);
if(errstr)
return;
to = t->area[i];
}
send2area(to, a, c);
}
void
resize_all_clients()
{
unsigned int i;
for(i = 0; i < nclient; i++) {
Client *c = client[i];
if(c->nframe && c->frame[c->sel]->area)
resize_client(c, &c->frame[c->sel]->rect, 0, False);
}
}
/* convenience function */
void
focus(Client *c)
{
Frame *f = c->nframe ? c->frame[c->sel] : nil;
Tag *t;
if(!f)
return;
t = f->area->tag;
if(tag[sel] != t)
focus_tag(t);
focus_client(c);
}
2006-03-07 19:22:36 +03:00
int
cid2index(unsigned short id)
{
int i;
for(i = 0; i < nclient; i++)
if(client[i]->id == id)
return i;
return -1;
}
2006-03-15 11:02:25 +03:00
Bool
clienthastag(Client *c, const char *t)
{
unsigned int i;
for(i = 0; i < c->ntag; i++)
if(!strncmp(c->tag[i], t, sizeof(c->tag[i])))
return True;
return False;
}