103 lines
3.2 KiB
C
103 lines
3.2 KiB
C
|
/*
|
||
|
* fibonacci.c - fibonacci 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 "screen.h"
|
||
|
#include "tag.h"
|
||
|
#include "util.h"
|
||
|
#include "layouts/fibonacci.h"
|
||
|
|
||
|
static void
|
||
|
layout_fibonacci(awesome_config *awesomeconf, int screen, int shape)
|
||
|
{
|
||
|
int n = 0, i = 0, nx, ny, nw, nh;
|
||
|
Client *c;
|
||
|
ScreenInfo *si = get_screen_info(awesomeconf->display, screen,
|
||
|
&awesomeconf->screens[screen].statusbar,
|
||
|
&awesomeconf->screens[screen].padding);
|
||
|
|
||
|
nx = si[screen].x_org;
|
||
|
ny = si[screen].y_org;
|
||
|
nw = si[screen].width;
|
||
|
nh = si[screen].height;
|
||
|
|
||
|
for(c = awesomeconf->clients; c; c = c->next)
|
||
|
if(IS_TILED(c, &awesomeconf->screens[screen], screen))
|
||
|
n++;
|
||
|
for(c = awesomeconf->clients; c; c = c->next)
|
||
|
if(IS_TILED(c, &awesomeconf->screens[screen], screen))
|
||
|
{
|
||
|
c->ismax = False;
|
||
|
if((i % 2 && nh / 2 > 2 * c->border)
|
||
|
|| (!(i % 2) && nw / 2 > 2 * c->border))
|
||
|
{
|
||
|
if(i < n - 1)
|
||
|
{
|
||
|
if(i % 2)
|
||
|
nh /= 2;
|
||
|
else
|
||
|
nw /= 2;
|
||
|
if((i % 4) == 2 && !shape)
|
||
|
nx += nw;
|
||
|
else if((i % 4) == 3 && !shape)
|
||
|
ny += nh;
|
||
|
}
|
||
|
if((i % 4) == 0)
|
||
|
{
|
||
|
if(shape)
|
||
|
ny += nh;
|
||
|
else
|
||
|
ny -= nh;
|
||
|
}
|
||
|
else if((i % 4) == 1)
|
||
|
nx += nw;
|
||
|
else if((i % 4) == 2)
|
||
|
ny += nh;
|
||
|
else if((i % 4) == 3)
|
||
|
{
|
||
|
if(shape)
|
||
|
nx += nw;
|
||
|
else
|
||
|
nx -= nw;
|
||
|
}
|
||
|
if(i == 0)
|
||
|
ny = si[screen].y_org;
|
||
|
i++;
|
||
|
}
|
||
|
client_resize(c, nx, ny, nw - 2 * c->border, nh - 2 * c->border, awesomeconf,
|
||
|
awesomeconf->screens[screen].resize_hints, False);
|
||
|
}
|
||
|
p_delete(&si);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
layout_spiral(awesome_config *awesomeconf, int screen)
|
||
|
{
|
||
|
layout_fibonacci(awesomeconf, screen, 0);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
layout_dwindle(awesome_config *awesomeconf, int screen)
|
||
|
{
|
||
|
layout_fibonacci(awesomeconf, screen, 1);
|
||
|
}
|
||
|
|
||
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|