2008-05-27 20:53:34 +02:00
|
|
|
/*
|
|
|
|
* magnifier.c - magnifier layout
|
|
|
|
*
|
|
|
|
* Copyright © 2008 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 "client.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "screen.h"
|
|
|
|
#include "focus.h"
|
|
|
|
#include "layouts/magnifier.h"
|
|
|
|
|
|
|
|
extern awesome_t globalconf;
|
|
|
|
|
|
|
|
void
|
|
|
|
layout_magnifier(int screen)
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
client_t *c, *focus;
|
2008-05-27 21:31:32 +02:00
|
|
|
tag_t **curtags = tags_get_current(screen);
|
2008-05-27 20:53:34 +02:00
|
|
|
area_t geometry, area = screen_get_area(screen,
|
|
|
|
globalconf.screens[screen].statusbar,
|
|
|
|
&globalconf.screens[screen].padding);
|
|
|
|
|
|
|
|
focus = focus_get_current_client(screen);
|
|
|
|
|
|
|
|
/* If focused window is not tiled, take the first one which is tiled. */
|
|
|
|
if(!IS_TILED(focus, screen))
|
|
|
|
for(focus = globalconf.clients; focus && !IS_TILED(focus, screen); focus = focus->next);
|
|
|
|
|
|
|
|
/* No windows is tiled, nothing to do. */
|
|
|
|
if(!focus)
|
2008-05-27 21:31:32 +02:00
|
|
|
goto bailout;
|
2008-05-27 20:53:34 +02:00
|
|
|
|
2008-05-27 21:31:32 +02:00
|
|
|
geometry.width = area.width * curtags[0]->mwfact;
|
|
|
|
geometry.height = area.height * curtags[0]->mwfact;
|
2008-05-27 20:53:34 +02:00
|
|
|
geometry.x = area.x + (area.width - geometry.width) / 2;
|
|
|
|
geometry.y = area.y + (area.height - geometry.height) / 2;
|
|
|
|
client_resize(focus, geometry, globalconf.resize_hints);
|
|
|
|
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
|
|
if(IS_TILED(c, screen) && c != focus)
|
|
|
|
n++;
|
|
|
|
|
2008-05-27 21:28:29 +02:00
|
|
|
/* No other clients. */
|
|
|
|
if(!n)
|
2008-05-27 21:31:32 +02:00
|
|
|
goto bailout;
|
2008-05-27 21:28:29 +02:00
|
|
|
|
2008-05-27 20:53:34 +02:00
|
|
|
geometry.x = area.x;
|
|
|
|
geometry.y = area.y;
|
|
|
|
geometry.height = area.height / n;
|
|
|
|
geometry.width = area.width;
|
|
|
|
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
|
|
if(IS_TILED(c, screen) && c != focus)
|
|
|
|
{
|
|
|
|
geometry.height -= 2 * c->border;
|
|
|
|
geometry.width -= 2 * c->border;
|
|
|
|
client_resize(c, geometry, globalconf.resize_hints);
|
|
|
|
geometry.height += 2 * c->border;
|
|
|
|
geometry.width += 2 * c->border;
|
|
|
|
geometry.y += geometry.height;
|
|
|
|
}
|
2008-05-27 21:31:32 +02:00
|
|
|
|
|
|
|
bailout:
|
|
|
|
p_delete(&curtags);
|
2008-05-27 20:53:34 +02:00
|
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|