/* * (C)opyright MMIV-MMV Anselm R. Garbe * See LICENSE file for license details. */ #include #include #include #include #include "wm.h" Client *alloc_client(Window w) { 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++; cext_attach_item(&clients, c); return c; } void sel_client(Client * c) { Frame *f = 0; /* sel client */ f = c->frame; cext_stack_top_item(&f->clients, 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]); } void set_client_state(Client * c, int state) { long data[2]; data[0] = (long) state; data[1] = (long) None; XChangeProperty(dpy, c->win, wm_state, wm_state, 32, PropModeReplace, (unsigned char *) data, 2); } void show_client(Client * c) { XMapWindow(dpy, c->win); set_client_state(c, NormalState); grab_client(c, Mod1Mask, Button1); grab_client(c, Mod1Mask, Button3); } void hide_client(Client * c) { ungrab_client(c, AnyModifier, AnyButton); XUnmapWindow(dpy, c->win); set_client_state(c, WithdrawnState); } void reparent_client(Client * c, Window w, int x, int y) { XReparentWindow(dpy, c->win, w, x, y); c->ignore_unmap++; } void grab_client(Client * c, unsigned long mod, unsigned int button) { 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); } } void ungrab_client(Client * c, unsigned long mod, unsigned int button) { 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); } } void configure_client(Client * c) { 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); } void close_client(Client * c) { if (c->proto & PROTO_DEL) wmii_send_message(dpy, c->win, wm_protocols, wm_delete); else XKillClient(dpy, c->win); } void init_client(Client * c, XWindowAttributes * wa) { 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); } void handle_client_property(Client *c, XPropertyEvent *e) { 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, nil); 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; } } void destroy_client(Client * c) { cext_detach_item(&detached, c); cext_detach_item(&clients, c); ixp_remove_file(ixps, c->file[C_PREFIX]); free(c); } /* speed reasoned function for client property change */ void draw_client(void *item, void *aux) { Client *c = item; Frame *f = c->frame; unsigned int tw, tabh = tab_height(f); size_t size; int i; Draw d = { 0 }; if (!tabh) return; size = cext_sizeof_container(&f->clients); tw = f->rect.width; if (size) tw /= size; i = cext_list_get_item_index(&f->clients, c); d.drawable = f->win; d.gc = f->gc; d.rect.x = i * tw; d.rect.y = 0; d.rect.width = tw; if (i && (i == size - 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 == get_sel_frame()) && (c == get_sel_client())) { d.bg = blitz_loadcolor(dpy, screen_num, f->file[F_SEL_BG_COLOR]->content); d.fg = blitz_loadcolor(dpy, screen_num, f->file[F_SEL_FG_COLOR]->content); d.border = blitz_loadcolor(dpy, screen_num, f->file[F_SEL_BORDER_COLOR]->content); } else { d.bg = blitz_loadcolor(dpy, screen_num, f->file[F_NORM_BG_COLOR]->content); d.fg = blitz_loadcolor(dpy, screen_num, f->file[F_NORM_FG_COLOR]->content); d.border = blitz_loadcolor(dpy, screen_num, f->file[F_NORM_BORDER_COLOR]->content); } blitz_drawlabel(dpy, &d); XSync(dpy, False); } void draw_clients(Frame * f) { cext_list_iterate(&f->clients, 0, draw_client); } void gravitate(Client * c, unsigned int tabh, unsigned int bw, int invert) { 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; } void attach_client(Client * c) { Area *a = 0; if (!cext_sizeof_container(&pages)) alloc_page(); /* transient stuff */ a = get_sel_area(); if (c && c->trans) { Client *t = win_to_client(c->trans); if (t && t->frame) a = cext_list_get_item(&t->frame->area->page->areas, 0); } cext_attach_item(&a->clients, c); a->layout->attach(a, c); invoke_wm_event(def[WM_EVENT_PAGE_UPDATE]); } void detach_client(Client *c, Bool unmap) { Page *p; Frame *f = c->frame; Area *a = f ? f->area : nil; if (a) { a->layout->detach(a, c, unmap); cext_detach_item(&a->clients, c); } if (c->destroyed) destroy_client(c); if ((p = get_sel_page())) sel_page(p); } Client *get_sel_client() { Frame *f = get_sel_frame(); return f ? cext_stack_get_top_item(&f->clients) : nil; }