/* * layout.c - layout management * * Copyright © 2007 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 "screen.h" #include "layout.h" #include "tag.h" #include "util.h" #include "statusbar.h" #include "layouts/floating.h" /* extern */ extern Client *clients, *sel; /* global client list */ void arrange(Display * disp, DC *drawcontext, awesome_config *awesomeconf) { Client *c; for(c = clients; c; c = c->next) { if(isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags)) unban(c); /* we don't touch other screens windows */ else if(c->screen == awesomeconf->screen) ban(c); } awesomeconf->current_layout->arrange(disp, awesomeconf); focus(disp, drawcontext, NULL, True, awesomeconf); restack(disp, drawcontext, awesomeconf); } void uicb_focusnext(Display *disp __attribute__ ((unused)), DC *drawcontext, awesome_config * awesomeconf, const char *arg __attribute__ ((unused))) { Client *c; if(!sel) return; for(c = sel->next; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->next); if(!c) for(c = clients; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->next); if(c) { focus(c->display, drawcontext, c, True, awesomeconf); restack(c->display, drawcontext, awesomeconf); } } void uicb_focusprev(Display *disp __attribute__ ((unused)), DC *drawcontext, awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { Client *c; if(!sel) return; for(c = sel->prev; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->prev); if(!c) { for(c = clients; c && c->next; c = c->next); for(; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->prev); } if(c) { focus(c->display, drawcontext, c, True, awesomeconf); restack(c->display, drawcontext, awesomeconf); } } void loadawesomeprops(Display *disp, awesome_config * awesomeconf) { int i; char *prop; prop = p_new(char, awesomeconf->ntags + 1); if(xgettextprop(disp, RootWindow(disp, awesomeconf->screen), AWESOMEPROPS_ATOM(disp), prop, awesomeconf->ntags + 1)) for(i = 0; i < awesomeconf->ntags && prop[i]; i++) awesomeconf->tags[i].selected = prop[i] == '1'; p_delete(&prop); } void restack(Display * disp, DC * drawcontext, awesome_config *awesomeconf) { Client *c; XEvent ev; XWindowChanges wc; drawstatusbar(disp, drawcontext, awesomeconf); if(!sel) return; if(sel->isfloating || IS_ARRANGE(layout_floating)) XRaiseWindow(disp, sel->win); if(!IS_ARRANGE(layout_floating)) { wc.stack_mode = Below; wc.sibling = awesomeconf->statusbar.window; if(!sel->isfloating) { XConfigureWindow(disp, sel->win, CWSibling | CWStackMode, &wc); wc.sibling = sel->win; } for(c = clients; c; c = c->next) { if(!IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags) || c == sel) continue; XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc); wc.sibling = c->win; } } XSync(disp, False); while(XCheckMaskEvent(disp, EnterWindowMask, &ev)); } void saveawesomeprops(Display *disp, awesome_config *awesomeconf) { int i; char *prop; prop = p_new(char, awesomeconf->ntags + 1); for(i = 0; i < awesomeconf->ntags; i++) prop[i] = awesomeconf->tags[i].selected ? '1' : '0'; prop[i] = '\0'; XChangeProperty(disp, RootWindow(disp, awesomeconf->screen), AWESOMEPROPS_ATOM(disp), XA_STRING, 8, PropModeReplace, (unsigned char *) prop, i); p_delete(&prop); } void uicb_setlayout(Display *disp, DC *drawcontext, awesome_config * awesomeconf, const char *arg) { int i, j; Client *c; if(!arg) { if(!(++awesomeconf->current_layout)->symbol) awesomeconf->current_layout = awesomeconf->layouts; } else { i = strtol(arg, NULL, 10); if(i < 0 || i >= awesomeconf->nlayouts) return; awesomeconf->current_layout = &awesomeconf->layouts[i]; } for(c = clients; c; c = c->next) c->ftview = True; if(sel) arrange(disp, drawcontext, awesomeconf); else drawstatusbar(disp, drawcontext, awesomeconf); saveawesomeprops(disp, awesomeconf); for(j = 0; j < awesomeconf->ntags; j++) if (awesomeconf->tags[j].selected) awesomeconf->tags[j].layout = awesomeconf->current_layout; } static void maximize(int x, int y, int w, int h, DC *drawcontext, awesome_config *awesomeconf) { if(!sel) return; if((sel->ismax = !sel->ismax)) { sel->wasfloating = sel->isfloating; sel->isfloating = True; sel->rx = sel->x; sel->ry = sel->y; sel->rw = sel->w; sel->rh = sel->h; resize(sel, x, y, w, h, awesomeconf, True); } else if(sel->wasfloating) resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, awesomeconf, True); else sel->isfloating = False; arrange(sel->display, drawcontext, awesomeconf); } void uicb_togglemax(Display *disp, DC *drawcontext, awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { int dummy; ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar, &dummy); maximize(si[awesomeconf->screen].x_org, si[awesomeconf->screen].y_org, si[awesomeconf->screen].width - 2 * awesomeconf->borderpx, si[awesomeconf->screen].height - 2 * awesomeconf->borderpx, drawcontext, awesomeconf); XFree(si); } void uicb_toggleverticalmax(Display *disp, DC *drawcontext, awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { int dummy; ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar, &dummy); if(sel) maximize(sel->x, si[awesomeconf->screen].y_org, sel->w, si[awesomeconf->screen].height - 2 * awesomeconf->borderpx, drawcontext, awesomeconf); XFree(si); } void uicb_togglehorizontalmax(Display *disp, DC *drawcontext, awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { int dummy; ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar, &dummy); if(sel) maximize(si[awesomeconf->screen].x_org, sel->y, si[awesomeconf->screen].height - 2 * awesomeconf->borderpx, sel->h, drawcontext, awesomeconf); XFree(si); } void uicb_zoom(Display *disp __attribute__ ((unused)), DC *drawcontext __attribute__ ((unused)), awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { if(!sel) return; detach(sel); attach(sel); focus(sel->display, drawcontext, sel, True, awesomeconf); arrange(sel->display, drawcontext, awesomeconf); }