125 lines
3.6 KiB
C
125 lines
3.6 KiB
C
/*
|
|
* layout.c - layout management
|
|
*
|
|
* Copyright © 2007-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 <xcb/xcb.h>
|
|
#include <xcb/xcb_atom.h>
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
#include "tag.h"
|
|
#include "focus.h"
|
|
#include "widget.h"
|
|
#include "window.h"
|
|
#include "client.h"
|
|
#include "screen.h"
|
|
#include "layouts/tile.h"
|
|
#include "layouts/max.h"
|
|
#include "layouts/fibonacci.h"
|
|
#include "layouts/floating.h"
|
|
|
|
extern AwesomeConf globalconf;
|
|
|
|
/** Arrange windows following current selected layout
|
|
* \param screen the screen to arrange
|
|
*/
|
|
static void
|
|
arrange(int screen)
|
|
{
|
|
client_t *c;
|
|
LayoutArrange *curlay = layout_get_current(screen);
|
|
int phys_screen = screen_virttophys(screen);
|
|
xcb_query_pointer_cookie_t qp_c;
|
|
xcb_query_pointer_reply_t *qp_r;
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
{
|
|
if(client_isvisible(c, screen) && !c->newcomer)
|
|
client_unban(c);
|
|
/* we don't touch other screens windows */
|
|
else if(c->screen == screen || c->newcomer)
|
|
client_ban(c);
|
|
}
|
|
|
|
if(curlay)
|
|
curlay(screen);
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
if(c->newcomer && client_isvisible(c, screen))
|
|
{
|
|
c->newcomer = false;
|
|
client_unban(c);
|
|
}
|
|
|
|
/* if we have a valid client that could be focused but currently no window
|
|
* are focused, then set the focus on this window */
|
|
if((c = focus_get_current_client(screen)) && !globalconf.focus->client)
|
|
client_focus(c, screen, true);
|
|
|
|
qp_c = xcb_query_pointer_unchecked(globalconf.connection,
|
|
xcb_aux_get_screen(globalconf.connection,
|
|
phys_screen)->root);
|
|
|
|
/* check that the mouse is on a window or not */
|
|
if((qp_r = xcb_query_pointer_reply(globalconf.connection, qp_c, NULL)))
|
|
{
|
|
if(qp_r->root == XCB_NONE || qp_r->child == XCB_NONE || qp_r->root == qp_r->child)
|
|
window_root_grabbuttons();
|
|
|
|
globalconf.pointer_x = qp_r->root_x;
|
|
globalconf.pointer_y = qp_r->root_y;
|
|
p_delete(&qp_r);
|
|
}
|
|
|
|
/* reset status */
|
|
globalconf.screens[screen].need_arrange = false;
|
|
}
|
|
|
|
/** Refresh the screen disposition
|
|
* \return true if the screen was arranged, false otherwise
|
|
*/
|
|
void *
|
|
layout_refresh(void *v __attribute__ ((unused)))
|
|
{
|
|
int screen;
|
|
|
|
for(screen = 0; screen < globalconf.screens_info->nscreen; screen++)
|
|
if(globalconf.screens[screen].need_arrange)
|
|
arrange(screen);
|
|
}
|
|
|
|
/** Get current layout used on screen.
|
|
* \param screen Virtual screen number.
|
|
* \return layout used on that screen
|
|
*/
|
|
LayoutArrange *
|
|
layout_get_current(int screen)
|
|
{
|
|
LayoutArrange *l = NULL;
|
|
tag_t **curtags = tags_get_current(screen);
|
|
|
|
if(curtags[0])
|
|
l = curtags[0]->layout;
|
|
p_delete(&curtags);
|
|
|
|
return l;
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|