awesome/layout.c

343 lines
9.1 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* layout.c - layout management
*
* 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 "screen.h"
2007-09-05 20:15:00 +02:00
#include "layout.h"
#include "tag.h"
2007-12-14 16:15:40 +01:00
#include "util.h"
#include "xutil.h"
2007-12-14 21:51:54 +01:00
#include "focus.h"
#include "statusbar.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_config globalconf;
const NameFuncLink LayoutsList[] =
{
{"tile", layout_tile},
{"tileleft", layout_tileleft},
{"max", layout_max},
{"spiral", layout_spiral},
{"dwindle", layout_dwindle},
{"floating", layout_floating},
{NULL, NULL}
};
/** Find the index of the first currently selected tag
* \param screen the screen to search
* \return tag
*/
2007-12-16 18:15:07 +01:00
#warning this function is bugged and should be replaced
Tag *
get_current_tag(int screen)
{
Tag *tag;
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
if(tag->selected)
return tag;
return 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
arrange(int screen)
2007-09-05 20:15:00 +02:00
{
Client *c;
Tag *curtag = get_current_tag(screen);
2007-09-05 20:15:00 +02:00
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
}
curtag->layout->arrange(screen);
focus(focus_get_latest_client_for_tag(globalconf.focus, screen, curtag),
True, screen);
restack(screen);
2007-09-05 20:15:00 +02:00
}
Layout *
get_current_layout(int screen)
{
Tag *curtag;
if ((curtag = get_current_tag(screen)))
return curtag->layout;
return NULL;
}
2007-09-05 20:15:00 +02:00
void
uicb_client_focusnext(int screen, const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = globalconf.focus->client;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
for(c = sel->next; c && !client_isvisible(c, screen); c = c->next);
2007-09-05 20:15:00 +02:00
if(!c)
for(c = globalconf.clients; c && !client_isvisible(c, screen); c = c->next);
2007-09-05 20:15:00 +02:00
if(c)
{
focus(c, True, screen);
restack(screen);
2007-09-05 20:15:00 +02:00
}
}
void
uicb_client_focusprev(int screen, const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = globalconf.focus->client;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
for(c = sel->prev; c && !client_isvisible(c, screen); c = c->prev);
2007-09-05 20:15:00 +02:00
if(!c)
{
for(c = globalconf.clients; c && c->next; c = c->next);
for(; c && !client_isvisible(c, screen); c = c->prev);
2007-09-05 20:15:00 +02:00
}
if(c)
{
focus(c, True, screen);
restack(screen);
2007-09-05 20:15:00 +02:00
}
}
void
loadawesomeprops(int screen)
2007-09-05 20:15:00 +02:00
{
int i, ntags = 0;
2007-09-07 11:12:36 +02:00
char *prop;
Tag *tag;
2007-09-05 20:15:00 +02:00
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
ntags++;
2007-09-07 11:12:36 +02:00
prop = p_new(char, ntags + 1);
if(xgettextprop(globalconf.display,
RootWindow(globalconf.display, get_phys_screen(globalconf.display, screen)),
AWESOMEPROPS_ATOM(globalconf.display), prop, ntags + 1))
for(i = 0, tag = globalconf.screens[screen].tags; tag && prop[i]; i++, tag = tag->next)
if(prop[i] == '1')
tag->selected = True;
else
tag->selected = False;
2007-09-07 11:12:36 +02:00
p_delete(&prop);
2007-09-05 20:15:00 +02:00
}
void
restack(int screen)
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = globalconf.focus->client;
2007-09-05 20:15:00 +02:00
XEvent ev;
XWindowChanges wc;
statusbar_draw(screen);
if(!sel)
2007-09-05 20:15:00 +02:00
return;
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
{
if(sel->isfloating ||
get_current_layout(screen)->arrange == layout_floating)
XRaiseWindow(sel->display, sel->win);
if(!(get_current_layout(screen)->arrange == layout_floating))
2007-09-05 20:15:00 +02:00
{
2007-10-12 16:03:18 +02:00
wc.stack_mode = Below;
wc.sibling = globalconf.screens[screen].statusbar.window;
if(!sel->isfloating)
2007-10-12 16:03:18 +02:00
{
XConfigureWindow(sel->display, sel->win, CWSibling | CWStackMode, &wc);
wc.sibling = sel->win;
2007-10-12 16:03:18 +02:00
}
for(c = globalconf.clients; c; c = c->next)
2007-10-12 16:03:18 +02:00
{
if(!IS_TILED(c, screen) || c == sel)
2007-10-12 16:03:18 +02:00
continue;
XConfigureWindow(globalconf.display, c->win, CWSibling | CWStackMode, &wc);
2007-10-12 16:03:18 +02:00
wc.sibling = c->win;
}
2007-09-07 14:58:17 +02:00
}
2007-09-05 20:15:00 +02:00
}
if(globalconf.screens[screen].focus_move_pointer)
XWarpPointer(globalconf.display, None, sel->win, 0, 0, 0, 0, sel->w / 2, sel->h / 2);
XSync(globalconf.display, False);
while(XCheckMaskEvent(globalconf.display, EnterWindowMask, &ev));
2007-09-05 20:15:00 +02:00
}
void
saveawesomeprops(int screen)
2007-09-05 20:15:00 +02:00
{
int i, ntags = 0;
2007-09-07 11:14:43 +02:00
char *prop;
Tag *tag;
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
ntags++;
prop = p_new(char, ntags + 1);
for(i = 0, tag = globalconf.screens[screen].tags; tag; tag = tag->next, i++)
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';
XChangeProperty(globalconf.display,
RootWindow(globalconf.display, get_phys_screen(globalconf.display, screen)),
AWESOMEPROPS_ATOM(globalconf.display), 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
}
void
uicb_tag_setlayout(int screen, const char *arg)
2007-09-05 20:15:00 +02:00
{
Layout *l = globalconf.screens[screen].layouts;
Tag *tag;
2007-12-14 17:57:05 +01:00
int i;
2007-09-05 20:15:00 +02:00
if(arg)
{
for(i = 0; l && l != get_current_layout(screen); i++, l = l->next);
2007-12-14 17:57:05 +01:00
if(!l)
i = 0;
2007-12-14 17:57:05 +01:00
for(i = compute_new_value_from_arg(arg, (double) i),
l = globalconf.screens[screen].layouts; l && i > 0; i--)
2007-12-14 17:57:05 +01:00
l = l->next;
if(!l)
l = globalconf.screens[screen].layouts;
}
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
if(tag->selected)
tag->layout = l;
if(globalconf.focus->client)
arrange(screen);
2007-09-05 20:15:00 +02:00
else
statusbar_draw(screen);
2007-09-05 20:15:00 +02:00
saveawesomeprops(screen);
2007-09-05 20:15:00 +02:00
}
static void
maximize(int x, int y, int w, int h, int screen)
2007-09-05 20:15:00 +02:00
{
Client *sel = globalconf.focus->client;
2007-10-22 11:24:26 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
2007-10-22 11:24:26 +02:00
if((sel->ismax = !sel->ismax))
2007-09-05 20:15:00 +02:00
{
2007-10-22 11:24:26 +02:00
sel->wasfloating = sel->isfloating;
sel->isfloating = True;
client_resize(sel, x, y, w, h, True, !sel->isfloating);
2007-09-05 20:15:00 +02:00
}
2007-10-22 11:24:26 +02:00
else if(sel->wasfloating)
client_resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True, False);
2007-09-05 20:15:00 +02:00
else
2007-10-22 11:24:26 +02:00
sel->isfloating = False;
2007-09-05 20:15:00 +02:00
arrange(screen);
2007-09-05 20:15:00 +02:00
}
void
uicb_client_togglemax(int screen, const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
ScreenInfo *si = get_screen_info(globalconf.display, screen, &globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding);
maximize(si[screen].x_org, si[screen].y_org,
si[screen].width - 2 * globalconf.screens[screen].borderpx,
si[screen].height - 2 * globalconf.screens[screen].borderpx,
screen);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
uicb_client_toggleverticalmax(int screen, const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *sel = globalconf.focus->client;
ScreenInfo *si = get_screen_info(globalconf.display, screen, &globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding);
if(sel)
maximize(sel->x,
si[screen].y_org,
sel->w,
si[screen].height - 2 * globalconf.screens[screen].borderpx,
screen);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
uicb_client_togglehorizontalmax(int screen, const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *sel = globalconf.focus->client;
ScreenInfo *si = get_screen_info(globalconf.display, screen, &globalconf.screens[screen].statusbar, &globalconf.screens[screen].padding);
if(sel)
maximize(si[screen].x_org,
sel->y,
si[screen].height - 2 * globalconf.screens[screen].borderpx,
sel->h,
screen);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
uicb_client_zoom(int screen,
2007-11-14 18:10:51 +01:00
const char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
if(globalconf.clients == sel)
for(sel = sel->next; sel && !client_isvisible(sel, screen); sel = sel->next);
if(!sel)
2007-09-05 20:15:00 +02:00
return;
client_detach(sel);
client_attach(sel);
focus(sel, True, screen);
arrange(screen);
}
2007-09-05 20:15:00 +02:00
2007-10-15 13:56:24 +02:00
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99