2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* layout.c - layout management
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-04-02 07:44:18 +02:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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>
|
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"
|
2008-01-07 21:00:04 +01:00
|
|
|
#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"
|
2007-12-16 13:22:13 +01:00
|
|
|
#include "layouts/tile.h"
|
|
|
|
#include "layouts/max.h"
|
|
|
|
#include "layouts/fibonacci.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "layouts/floating.h"
|
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2008-01-16 09:02:25 +01:00
|
|
|
#include "layoutgen.h"
|
2007-12-16 13:22:13 +01:00
|
|
|
|
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
|
|
|
*/
|
2008-01-17 19:17:53 +01:00
|
|
|
static void
|
2007-12-16 02:45:38 +01:00
|
|
|
arrange(int screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
Client *c;
|
2008-02-12 10:09:36 +01:00
|
|
|
Layout *curlay = layout_get_current(screen);
|
2008-03-21 16:50:17 +01:00
|
|
|
int phys_screen = screen_virttophys(screen);
|
|
|
|
xcb_query_pointer_reply_t *xqp;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2007-09-16 12:23:07 +02:00
|
|
|
{
|
2008-01-16 19:01:30 +01:00
|
|
|
if(client_isvisible(c, screen) && !c->newcomer)
|
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 */
|
2008-01-16 19:01:30 +01:00
|
|
|
else if(c->screen == screen || c->newcomer)
|
2007-10-26 19:50:39 +02:00
|
|
|
client_ban(c);
|
2007-09-16 12:23:07 +02:00
|
|
|
}
|
2007-10-26 23:19:13 +02:00
|
|
|
|
2008-01-20 17:10:47 +01:00
|
|
|
curlay->arrange(screen);
|
2008-01-20 17:10:12 +01:00
|
|
|
|
2008-01-16 19:01:30 +01:00
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
|
|
if(c->newcomer && client_isvisible(c, screen))
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
c->newcomer = false;
|
2008-01-16 19:01:30 +01:00
|
|
|
client_unban(c);
|
2008-05-02 11:02:22 +02:00
|
|
|
if(globalconf.screens[screen].new_get_focus
|
|
|
|
&& !c->skip
|
|
|
|
&& (!globalconf.focus->client || !globalconf.focus->client->ismax))
|
2008-03-21 16:50:17 +01:00
|
|
|
client_focus(c, screen, true);
|
2008-05-02 11:02:22 +02:00
|
|
|
else if(globalconf.focus->client && globalconf.focus->client->ismax)
|
|
|
|
client_stack(globalconf.focus->client);
|
2008-01-16 19:01:30 +01:00
|
|
|
}
|
2008-01-20 17:10:12 +01:00
|
|
|
|
2008-01-25 22:50:18 +01:00
|
|
|
/* if we have a valid client that could be focused but currently no window
|
|
|
|
* are focused, then set the focus on this window */
|
2008-04-09 17:15:44 +02:00
|
|
|
if((c = focus_get_current_client(screen)) && globalconf.focus->client != c)
|
2008-03-21 16:50:17 +01:00
|
|
|
client_focus(c, screen, true);
|
2008-01-25 22:50:18 +01:00
|
|
|
|
2008-02-04 14:16:14 +01:00
|
|
|
/* check that the mouse is on a window or not */
|
2008-03-21 16:50:17 +01:00
|
|
|
if((xqp = xcb_query_pointer_reply(globalconf.connection,
|
|
|
|
xcb_query_pointer_unchecked(globalconf.connection,
|
|
|
|
root_window(globalconf.connection,
|
|
|
|
phys_screen)),
|
|
|
|
NULL)) != NULL
|
|
|
|
&& (xqp->root == XCB_NONE || xqp->child == XCB_NONE || xqp->root == xqp->child))
|
2008-03-30 12:18:06 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
window_root_grabbuttons(phys_screen);
|
|
|
|
globalconf.pointer_x = xqp->root_x;
|
|
|
|
globalconf.pointer_y = xqp->root_y;
|
2008-03-30 12:18:06 +02:00
|
|
|
}
|
2008-03-28 20:04:52 +01:00
|
|
|
|
2008-01-17 19:17:53 +01:00
|
|
|
/* reset status */
|
2008-03-21 16:50:17 +01:00
|
|
|
globalconf.screens[screen].need_arrange = false;
|
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
|
|
|
|
*/
|
2008-01-25 12:55:44 +01:00
|
|
|
int
|
2008-01-17 19:17:53 +01:00
|
|
|
layout_refresh(void)
|
|
|
|
{
|
|
|
|
int screen;
|
2008-01-25 12:55:44 +01:00
|
|
|
int arranged = 0;
|
2008-01-17 19:17:53 +01:00
|
|
|
|
2008-03-13 09:28:21 +01:00
|
|
|
for(screen = 0; screen < globalconf.screens_info->nscreen; screen++)
|
2008-01-17 19:17:53 +01:00
|
|
|
if(globalconf.screens[screen].need_arrange)
|
|
|
|
{
|
|
|
|
arrange(screen);
|
2008-01-25 12:55:44 +01:00
|
|
|
arranged++;
|
2008-01-17 19:17:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return arranged;
|
|
|
|
}
|
2008-01-06 11:35:51 +01:00
|
|
|
|
2008-03-06 16:03:01 +01:00
|
|
|
/** Get current layout used on screen
|
|
|
|
* \param screen screen id
|
|
|
|
* \return layout used on that screen
|
|
|
|
*/
|
2008-01-06 11:35:51 +01:00
|
|
|
Layout *
|
2008-02-12 10:09:36 +01:00
|
|
|
layout_get_current(int screen)
|
2008-01-06 11:35:51 +01:00
|
|
|
{
|
2008-01-29 08:31:13 +01:00
|
|
|
Tag **curtags = tags_get_current(screen);
|
2008-01-06 11:35:51 +01:00
|
|
|
Layout *l = curtags[0]->layout;
|
|
|
|
p_delete(&curtags);
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
2008-04-10 23:37:22 +02:00
|
|
|
/** Set the layout of the current tag.
|
2008-04-08 09:45:48 +02:00
|
|
|
* Argument must be a relative or absolute integer of available layouts.
|
2007-12-19 04:39:59 +01:00
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Layout specifier
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_setlayout(int screen, char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Layout *l = globalconf.screens[screen].layouts;
|
2007-12-27 12:56:04 +01:00
|
|
|
Tag *tag, **curtags;
|
2007-12-14 17:57:05 +01:00
|
|
|
int i;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-02 14:28:39 +02:00
|
|
|
if(arg)
|
|
|
|
{
|
2008-01-29 08:31:13 +01:00
|
|
|
curtags = tags_get_current(screen);
|
2007-12-27 12:56:04 +01:00
|
|
|
for(i = 0; l && l != curtags[0]->layout; i++, l = l->next);
|
|
|
|
p_delete(&curtags);
|
2008-01-11 10:32:44 +01:00
|
|
|
|
2007-12-14 17:57:05 +01:00
|
|
|
if(!l)
|
2007-10-02 14:28:39 +02:00
|
|
|
i = 0;
|
2008-01-11 10:32:44 +01:00
|
|
|
|
|
|
|
i = compute_new_value_from_arg(arg, (double) i);
|
|
|
|
|
|
|
|
if(i >= 0)
|
|
|
|
for(l = globalconf.screens[screen].layouts; l && i > 0; i--)
|
|
|
|
l = l->next;
|
|
|
|
else
|
|
|
|
for(l = globalconf.screens[screen].layouts; l && i < 0; i++)
|
2008-01-12 22:15:06 +01:00
|
|
|
l = layout_list_prev_cycle(&globalconf.screens[screen].layouts, l);
|
2008-01-11 10:32:44 +01:00
|
|
|
|
2007-12-14 17:57:05 +01:00
|
|
|
if(!l)
|
2007-12-16 02:45:38 +01:00
|
|
|
l = globalconf.screens[screen].layouts;
|
2007-10-02 14:28:39 +02:00
|
|
|
}
|
2007-10-02 14:22:51 +02:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2007-12-14 19:02:38 +01:00
|
|
|
if(tag->selected)
|
|
|
|
tag->layout = l;
|
2007-10-03 17:26:14 +02:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
if(globalconf.focus->client)
|
|
|
|
arrange(screen);
|
2008-01-11 10:22:36 +01:00
|
|
|
|
|
|
|
widget_invalidate_cache(screen, WIDGET_CACHE_LAYOUTS);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|