awesome/layout.c

98 lines
3.2 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
#include "layout.h"
#include "tag.h"
#include "window.h"
2008-01-01 18:02:36 +01:00
#include "screen.h"
#include "titlebar.h"
2007-09-05 20:15:00 +02:00
extern awesome_t globalconf;
/** Arrange windows following current selected layout
* \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;
uint32_t select_input_val[] = { CLIENT_SELECT_INPUT_EVENT_MASK & ~(XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_LEAVE_WINDOW) };
for(c = globalconf.clients; c; c = c->next)
{
/* Bob Marley v2:
* While we arrange, we do not want to receive EnterNotify or LeaveNotify
* events, or we would get spurious events. */
xcb_change_window_attributes(globalconf.connection,
c->win,
XCB_CW_EVENT_MASK,
select_input_val);
/* Restore titlebar before client, so geometry is ok again. */
if(titlebar_isvisible(c, screen))
titlebar_unban(c->titlebar);
else if(c->screen == screen)
titlebar_ban(c->titlebar);
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);
}
/* Reset status before calling arrange hook.
* This is needed if you call a function that relies
* on need_arrange while arrange is in progress.
*/
globalconf.screens[screen].need_arrange = false;
/* call hook */
if(globalconf.hooks.arrange != LUA_REFNIL)
{
lua_pushnumber(globalconf.L, screen + 1);
luaA_dofunction(globalconf.L, globalconf.hooks.arrange, 1, 0);
}
/* Now, we want to receive EnterNotify and LeaveNotify events back. */
select_input_val[0] = CLIENT_SELECT_INPUT_EVENT_MASK;
for(c = globalconf.clients; c; c = c->next)
xcb_change_window_attributes(globalconf.connection,
c->win,
XCB_CW_EVENT_MASK,
select_input_val);
2007-09-05 20:15:00 +02:00
}
/** Refresh the screen disposition
* \return true if the screen was arranged, false otherwise
2008-03-06 16:03:01 +01:00
*/
void
layout_refresh(void)
{
int screen;
for(screen = 0; screen < globalconf.nscreen; screen++)
if(globalconf.screens[screen].need_arrange)
arrange(screen);
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80