awesome/layouts/max.c

42 lines
1.5 KiB
C
Raw Normal View History

2007-09-21 00:30:32 +02:00
/*
* max.c - max layout
*
* Copyright © 2007 Julien Danjou <julien@danjou.info>
*
* 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 "tag.h"
#include "screen.h"
#include "layouts/max.h"
/* extern */
extern Client *clients; /* global client */
void
layout_max(Display *disp, awesome_config *awesomeconf)
{
Client *c;
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar);
2007-09-21 00:30:32 +02:00
for(c = clients; c; c = c->next)
2007-09-24 15:37:52 +02:00
if(IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags))
2007-09-27 19:34:41 +02:00
resize(c, si[awesomeconf->screen].x_org, si[awesomeconf->screen].y_org,
si[awesomeconf->screen].width - 2 * c->border,
si[awesomeconf->screen].height - 2 * c->border, awesomeconf, awesomeconf->resize_hints);
2007-09-21 00:30:32 +02:00
XFree(si);
}