awesome/layout.c

133 lines
3.9 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* 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.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
2008-03-21 16:50:17 +01:00
#include <xcb/xcb.h>
#include <xcb/xcb_atom.h>
2008-03-27 16:05:37 +01:00
#include <xcb/xcb_aux.h>
2007-09-05 20:15:00 +02:00
#include "tag.h"
2007-12-14 21:51:54 +01:00
#include "focus.h"
2008-01-07 18:12:38 +01:00
#include "widget.h"
#include "window.h"
2008-01-01 17:25:48 +01:00
#include "client.h"
2008-01-01 18:02:36 +01:00
#include "screen.h"
#include "layouts/tile.h"
#include "layouts/max.h"
#include "layouts/fibonacci.h"
2007-09-05 20:15:00 +02:00
#include "layouts/floating.h"
extern awesome_t globalconf;
2007-10-03 00:33:16 +02:00
/** Arrange windows following current selected layout
2007-12-16 03:14:47 +01:00
* \param screen the screen to arrange
2007-10-03 00:33:16 +02:00
*/
static void
arrange(int screen)
2007-09-05 20:15:00 +02:00
{
client_t *c;
layout_t *curlay = layout_get_current(screen);
int fscreen, 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)
2007-09-16 12:23:07 +02:00
{
if(client_isvisible(c, screen))
2007-10-26 19:50:39 +02:00
client_unban(c);
2007-09-17 13:45:13 +02:00
/* we don't touch other screens windows */
else if(c->screen == screen)
2007-10-26 19:50:39 +02:00
client_ban(c);
2007-09-16 12:23:07 +02:00
}
if(curlay)
curlay(screen);
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;
/* no window have focus, let's try to see if mouse is on
* the screen we just rearranged */
if(!globalconf.focus->client)
{
fscreen = screen_get_bycoord(globalconf.screens_info,
screen,
qp_r->root_x, qp_r->root_y);
/* if the mouse in on the same screen we just rearranged, and no
* client are currently focused, pick the first one in history */
if(fscreen == screen
&& (c = focus_get_current_client(screen)))
client_focus(c, screen);
}
p_delete(&qp_r);
}
/* reset status */
2008-03-21 16:50:17 +01:00
globalconf.screens[screen].need_arrange = false;
/* call hook */
lua_pushnumber(globalconf.L, screen + 1);
luaA_dofunction(globalconf.L, globalconf.hooks.arrange, 1);
2007-09-05 20:15:00 +02:00
}
2008-03-06 16:03:01 +01:00
/** 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);
2008-05-23 13:10:28 +02:00
return NULL;
}
/** Get current layout used on screen.
* \param screen Virtual screen number.
2008-03-06 16:03:01 +01:00
* \return layout used on that screen
*/
layout_t *
layout_get_current(int screen)
{
layout_t *l = NULL;
tag_t **curtags = tags_get_current(screen);
if(curtags[0])
l = curtags[0]->layout;
p_delete(&curtags);
2008-01-11 10:22:36 +01:00
return l;
2007-09-05 20:15:00 +02:00
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80