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
|
|
|
*
|
|
|
|
* Copyright © 2007 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 <X11/Xatom.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
|
|
|
#include "tag.h"
|
2007-12-14 16:15:40 +01:00
|
|
|
#include "util.h"
|
2007-11-17 20:53:31 +01:00
|
|
|
#include "xutil.h"
|
2007-12-14 21:51:54 +01:00
|
|
|
#include "focus.h"
|
2007-09-15 15:16:53 +02:00
|
|
|
#include "statusbar.h"
|
2007-12-27 18:42:20 +01:00
|
|
|
#include "ewmh.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
|
|
|
|
2007-12-16 13:22:13 +01:00
|
|
|
const NameFuncLink LayoutsList[] =
|
|
|
|
{
|
|
|
|
{"tile", layout_tile},
|
|
|
|
{"tileleft", layout_tileleft},
|
|
|
|
{"max", layout_max},
|
|
|
|
{"spiral", layout_spiral},
|
|
|
|
{"dwindle", layout_dwindle},
|
|
|
|
{"floating", layout_floating},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
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
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2007-12-16 02:45:38 +01:00
|
|
|
arrange(int screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
Client *c;
|
2007-12-27 12:56:04 +01:00
|
|
|
Tag **curtags = get_current_tags(screen);
|
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
|
|
|
{
|
2007-12-16 02:45:38 +01: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 */
|
2007-12-11 20:56:51 +01:00
|
|
|
else if(c->screen == screen)
|
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
|
|
|
|
2007-12-27 12:56:04 +01:00
|
|
|
curtags[0]->layout->arrange(screen);
|
2007-12-27 19:57:46 +01:00
|
|
|
focus(focus_get_current_client(screen), True, screen);
|
2007-12-27 12:56:04 +01:00
|
|
|
p_delete(&curtags);
|
2007-12-16 02:45:38 +01:00
|
|
|
restack(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-01-06 11:35:51 +01:00
|
|
|
|
|
|
|
Layout *
|
|
|
|
get_current_layout(int screen)
|
|
|
|
{
|
|
|
|
Tag **curtags = get_current_tags(screen);
|
|
|
|
Layout *l = curtags[0]->layout;
|
|
|
|
p_delete(&curtags);
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
2007-12-19 04:39:59 +01:00
|
|
|
/** Send focus to next client in stack
|
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_focusnext(int screen, char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *c, *sel = globalconf.focus->client;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-12-28 13:43:47 +01:00
|
|
|
for(c = sel->next; c && (c->skip || !client_isvisible(c, screen)); c = c->next);
|
2007-09-05 20:15:00 +02:00
|
|
|
if(!c)
|
2007-12-28 13:43:47 +01:00
|
|
|
for(c = globalconf.clients; c && (c->skip || !client_isvisible(c, screen)); c = c->next);
|
2007-09-05 20:15:00 +02:00
|
|
|
if(c)
|
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
focus(c, True, screen);
|
|
|
|
restack(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-19 04:39:59 +01:00
|
|
|
/** Send focus to previous client in stack
|
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_focusprev(int screen, char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *c, *sel = globalconf.focus->client;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-12-28 13:43:47 +01:00
|
|
|
for(c = sel->prev; c && (c->skip || !client_isvisible(c, screen)); c = c->prev);
|
2007-09-05 20:15:00 +02:00
|
|
|
if(!c)
|
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
for(c = globalconf.clients; c && c->next; c = c->next);
|
2007-12-28 13:43:47 +01:00
|
|
|
for(; c && (c->skip || !client_isvisible(c, screen)); c = c->prev);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
if(c)
|
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
focus(c, True, screen);
|
|
|
|
restack(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-16 02:45:38 +01:00
|
|
|
loadawesomeprops(int screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
int i, ntags = 0;
|
2007-09-07 11:12:36 +02:00
|
|
|
char *prop;
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *tag;
|
2007-09-05 20:15:00 +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
|
|
|
ntags++;
|
2007-09-07 11:12:36 +02:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
prop = p_new(char, ntags + 1);
|
|
|
|
|
2008-01-06 22:53:40 +01:00
|
|
|
if(xgettextprop(RootWindow(globalconf.display, get_phys_screen(screen)),
|
2008-01-06 22:55:46 +01:00
|
|
|
XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False),
|
|
|
|
prop, ntags + 1))
|
2007-12-16 02:45:38 +01:00
|
|
|
for(i = 0, tag = globalconf.screens[screen].tags; tag && prop[i]; i++, tag = tag->next)
|
2007-10-10 18:47:58 +02:00
|
|
|
if(prop[i] == '1')
|
2007-12-14 19:02:38 +01:00
|
|
|
tag->selected = True;
|
2007-10-10 18:47:58 +02:00
|
|
|
else
|
2007-12-14 19:02:38 +01:00
|
|
|
tag->selected = False;
|
2007-09-07 11:12:36 +02:00
|
|
|
|
|
|
|
p_delete(&prop);
|
2007-12-27 18:42:20 +01:00
|
|
|
|
|
|
|
ewmh_update_net_current_desktop(get_phys_screen(screen));
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-16 02:45:38 +01:00
|
|
|
restack(int screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *c, *sel = globalconf.focus->client;
|
2007-09-05 20:15:00 +02:00
|
|
|
XEvent ev;
|
|
|
|
XWindowChanges wc;
|
2007-12-27 12:56:04 +01:00
|
|
|
Tag **curtags;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-30 21:00:34 +01:00
|
|
|
statusbar_draw_all(screen);
|
2007-12-27 12:56:04 +01:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-12-27 12:56:04 +01:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
if(globalconf.screens[screen].allow_lower_floats)
|
|
|
|
XRaiseWindow(globalconf.display, sel->win);
|
2007-10-12 16:03:18 +02:00
|
|
|
else
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-27 12:56:04 +01:00
|
|
|
curtags = get_current_tags(screen);
|
2007-10-26 23:19:13 +02:00
|
|
|
if(sel->isfloating ||
|
2007-12-27 12:56:04 +01:00
|
|
|
curtags[0]->layout->arrange == layout_floating)
|
2007-12-27 23:10:43 +01:00
|
|
|
XRaiseWindow(globalconf.display, sel->win);
|
2007-12-27 12:56:04 +01:00
|
|
|
if(!(curtags[0]->layout->arrange == layout_floating))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-10-12 16:03:18 +02:00
|
|
|
wc.stack_mode = Below;
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel->isfloating)
|
2007-12-30 21:00:34 +01:00
|
|
|
XConfigureWindow(globalconf.display, sel->win, CWStackMode, &wc);
|
2007-12-16 02:45:38 +01:00
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2007-10-12 16:03:18 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
if(!IS_TILED(c, screen) || c == sel)
|
2007-10-12 16:03:18 +02:00
|
|
|
continue;
|
2007-12-30 21:00:34 +01:00
|
|
|
XConfigureWindow(globalconf.display, c->win, CWStackMode, &wc);
|
2007-10-12 16:03:18 +02:00
|
|
|
}
|
2007-09-07 14:58:17 +02:00
|
|
|
}
|
2007-12-27 12:56:04 +01:00
|
|
|
p_delete(&curtags);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2007-12-16 02:45:38 +01:00
|
|
|
if(globalconf.screens[screen].focus_move_pointer)
|
2008-01-05 19:38:50 +01:00
|
|
|
XWarpPointer(globalconf.display, None, sel->win, 0, 0, 0, 0,
|
|
|
|
sel->geometry.width / 2, sel->geometry.height / 2);
|
2007-12-16 02:45:38 +01:00
|
|
|
XSync(globalconf.display, False);
|
|
|
|
while(XCheckMaskEvent(globalconf.display, EnterWindowMask, &ev));
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-16 02:45:38 +01:00
|
|
|
saveawesomeprops(int screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
int i, ntags = 0;
|
2007-09-07 11:14:43 +02:00
|
|
|
char *prop;
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *tag;
|
|
|
|
|
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
|
|
|
ntags++;
|
|
|
|
|
|
|
|
prop = p_new(char, ntags + 1);
|
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
for(i = 0, tag = globalconf.screens[screen].tags; tag; tag = tag->next, i++)
|
2007-12-14 19:02:38 +01:00
|
|
|
prop[i] = tag->selected ? '1' : '0';
|
2007-09-06 21:58:46 +02:00
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
prop[i] = '\0';
|
2007-12-16 02:45:38 +01:00
|
|
|
XChangeProperty(globalconf.display,
|
2007-12-18 09:02:08 +01:00
|
|
|
RootWindow(globalconf.display, get_phys_screen(screen)),
|
2008-01-06 22:55:46 +01:00
|
|
|
XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False),
|
|
|
|
XA_STRING, 8, PropModeReplace, (unsigned char *) prop, i);
|
2007-09-07 11:14:43 +02:00
|
|
|
p_delete(&prop);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-12-19 04:39:59 +01:00
|
|
|
/** Set layout for tag
|
|
|
|
* \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)
|
|
|
|
{
|
2007-12-27 12:56:04 +01:00
|
|
|
curtags = get_current_tags(screen);
|
|
|
|
for(i = 0; l && l != curtags[0]->layout; i++, l = l->next);
|
|
|
|
p_delete(&curtags);
|
2007-12-14 17:57:05 +01:00
|
|
|
if(!l)
|
2007-10-02 14:28:39 +02:00
|
|
|
i = 0;
|
2007-12-14 17:57:05 +01:00
|
|
|
for(i = compute_new_value_from_arg(arg, (double) i),
|
2007-12-16 02:45:38 +01:00
|
|
|
l = globalconf.screens[screen].layouts; l && i > 0; i--)
|
2007-12-14 17:57:05 +01:00
|
|
|
l = l->next;
|
|
|
|
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);
|
2007-09-05 20:15:00 +02:00
|
|
|
else
|
2007-12-30 21:00:34 +01:00
|
|
|
statusbar_draw_all(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
saveawesomeprops(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-01-07 13:38:26 +01:00
|
|
|
/** Toggle floating state of a client
|
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
uicb_client_togglefloating(int screen, char *arg)
|
|
|
|
{
|
|
|
|
Client *sel = globalconf.focus->client;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if((sel->isfloating = !sel->isfloating))
|
|
|
|
{
|
|
|
|
if(!arg)
|
|
|
|
client_resize(sel, sel->f_geometry, False);
|
|
|
|
}
|
|
|
|
else if(sel->ismax)
|
|
|
|
client_resize(sel, sel->m_geometry, False);
|
|
|
|
|
|
|
|
client_saveprops(sel);
|
|
|
|
arrange(screen);
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|