awesome/layouts/tile.c

190 lines
5.2 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* tile.c - tile 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.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
#include <stdio.h>
#include "util.h"
#include "screen.h"
#include "awesome.h"
#include "tag.h"
#include "layout.h"
#include "layouts/tile.h"
2007-09-05 20:15:00 +02:00
extern awesome_config globalconf;
2007-09-05 20:15:00 +02:00
void
uicb_tag_setnmaster(int screen, char * arg)
2007-09-05 20:15:00 +02:00
{
Tag *curtag = get_current_tag(screen);
2007-11-11 11:53:10 +01:00
Layout *curlay = curtag->layout;
if(!arg || (curlay->arrange != layout_tile && curlay->arrange != layout_tileleft))
return;
2007-11-11 11:53:10 +01:00
if((curtag->nmaster = (int) compute_new_value_from_arg(arg, (double) curtag->nmaster)) < 0)
curtag->nmaster = 0;
arrange(screen);
2007-09-05 20:15:00 +02:00
}
void
uicb_tag_setncol(int screen, char * arg)
{
Tag *curtag = get_current_tag(screen);
2007-11-11 11:55:20 +01:00
Layout *curlay = curtag->layout;
if(!arg || (curlay->arrange != layout_tile && curlay->arrange != layout_tileleft))
return;
2007-11-11 11:55:20 +01:00
if((curtag->ncol = (int) compute_new_value_from_arg(arg, (double) curtag->ncol)) < 1)
curtag->ncol = 1;
arrange(screen);
}
2007-09-05 20:15:00 +02:00
void
uicb_tag_setmwfact(int screen, char *arg)
2007-09-05 20:15:00 +02:00
{
char *newarg;
Tag *curtag = get_current_tag(screen);
2007-11-11 11:48:26 +01:00
Layout *curlay = curtag->layout;
if(!arg || (curlay->arrange != layout_tile && curlay->arrange != layout_tileleft))
2007-09-05 20:15:00 +02:00
return;
newarg = a_strdup(arg);
if(curlay->arrange == layout_tileleft)
{
if(newarg[0] == '+')
newarg[0] = '-';
else if(arg[0] == '-')
newarg[0] = '+';
}
2007-11-11 11:48:26 +01:00
if((curtag->mwfact = compute_new_value_from_arg(newarg, curtag->mwfact)) < 0.1)
curtag->mwfact = 0.1;
else if(curtag->mwfact > 0.9)
curtag->mwfact = 0.9;
2007-09-15 14:20:01 +02:00
arrange(screen);
p_delete(&newarg);
2007-09-05 20:15:00 +02:00
}
static void
_tile(int screen, const Bool right)
2007-09-05 20:15:00 +02:00
{
2007-09-13 23:20:05 +02:00
/* windows area geometry */
int wah = 0, waw = 0, wax = 0, way = 0;
/* new coordinates */
unsigned int nx, ny, nw, nh;
/* master size */
unsigned int mw = 0, mh = 0;
2007-09-27 22:29:36 +02:00
int n, i, masterwin = 0, otherwin = 0;
int real_ncol = 1, win_by_col = 1, current_col = 0;
ScreenInfo *screens_info = NULL;
2007-09-05 20:15:00 +02:00
Client *c;
Tag *curtag = get_current_tag(screen);
2007-09-05 20:15:00 +02:00
screens_info = get_screen_info(screen, globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding);
for(n = 0, c = globalconf.clients; c; c = c->next)
if(IS_TILED(c, screen))
n++;
2007-09-05 20:15:00 +02:00
wah = screens_info[screen].height;
waw = screens_info[screen].width;
wax = screens_info[screen].x_org;
way = screens_info[screen].y_org;
2007-09-13 23:20:05 +02:00
2007-11-11 11:53:10 +01:00
masterwin = MIN(n, curtag->nmaster);
2007-09-27 22:29:36 +02:00
otherwin = n - masterwin;
2007-09-27 22:29:36 +02:00
if(otherwin < 0)
otherwin = 0;
2007-09-15 02:52:41 +02:00
2007-11-11 11:53:10 +01:00
if(curtag->nmaster)
2007-09-27 22:29:36 +02:00
{
mh = masterwin ? wah / masterwin : waw;
2007-11-11 11:48:26 +01:00
mw = otherwin ? waw * curtag->mwfact : waw;
2007-09-27 22:29:36 +02:00
}
else
mh = mw = 0;
2007-09-15 14:37:26 +02:00
2007-12-16 18:29:11 +01:00
real_ncol = curtag->ncol > 0 ? MIN(otherwin, curtag->ncol) : MIN(otherwin, 1);
for(i = 0, c = globalconf.clients; c; c = c->next)
2007-09-27 22:29:36 +02:00
{
if(!IS_TILED(c, screen))
2007-09-27 22:29:36 +02:00
continue;
2007-09-13 23:20:05 +02:00
2007-09-05 20:15:00 +02:00
c->ismax = False;
2007-11-11 11:53:10 +01:00
if(i < curtag->nmaster)
2007-09-05 20:15:00 +02:00
{ /* master */
2007-09-27 22:29:36 +02:00
ny = way + i * mh;
nx = wax + (right ? 0 : waw - mw);
client_resize(c, nx, ny, mw - 2 * c->border, mh - 2 * c->border, globalconf.screens[screen].resize_hints, False);
2007-09-05 20:15:00 +02:00
}
else
{ /* tile window */
if(real_ncol)
win_by_col = otherwin / real_ncol;
2007-09-15 02:52:41 +02:00
2007-11-11 11:53:10 +01:00
if((i - curtag->nmaster) && (i - curtag->nmaster) % win_by_col == 0 && current_col < real_ncol - 1)
2007-09-15 02:52:41 +02:00
current_col++;
if(current_col == real_ncol - 1)
win_by_col += otherwin % real_ncol;
2007-09-15 02:52:41 +02:00
if(otherwin <= real_ncol)
2007-09-15 02:52:41 +02:00
nh = wah - 2 * c->border;
2007-09-14 20:59:37 +02:00
else
2007-09-15 02:52:41 +02:00
nh = (wah / win_by_col) - 2 * c->border;
nw = (waw - mw) / real_ncol - 2 * c->border;
2007-09-15 02:52:41 +02:00
2007-11-11 11:53:10 +01:00
if(i == curtag->nmaster || otherwin <= real_ncol || (i - curtag->nmaster) % win_by_col == 0)
2007-09-13 23:20:05 +02:00
ny = way;
else
2007-11-11 11:53:10 +01:00
ny = way + ((i - curtag->nmaster) % win_by_col) * (nh + 2 * c->border);
2007-09-15 02:52:41 +02:00
nx = wax + current_col * (nw + 2 * c->border) + (right ? mw : 0);
client_resize(c, nx, ny, nw, nh, globalconf.screens[screen].resize_hints, False);
2007-09-05 20:15:00 +02:00
}
i++;
2007-09-05 20:15:00 +02:00
}
2007-10-23 16:36:27 +02:00
p_delete(&screens_info);
2007-09-05 20:15:00 +02:00
}
void
layout_tile(int screen)
2007-09-05 20:15:00 +02:00
{
_tile(screen, True);
2007-09-05 20:15:00 +02:00
}
void
layout_tileleft(int screen)
2007-09-05 20:15:00 +02:00
{
_tile(screen, False);
2007-09-05 20:15:00 +02:00
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80