/* * client.c - client management * * Copyright © 2007-2008 Julien Danjou * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include #include #include #include #include "client.h" #include "tag.h" #include "rules.h" #include "util.h" #include "xutil.h" #include "window.h" #include "focus.h" #include "ewmh.h" #include "screen.h" #include "widget.h" #include "layouts/floating.h" extern AwesomeConf globalconf; /** Load windows properties, restoring client's tag * and floating state before awesome was restarted if any * \todo this may bug if number of tags is != than before * \param c Client ref * \param screen Screen ID */ static Bool client_loadprops(Client * c, int screen) { int i, ntags = 0; Tag *tag; char *prop; Bool result = False; for(tag = globalconf.screens[screen].tags; tag; tag = tag->next) ntags++; prop = p_new(char, ntags + 2); if(xgettextprop(c->win, XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False), prop, ntags + 2)) { for(i = 0, tag = globalconf.screens[screen].tags; tag && i < ntags && prop[i]; i++, tag = tag->next) if(prop[i] == '1') { tag_client(c, tag); result = True; } else untag_client(c, tag); if(i <= ntags && prop[i]) c->isfloating = prop[i] == '1'; } p_delete(&prop); return result; } /** Check if client supports protocol WM_DELETE_WINDOW * \param disp the display * \param win the Window * \return True if client has WM_DELETE_WINDOW */ static Bool isprotodel(Display *disp, Window win) { int i, n; Atom *protocols; Bool ret = False; if(XGetWMProtocols(disp, win, &protocols, &n)) { for(i = 0; !ret && i < n; i++) if(protocols[i] == XInternAtom(disp, "WM_DELETE_WINDOW", False)) ret = True; XFree(protocols); } return ret; } /** Get a Client by its window * \param list Client list to look info * \param w Client window to find * \return client */ Client * get_client_bywin(Client *list, Window w) { Client *c; for(c = list; c && c->win != w; c = c->next); return c; } /** Get a client by its name * \param list Client list * \param name name to search * \return first matching client */ Client * get_client_byname(Client *list, char *name) { Client *c; for(c = list; c; c = c->next) if(strstr(c->name, name)) return c; return NULL; } /** Update client name attribute with its title * \param c the client */ void client_updatetitle(Client *c) { if(!xgettextprop(c->win, XInternAtom(globalconf.display, "_NET_WM_NAME", False), c->name, sizeof(c->name))) xgettextprop(c->win, XInternAtom(globalconf.display, "WM_NAME", False), c->name, sizeof(c->name)); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); } /** Ban client and unmap it * \param c the client */ void client_ban(Client * c) { XUnmapWindow(globalconf.display, c->win); window_setstate(c->win, IconicState); } /** Give focus to client, or to first client if c is NULL * \param c client * \param selscreen True if current screen is selected * \param screen Screen ID */ void focus(Client *c, Bool selscreen, int screen) { int phys_screen = get_phys_screen(screen); /* unfocus current selected client */ if(globalconf.focus->client) { widget_invalidate_cache(globalconf.focus->client->screen, WIDGET_CACHE_CLIENTS); window_grabbuttons(get_phys_screen(globalconf.focus->client->screen), globalconf.focus->client->win, False, True); XSetWindowBorder(globalconf.display, globalconf.focus->client->win, globalconf.screens[screen].colors_normal[ColBorder].pixel); window_settrans(globalconf.focus->client->win, globalconf.screens[screen].opacity_unfocused); } /* if c is NULL or invisible, take next client in the focus history */ if((!c && selscreen) || (c && !client_isvisible(c, screen))) { c = focus_get_current_client(screen); /* if c is still NULL take next client in the stack */ if(!c) for(c = globalconf.clients; c && (c->skip || !client_isvisible(c, screen)); c = c->next); } if(c) { XSetWindowBorder(globalconf.display, c->win, globalconf.screens[screen].colors_selected[ColBorder].pixel); window_grabbuttons(phys_screen, c->win, True, True); } if(!selscreen) return; /* save sel in focus history */ focus_add_client(c); if(globalconf.focus->client) { widget_invalidate_cache(screen, WIDGET_CACHE_CLIENTS); XSetInputFocus(globalconf.display, globalconf.focus->client->win, RevertToPointerRoot, CurrentTime); for(c = globalconf.clients; c; c = c->next) if(c != globalconf.focus->client) window_settrans(globalconf.focus->client->win, globalconf.screens[screen].opacity_unfocused); window_settrans(globalconf.focus->client->win, -1); } else XSetInputFocus(globalconf.display, RootWindow(globalconf.display, phys_screen), RevertToPointerRoot, CurrentTime); ewmh_update_net_active_window(phys_screen); } /** Manage a new client * \param w The window * \param wa Window attributes * \param screen Screen ID */ void client_manage(Window w, XWindowAttributes *wa, int screen) { Client *c, *t = NULL; Window trans; Bool rettrans; XWindowChanges wc; Area area, darea; Tag *tag; Rule *rule; int phys_screen = get_phys_screen(screen); area = get_screen_area(screen, NULL, NULL); c = p_new(Client, 1); c->win = w; c->geometry.x = c->f_geometry.x = c->m_geometry.x = wa->x; c->geometry.y = c->f_geometry.y = c->m_geometry.y = wa->y; c->geometry.width = c->f_geometry.width = c->m_geometry.width = wa->width; c->geometry.height = c->f_geometry.height = c->m_geometry.height = wa->height; c->oldborder = wa->border_width; c->newcomer = True; c->screen = get_screen_bycoord(c->geometry.x, c->geometry.y); move_client_to_screen(c, screen, True); /* update window title */ client_updatetitle(c); if(c->geometry.width == area.width && c->geometry.height == area.height) c->border = wa->border_width; else c->border = globalconf.screens[screen].borderpx; ewmh_check_client_hints(c); /* loadprops or apply rules if no props */ if(!client_loadprops(c, screen)) tag_client_with_rules(c); /* if window request fullscreen mode */ if(c->geometry.width == area.width && c->geometry.height == area.height) { c->geometry.x = area.x; c->geometry.y = area.y; } else { darea = get_display_area(phys_screen, globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding); if(c->geometry.x + c->geometry.width + 2 * c->border > darea.x + darea.width) c->geometry.x = c->f_geometry.x = darea.x + darea.width - c->geometry.width - 2 * c->border; if(c->geometry.y + c->geometry.height + 2 * c->border > darea.y + darea.height) c->geometry.y = c->f_geometry.y = darea.y + darea.height - c->geometry.height - 2 * c->border; if(c->geometry.x < darea.x) c->geometry.x = c->f_geometry.x = darea.x; if(c->geometry.y < darea.y) c->geometry.y = c->f_geometry.y = darea.y; } /* XXX if this necessary ? */ /* set borders */ wc.border_width = c->border; XConfigureWindow(globalconf.display, w, CWBorderWidth, &wc); XSetWindowBorder(globalconf.display, w, globalconf.screens[screen].colors_normal[ColBorder].pixel); /* propagates border_width, if size doesn't change */ window_configure(c->win, c->geometry, c->border); /* update hints */ client_updatesizehints(c); client_updatewmhints(c); XSelectInput(globalconf.display, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask); /* handle xshape */ if(globalconf.have_shape) { XShapeSelectInput(globalconf.display, w, ShapeNotifyMask); window_setshape(phys_screen, c->win); } /* grab buttons */ window_grabbuttons(phys_screen, c->win, False, True); /* check for transient and set tags like its parent, * XGetTransientForHint returns 1 on success */ if((rettrans = XGetTransientForHint(globalconf.display, w, &trans)) && (t = get_client_bywin(globalconf.clients, trans))) for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next) if(is_client_tagged(t, tag)) tag_client(c, tag); /* should be floating if transsient or fixed */ if(!c->isfloating) c->isfloating = rettrans || c->isfixed; /* save new props */ client_saveprops(c); /* attach to the stack */ if((rule = rule_matching_client(c)) && rule->not_master) client_list_append(&globalconf.clients, c); else if(globalconf.screens[c->screen].new_become_master) client_list_push(&globalconf.clients, c); else client_list_append(&globalconf.clients, c); ewmh_update_net_client_list(phys_screen); /* some windows require this */ XMoveResizeWindow(globalconf.display, c->win, c->geometry.x, c->geometry.y, c->geometry.width, c->geometry.height); if(globalconf.screens[c->screen].new_get_focus) focus(c, True, screen); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); /* rearrange to display new window */ arrange(c->screen); } /** Resize client window * \param c client to resize * \param geometry new window geometry * \param sizehints respect size hints * \param return True if resize has been done */ Bool client_resize(Client *c, Area geometry, Bool sizehints) { int new_screen; double dx, dy, max, min, ratio; Area area; XWindowChanges wc; if(sizehints) { if(c->minay > 0 && c->maxay > 0 && (geometry.height - c->baseh) > 0 && (geometry.width - c->basew) > 0) { dx = (double) (geometry.width - c->basew); dy = (double) (geometry.height - c->baseh); min = (double) (c->minax) / (double) (c->minay); max = (double) (c->maxax) / (double) (c->maxay); ratio = dx / dy; if(max > 0 && min > 0 && ratio > 0) { if(ratio < min) { dy = (dx * min + dy) / (min * min + 1); dx = dy * min; geometry.width = (int) dx + c->basew; geometry.height = (int) dy + c->baseh; } else if(ratio > max) { dy = (dx * min + dy) / (max * max + 1); dx = dy * min; geometry.width = (int) dx + c->basew; geometry.height = (int) dy + c->baseh; } } } if(c->minw && geometry.width < c->minw) geometry.width = c->minw; if(c->minh && geometry.height < c->minh) geometry.height = c->minh; if(c->maxw && geometry.width > c->maxw) geometry.width = c->maxw; if(c->maxh && geometry.height > c->maxh) geometry.height = c->maxh; if(c->incw) geometry.width -= (geometry.width - c->basew) % c->incw; if(c->inch) geometry.height -= (geometry.height - c->baseh) % c->inch; } if(geometry.width <= 0 || geometry.height <= 0) return False; /* offscreen appearance fixes */ area = get_display_area(get_phys_screen(c->screen), NULL, &globalconf.screens[c->screen].padding); if(geometry.x > area.width) geometry.x = area.width - geometry.width - 2 * c->border; if(geometry.y > area.height) geometry.y = area.height - geometry.height - 2 * c->border; if(geometry.x + geometry.width + 2 * c->border < 0) geometry.x = 0; if(geometry.y + geometry.height + 2 * c->border < 0) geometry.y = 0; if(c->geometry.x != geometry.x || c->geometry.y != geometry.y || c->geometry.width != geometry.width || c->geometry.height != geometry.height) { if(XineramaIsActive(globalconf.display)) new_screen = get_screen_bycoord(geometry.x, geometry.y); else new_screen = c->screen; c->geometry.x = wc.x = geometry.x; c->geometry.y = wc.y = geometry.y; c->geometry.width = wc.width = geometry.width; c->geometry.height = wc.height = geometry.height; wc.border_width = c->border; /* save the floating geometry if the window is floating but not * maximized */ if((c->isfloating || get_current_layout(new_screen)->arrange == layout_floating) && !c->ismax) c->f_geometry = geometry; XConfigureWindow(globalconf.display, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc); window_configure(c->win, geometry, c->border); if(c->screen != new_screen) move_client_to_screen(c, new_screen, False); return True; } return False; } /** Save client properties as an X property * \param c client */ void client_saveprops(Client *c) { int i = 0, ntags = 0; char *prop; Tag *tag; for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next) ntags++; prop = p_new(char, ntags + 2); for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next, i++) prop[i] = is_client_tagged(c, tag) ? '1' : '0'; if(i <= ntags) prop[i] = c->isfloating ? '1' : '0'; prop[++i] = '\0'; XChangeProperty(globalconf.display, c->win, XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False), XA_STRING, 8, PropModeReplace, (unsigned char *) prop, i); p_delete(&prop); } void client_unban(Client *c) { XMapWindow(globalconf.display, c->win); window_setstate(c->win, NormalState); } void client_unmanage(Client *c) { XWindowChanges wc; Tag *tag; wc.border_width = c->oldborder; /* The server grab construct avoids race conditions. */ XGrabServer(globalconf.display); XConfigureWindow(globalconf.display, c->win, CWBorderWidth, &wc); /* restore border */ /* remove client everywhere */ client_list_detach(&globalconf.clients, c); focus_delete_client(c); for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next) untag_client(c, tag); if(globalconf.focus->client == c) focus(NULL, True, c->screen); XUngrabButton(globalconf.display, AnyButton, AnyModifier, c->win); window_setstate(c->win, WithdrawnState); XSync(globalconf.display, False); XUngrabServer(globalconf.display); arrange(c->screen); p_delete(&c); } void client_updatewmhints(Client *c) { XWMHints *wmh; if((wmh = XGetWMHints(globalconf.display, c->win))) { if((c->isurgent = (wmh->flags & XUrgencyHint))) widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); if((wmh->flags & StateHint) && wmh->initial_state == WithdrawnState) { c->border = 0; c->skip = True; } XFree(wmh); } } void client_updatesizehints(Client *c) { long msize; XSizeHints size; if(!XGetWMNormalHints(globalconf.display, c->win, &size, &msize) || !size.flags) size.flags = PSize; if(size.flags & PBaseSize) { c->basew = size.base_width; c->baseh = size.base_height; } else if(size.flags & PMinSize) { c->basew = size.min_width; c->baseh = size.min_height; } else c->basew = c->baseh = 0; if(size.flags & PResizeInc) { c->incw = size.width_inc; c->inch = size.height_inc; } else c->incw = c->inch = 0; if(size.flags & PMaxSize) { c->maxw = size.max_width; c->maxh = size.max_height; } else c->maxw = c->maxh = 0; if(size.flags & PMinSize) { c->minw = size.min_width; c->minh = size.min_height; } else if(size.flags & PBaseSize) { c->minw = size.base_width; c->minh = size.base_height; } else c->minw = c->minh = 0; if(size.flags & PAspect) { c->minax = size.min_aspect.x; c->maxax = size.max_aspect.x; c->minay = size.min_aspect.y; c->maxay = size.max_aspect.y; } else c->minax = c->maxax = c->minay = c->maxay = 0; if(c->maxw && c->minw && c->maxh && c->minh && c->maxw == c->minw && c->maxh == c->minh) c->isfixed = True; } /** Returns True if a client is tagged * with one of the tags * \return True or False */ Bool client_isvisible(Client *c, int screen) { Tag *tag; if(!c || c->screen != screen) return False; for(tag = globalconf.screens[screen].tags; tag; tag = tag->next) if(tag->selected && is_client_tagged(c, tag)) return True; return False; } /** Set selected client transparency * \param screen Screen ID * \param arg unused arg * \ingroup ui_callback */ void uicb_client_settrans(int screen __attribute__ ((unused)), char *arg) { double delta = 100.0, current_opacity = 100.0; unsigned char *data; Atom actual; int format; unsigned long n, left; unsigned int current_opacity_raw = 0; int set_prop = 0; Client *sel = globalconf.focus->client; if(!sel) return; XGetWindowProperty(globalconf.display, sel->win, XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False), 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, (unsigned char **) &data); if(data) { memcpy(¤t_opacity_raw, data, sizeof(unsigned int)); XFree(data); current_opacity = (current_opacity_raw * 100.0) / 0xffffffff; } else set_prop = 1; delta = compute_new_value_from_arg(arg, current_opacity); if(delta <= 0.0) delta = 0.0; else if(delta > 100.0) { delta = 100.0; set_prop = 1; } if(delta == 100.0 && !set_prop) window_settrans(sel->win, -1); else window_settrans(sel->win, delta); } /** Swap current with next client * \param screen Screen ID * \param arg nothing * \ingroup ui_callback */ void uicb_client_swapnext(int screen, char *arg __attribute__ ((unused))) { Client *next, *sel = globalconf.focus->client; if(!sel) return; for(next = sel->next; next && !client_isvisible(next, screen); next = next->next); if(next) { client_list_swap(&globalconf.clients, sel, next); arrange(screen); } } Client * client_find_prev_visible(Client *sel) { Client *prev = NULL; if(!sel) return NULL; /* look for previous starting at sel */ for(prev = client_list_prev_cycle(&globalconf.clients, sel); prev && (prev->skip || !client_isvisible(prev, sel->screen)); prev = client_list_prev_cycle(&globalconf.clients, prev)); return prev; } /** Swap current with previous client * \param screen Screen ID * \param arg nothing * \ingroup ui_callback */ void uicb_client_swapprev(int screen, char *arg __attribute__ ((unused))) { Client *prev; if((prev = client_find_prev_visible(globalconf.focus->client))) { client_list_swap(&globalconf.clients, prev, globalconf.focus->client); arrange(screen); } } /** Move and resize client * \param screen Screen ID * \param arg x y w h * \ingroup ui_callback */ void uicb_client_moveresize(int screen, char *arg) { int ox, oy, ow, oh; char x[8], y[8], w[8], h[8]; int mx, my, dx, dy, nmx, nmy; unsigned int dui; Window dummy; Area area; Client *sel = globalconf.focus->client; Tag **curtags = get_current_tags(screen); if(curtags[0]->layout->arrange != layout_floating) if(!sel || !sel->isfloating || sel->isfixed || !arg) { p_delete(&curtags); return; } p_delete(&curtags); if(sscanf(arg, "%s %s %s %s", x, y, w, h) != 4) return; area.x = (int) compute_new_value_from_arg(x, sel->geometry.x); area.y = (int) compute_new_value_from_arg(y, sel->geometry.y); area.width = (int) compute_new_value_from_arg(w, sel->geometry.width); area.height = (int) compute_new_value_from_arg(h, sel->geometry.height); ox = sel->geometry.x; oy = sel->geometry.y; ow = sel->geometry.width; oh = sel->geometry.height; Bool xqp = XQueryPointer(globalconf.display, RootWindow(globalconf.display, get_phys_screen(screen)), &dummy, &dummy, &mx, &my, &dx, &dy, &dui); client_resize(sel, area, globalconf.screens[sel->screen].resize_hints); if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my) { nmx = mx - ox + sel->geometry.width - ow - 1 < 0 ? 0 : mx - ox + sel->geometry.width - ow - 1; nmy = my - oy + sel->geometry.height - oh - 1 < 0 ? 0 : my - oy + sel->geometry.height - oh - 1; XWarpPointer(globalconf.display, None, sel->win, 0, 0, 0, 0, nmx, nmy); } } void client_kill(Client *c) { XEvent ev; if(isprotodel(globalconf.display, c->win)) { ev.type = ClientMessage; ev.xclient.window = c->win; ev.xclient.message_type = XInternAtom(globalconf.display, "WM_PROTOCOLS", False); ev.xclient.format = 32; ev.xclient.data.l[0] = XInternAtom(globalconf.display, "WM_DELETE_WINDOW", False); ev.xclient.data.l[1] = CurrentTime; XSendEvent(globalconf.display, c->win, False, NoEventMask, &ev); } else XKillClient(globalconf.display, c->win); } /** Kill selected client * \param screen Screen ID * \param arg unused * \ingroup ui_callback */ void uicb_client_kill(int screen __attribute__ ((unused)), char *arg __attribute__ ((unused))) { Client *sel = globalconf.focus->client; if(sel) client_kill(sel); } static void client_maximize(Client *c, Area geometry) { if((c->ismax = !c->ismax)) { c->wasfloating = c->isfloating; c->m_geometry = c->geometry; if(get_current_layout(c->screen)->arrange != layout_floating) c->isfloating = True; client_resize(c, geometry, False); restack(c->screen); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); } else if(c->wasfloating) { c->isfloating = True; client_resize(c, c->m_geometry, False); restack(c->screen); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); } else if(get_current_layout(c->screen)->arrange == layout_floating) { client_resize(c, c->m_geometry, False); restack(c->screen); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); } else { c->isfloating = False; arrange(c->screen); widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS); } } /** Toggle maximize for client * \param screen Screen ID * \param arg Unused * \ingroup ui_callback */ void uicb_client_togglemax(int screen, char *arg __attribute__ ((unused))) { Client *sel = globalconf.focus->client; Area area = get_screen_area(screen, globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding); if(sel) { area.width -= 2 * sel->border; area.height -= 2 * sel->border; client_maximize(sel, area); } } /** Toggle vertical maximize for client * \param screen Screen ID * \param arg Unused * \ingroup ui_callback */ void uicb_client_toggleverticalmax(int screen, char *arg __attribute__ ((unused))) { Client *sel = globalconf.focus->client; Area area = get_screen_area(screen, globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding); if(sel) { area.x = sel->geometry.x; area.width = sel->geometry.width; area.height -= 2 * sel->border; client_maximize(sel, area); } } /** Toggle horizontal maximize for client * \param screen Screen ID * \param arg Unused * \ingroup ui_callback */ void uicb_client_togglehorizontalmax(int screen, char *arg __attribute__ ((unused))) { Client *sel = globalconf.focus->client; Area area = get_screen_area(screen, globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding); if(sel) { area.y = sel->geometry.y; area.height = sel->geometry.height; area.width -= 2 * sel->border; client_maximize(sel, area); } } /** Zoom client * \param screen Screen ID * \param arg Unused * \ingroup ui_callback */ void uicb_client_zoom(int screen, char *arg __attribute__ ((unused))) { Client *c, *sel = globalconf.focus->client; for(c = globalconf.clients; !client_isvisible(c, screen); c = c->next); if(c == sel) for(sel = sel->next; sel && !client_isvisible(sel, screen); sel = sel->next); if(!sel) return; client_list_detach(&globalconf.clients, sel); client_list_push(&globalconf.clients, sel); arrange(screen); } // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80