max layout is now Xinerama aware
[awesome.git] / layouts / max.c
blobac97fbbc5ac4d1ffeb3a1331595fcaad420d19e2
1 /*
2 * max.c - max layout
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "tag.h"
23 #include "screen.h"
24 #include "layouts/max.h"
26 /* extern */
27 extern Client *clients; /* global client */
29 void
30 layout_max(Display *disp, awesome_config *awesomeconf)
32 Client *c;
33 int screen_number = 0;
34 ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar, &screen_number);
36 for(c = clients; c; c = c->next)
37 if(IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags))
38 resize(c, si[awesomeconf->screen].x_org, si[awesomeconf->screen].y_org,
39 si[awesomeconf->screen].width - 2 * c->border,
40 si[awesomeconf->screen].height - 2 * c->border, awesomeconf->resize_hints);
41 XFree(si);