2005-11-18 18:54:58 +03:00
|
|
|
/*
|
|
|
|
* (C)opyright MMIV-MMV Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* 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)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
static int id = 0;
|
|
|
|
char buf[MAX_BUF];
|
|
|
|
XTextProperty name;
|
|
|
|
Client *c = (Client *) cext_emallocz(sizeof(Client));
|
|
|
|
|
|
|
|
c->win = w;
|
|
|
|
snprintf(buf, MAX_BUF, "/detached/client/%d", id);
|
|
|
|
c->file[C_PREFIX] = ixp_create(ixps, buf);
|
|
|
|
XGetWMName(dpy, c->win, &name);
|
|
|
|
snprintf(buf, MAX_BUF, "/detached/client/%d/name", id);
|
|
|
|
c->file[C_NAME] = wmii_create_ixpfile(ixps, buf, (char *) name.value);
|
|
|
|
free(name.value);
|
|
|
|
id++;
|
|
|
|
return c;
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
focus_client(Client * c)
|
2005-12-05 03:36:39 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Frame *f = 0;
|
|
|
|
/* sel client */
|
|
|
|
f = c->frame;
|
|
|
|
f->sel = c;
|
|
|
|
f->file[F_SEL_CLIENT]->content = c->file[C_PREFIX]->content;
|
|
|
|
XRaiseWindow(dpy, c->win);
|
|
|
|
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
|
|
|
invoke_wm_event(def[WM_EVENT_CLIENT_UPDATE]);
|
2005-12-05 03:36:39 +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;
|
|
|
|
XChangeProperty(dpy, c->win, wm_state, wm_state, 32, PropModeReplace,
|
|
|
|
(unsigned char *) data, 2);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
show_client(Client * c)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XMapWindow(dpy, c->win);
|
|
|
|
set_client_state(c, NormalState);
|
|
|
|
grab_client(c, Mod1Mask, Button1);
|
|
|
|
grab_client(c, Mod1Mask, Button3);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
hide_client(Client * c)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
ungrab_client(c, AnyModifier, AnyButton);
|
|
|
|
XUnmapWindow(dpy, c->win);
|
|
|
|
set_client_state(c, WithdrawnState);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
reparent_client(Client * c, Window w, int x, int y)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XReparentWindow(dpy, c->win, w, x, y);
|
|
|
|
c->ignore_unmap++;
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
grab_client(Client * c, unsigned long mod, unsigned int button)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XGrabButton(dpy, button, mod, c->win, False,
|
|
|
|
ButtonPressMask, GrabModeAsync, GrabModeAsync, None, None);
|
|
|
|
if((mod != AnyModifier) && num_lock_mask) {
|
|
|
|
XGrabButton(dpy, button, mod | num_lock_mask, c->win, False,
|
|
|
|
ButtonPressMask, GrabModeAsync, GrabModeAsync, None,
|
|
|
|
None);
|
|
|
|
XGrabButton(dpy, button, mod | num_lock_mask | LockMask, c->win,
|
|
|
|
False, ButtonPressMask, GrabModeAsync, GrabModeAsync,
|
|
|
|
None, None);
|
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
ungrab_client(Client * c, unsigned long mod, unsigned int button)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XUngrabButton(dpy, button, mod, c->win);
|
|
|
|
if(mod != AnyModifier && num_lock_mask) {
|
|
|
|
XUngrabButton(dpy, button, mod | num_lock_mask, c->win);
|
|
|
|
XUngrabButton(dpy, button, mod | num_lock_mask | LockMask, c->win);
|
|
|
|
}
|
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;
|
|
|
|
e.type = ConfigureNotify;
|
|
|
|
e.event = c->win;
|
|
|
|
e.window = c->win;
|
|
|
|
e.x = c->rect.x;
|
|
|
|
e.y = c->rect.y;
|
|
|
|
if(c->frame) {
|
|
|
|
e.x += c->frame->rect.x;
|
|
|
|
e.y += c->frame->rect.y;
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
close_client(Client * c)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
if(c->proto & PROTO_DEL)
|
|
|
|
wmii_send_message(dpy, c->win, wm_protocols, wm_delete);
|
|
|
|
else
|
|
|
|
XKillClient(dpy, c->win);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
init_client(Client * c, XWindowAttributes * wa)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
long msize;
|
|
|
|
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-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
handle_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;
|
|
|
|
|
|
|
|
if(e->atom == wm_protocols) {
|
|
|
|
/* update */
|
|
|
|
c->proto = win_proto(c->win);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (e->atom) {
|
|
|
|
case XA_WM_NAME:
|
|
|
|
XGetWMName(dpy, c->win, &name);
|
|
|
|
if(strlen((char *) name.value)) {
|
|
|
|
if(c->file[C_NAME]->content)
|
|
|
|
free(c->file[C_NAME]->content);
|
|
|
|
c->file[C_NAME]->content = cext_estrdup((char *) name.value);
|
|
|
|
c->file[C_NAME]->size = strlen((char *) name.value);
|
|
|
|
}
|
|
|
|
free(name.value);
|
|
|
|
if(c->frame)
|
|
|
|
draw_client(c);
|
|
|
|
invoke_wm_event(def[WM_EVENT_CLIENT_UPDATE]);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
destroy_client(Client * c)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
detach_detached(c);
|
|
|
|
ixp_remove_file(ixps, c->file[C_PREFIX]);
|
|
|
|
free(c);
|
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 * client)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Frame *f = client->frame;
|
|
|
|
unsigned int i = 0, tw, tabh = tab_height(f);
|
|
|
|
Draw d = { 0 };
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!tabh)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tw = f->rect.width / f->nclients;
|
|
|
|
for(c = f->clients; c && c != client; c = c->next)
|
|
|
|
i++;
|
|
|
|
|
|
|
|
d.drawable = f->win;
|
|
|
|
d.gc = f->gc;
|
|
|
|
d.rect.x = i * tw;
|
|
|
|
d.rect.y = 0;
|
|
|
|
d.rect.width = tw;
|
|
|
|
if(i && (i == f->nclients - 1))
|
|
|
|
d.rect.width = f->rect.width - d.rect.x;
|
|
|
|
d.rect.height = tabh;
|
|
|
|
d.data = c->file[C_NAME]->content;
|
|
|
|
d.font = font;
|
|
|
|
|
|
|
|
if((f == sel_frame()) && (c == f->sel)) {
|
|
|
|
d.bg =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_SEL_BG_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
d.fg =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_SEL_FG_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
d.border =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_SEL_BORDER_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
} else {
|
|
|
|
d.bg =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_NORM_BG_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
d.fg =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_NORM_FG_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
d.border =
|
|
|
|
blitz_loadcolor(dpy, screen_num,
|
2006-01-01 23:35:11 +03:00
|
|
|
def[WM_NORM_BORDER_COLOR]->content);
|
2005-12-21 18:18:11 +03:00
|
|
|
}
|
|
|
|
blitz_drawlabel(dpy, &d);
|
|
|
|
XSync(dpy, False);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
draw_clients(Frame * f)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Client *c;
|
|
|
|
for(c = f->clients; c; c = c->next)
|
|
|
|
draw_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
gravitate(Client * c, unsigned int tabh, unsigned int bw, int 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 = tabh;
|
|
|
|
break;
|
|
|
|
case EastGravity:
|
|
|
|
case CenterGravity:
|
|
|
|
case WestGravity:
|
|
|
|
dy = -(c->rect.height / 2) + tabh;
|
|
|
|
break;
|
|
|
|
case SouthEastGravity:
|
|
|
|
case SouthGravity:
|
|
|
|
case SouthWestGravity:
|
|
|
|
dy = -c->rect.height;
|
|
|
|
break;
|
|
|
|
default: /* don't care */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* x */
|
|
|
|
switch (gravity) {
|
|
|
|
case StaticGravity:
|
|
|
|
case NorthWestGravity:
|
|
|
|
case WestGravity:
|
|
|
|
case SouthWestGravity:
|
|
|
|
dx = bw;
|
|
|
|
break;
|
|
|
|
case NorthGravity:
|
|
|
|
case CenterGravity:
|
|
|
|
case SouthGravity:
|
|
|
|
dx = -(c->rect.width / 2) + bw;
|
|
|
|
break;
|
|
|
|
case NorthEastGravity:
|
|
|
|
case EastGravity:
|
|
|
|
case SouthEastGravity:
|
|
|
|
dx = -(c->rect.width + bw);
|
|
|
|
break;
|
|
|
|
default: /* don't care */
|
|
|
|
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
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
attach_client(Client * c)
|
2005-12-05 22:38:03 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Area *a = 0;
|
|
|
|
Page *p = selpage;
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
p = alloc_page();
|
|
|
|
/* transient stuff */
|
|
|
|
a = p->sel;
|
|
|
|
if(c && c->trans) {
|
|
|
|
Client *t = win_to_client(c->trans);
|
|
|
|
if(t && t->frame)
|
|
|
|
a = p->floating;
|
|
|
|
}
|
|
|
|
a->layout->attach(a, c);
|
|
|
|
invoke_wm_event(def[WM_EVENT_PAGE_UPDATE]);
|
2005-12-05 22:38:03 +03:00
|
|
|
}
|
2005-12-06 00:22:24 +03:00
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
detach_client(Client * c, Bool unmap)
|
|
|
|
{
|
|
|
|
Frame *f = c->frame;
|
|
|
|
Area *a = f ? f->area : nil;
|
|
|
|
if(a) {
|
|
|
|
a->layout->detach(a, c, unmap);
|
|
|
|
}
|
|
|
|
if(c->destroyed)
|
|
|
|
destroy_client(c);
|
|
|
|
if(selpage)
|
|
|
|
focus_page(selpage);
|
2005-12-16 04:59:27 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
Client *
|
|
|
|
sel_client()
|
2005-12-16 04:59:27 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Frame *f = sel_frame();
|
|
|
|
return f ? f->sel : nil;
|
2005-12-16 04:59:27 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
Client *
|
|
|
|
clientat(Client * clients, size_t idx)
|
2005-12-16 04:59:27 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
size_t i = 0;
|
|
|
|
Client *c = clients;
|
|
|
|
for(; c && i != idx; c = c->next)
|
|
|
|
i++;
|
|
|
|
return c;
|
2005-12-16 04:59:27 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
detach_detached(Client * c)
|
2005-12-16 04:59:27 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
if(detached == c) {
|
|
|
|
if(c->next)
|
|
|
|
c->next->prev = nil;
|
|
|
|
detached = c->next;
|
|
|
|
} else {
|
|
|
|
if(c->next)
|
|
|
|
c->next->prev = c->prev;
|
|
|
|
if(c->prev)
|
|
|
|
c->prev->next = c->next;
|
|
|
|
}
|
|
|
|
ndetached--;
|
2005-12-06 00:22:24 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
|
|
|
attach_detached(Client * c)
|
2005-12-06 20:58:52 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
c->prev = nil;
|
|
|
|
c->next = detached;
|
|
|
|
if(detached)
|
|
|
|
detached->prev = c;
|
|
|
|
detached = c;
|
2005-12-06 20:58:52 +03:00
|
|
|
}
|