awesome/layout.c

280 lines
8.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-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"
#include "util.h"
#include "statusbar.h"
2007-09-05 20:15:00 +02:00
#include "layouts/floating.h"
/* extern */
extern Client *clients, *sel; /* global client list */
void
2007-09-17 13:45:13 +02:00
arrange(Display * disp, DC *drawcontext, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
Client *c;
for(c = clients; c; c = c->next)
2007-09-16 12:23:07 +02:00
{
2007-09-24 15:37:52 +02:00
if(isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags))
2007-09-05 20:15:00 +02:00
unban(c);
2007-09-17 13:45:13 +02:00
/* we don't touch other screens windows */
else if(c->screen == awesomeconf->screen)
2007-09-05 20:15:00 +02:00
ban(c);
2007-09-16 12:23:07 +02:00
}
awesomeconf->current_layout->arrange(disp, awesomeconf);
focus(disp, drawcontext, NULL, True, awesomeconf);
2007-09-17 13:45:13 +02:00
restack(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}
void
uicb_focusnext(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext,
2007-09-10 12:06:54 +02:00
awesome_config * awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
Client *c;
if(!sel)
return;
2007-09-24 15:37:52 +02:00
for(c = sel->next; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->next);
2007-09-05 20:15:00 +02:00
if(!c)
2007-09-24 15:37:52 +02:00
for(c = clients; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->next);
2007-09-05 20:15:00 +02:00
if(c)
{
focus(c->display, drawcontext, c, True, awesomeconf);
2007-09-17 13:45:13 +02:00
restack(c->display, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}
}
void
uicb_focusprev(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext,
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
Client *c;
if(!sel)
return;
2007-09-24 15:37:52 +02:00
for(c = sel->prev; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->prev);
2007-09-05 20:15:00 +02:00
if(!c)
{
for(c = clients; c && c->next; c = c->next);
2007-09-24 15:37:52 +02:00
for(; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->prev);
2007-09-05 20:15:00 +02:00
}
if(c)
{
focus(c->display, drawcontext, c, True, awesomeconf);
2007-09-17 13:45:13 +02:00
restack(c->display, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}
}
void
2007-09-17 14:02:28 +02:00
loadawesomeprops(Display *disp, awesome_config * awesomeconf)
2007-09-05 20:15:00 +02:00
{
int i;
2007-09-07 11:12:36 +02:00
char *prop;
2007-09-05 20:15:00 +02:00
2007-09-10 12:06:54 +02:00
prop = p_new(char, awesomeconf->ntags + 1);
2007-09-07 11:12:36 +02:00
2007-09-17 14:02:28 +02:00
if(xgettextprop(disp, RootWindow(disp, awesomeconf->screen), AWESOMEPROPS_ATOM(disp), prop, awesomeconf->ntags + 1))
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags && prop[i]; i++)
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = prop[i] == '1';
2007-09-07 11:12:36 +02:00
p_delete(&prop);
2007-09-05 20:15:00 +02:00
}
void
2007-09-17 13:45:13 +02:00
restack(Display * disp, DC * drawcontext, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
Client *c;
XEvent ev;
XWindowChanges wc;
drawstatusbar(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
if(!sel)
return;
if(sel->isfloating || IS_ARRANGE(layout_floating))
2007-09-05 20:15:00 +02:00
XRaiseWindow(disp, sel->win);
if(!IS_ARRANGE(layout_floating))
2007-09-05 20:15:00 +02:00
{
wc.stack_mode = Below;
2007-09-10 12:06:54 +02:00
wc.sibling = awesomeconf->statusbar.window;
2007-09-05 20:15:00 +02:00
if(!sel->isfloating)
{
XConfigureWindow(disp, sel->win, CWSibling | CWStackMode, &wc);
wc.sibling = sel->win;
}
for(c = clients; c; c = c->next)
2007-09-07 14:58:17 +02:00
{
2007-09-24 15:37:52 +02:00
if(!IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags) || c == sel)
2007-09-07 14:58:17 +02:00
continue;
XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc);
wc.sibling = c->win;
}
2007-09-05 20:15:00 +02:00
}
XSync(disp, False);
while(XCheckMaskEvent(disp, EnterWindowMask, &ev));
}
void
2007-09-17 14:02:28 +02:00
saveawesomeprops(Display *disp, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
int i;
2007-09-07 11:14:43 +02:00
char *prop;
2007-09-06 21:58:46 +02:00
2007-09-10 12:06:54 +02:00
prop = p_new(char, awesomeconf->ntags + 1);
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-24 15:37:52 +02:00
prop[i] = awesomeconf->tags[i].selected ? '1' : '0';
2007-09-05 20:15:00 +02:00
prop[i] = '\0';
2007-09-17 14:02:28 +02:00
XChangeProperty(disp, RootWindow(disp, awesomeconf->screen),
AWESOMEPROPS_ATOM(disp), 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
2007-09-12 18:11:27 +02:00
uicb_setlayout(Display *disp,
DC *drawcontext,
awesome_config * awesomeconf,
const char *arg)
2007-09-05 20:15:00 +02:00
{
int i;
2007-09-05 20:15:00 +02:00
Client *c;
if(arg)
{
for(i = 0; i < awesomeconf->nlayouts && &awesomeconf->layouts[i] != awesomeconf->current_layout; i++);
i = compute_new_value_from_arg(arg, (double) i);
if(i < 0 || i >= awesomeconf->nlayouts)
i = 0;
}
else
i = 0;
awesomeconf->current_layout = &awesomeconf->layouts[i];
2007-09-18 22:46:31 +02:00
2007-09-05 20:15:00 +02:00
for(c = clients; c; c = c->next)
c->ftview = True;
if(sel)
2007-09-17 13:45:13 +02:00
arrange(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
else
drawstatusbar(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
2007-09-17 14:02:28 +02:00
saveawesomeprops(disp, awesomeconf);
2007-09-05 20:15:00 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
if (awesomeconf->tags[i].selected)
awesomeconf->tags[i].layout = awesomeconf->current_layout;
2007-09-05 20:15:00 +02:00
}
static void
2007-09-20 22:25:10 +02:00
maximize(int x, int y, int w, int h, DC *drawcontext, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
if(!sel)
return;
if((sel->ismax = !sel->ismax))
{
sel->wasfloating = sel->isfloating;
sel->isfloating = True;
sel->rx = sel->x;
sel->ry = sel->y;
sel->rw = sel->w;
sel->rh = sel->h;
resize(sel, x, y, w, h, awesomeconf, True);
2007-09-05 20:15:00 +02:00
}
else if(sel->wasfloating)
resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, awesomeconf, True);
2007-09-05 20:15:00 +02:00
else
sel->isfloating = False;
2007-09-20 22:25:10 +02:00
arrange(sel->display, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}
void
uicb_togglemax(Display *disp,
2007-09-12 18:11:27 +02:00
DC *drawcontext,
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar);
2007-09-20 22:25:10 +02:00
maximize(si[awesomeconf->screen].x_org, si[awesomeconf->screen].y_org,
si[awesomeconf->screen].width - 2 * awesomeconf->borderpx,
si[awesomeconf->screen].height - 2 * awesomeconf->borderpx,
drawcontext, awesomeconf);
XFree(si);
2007-09-05 20:15:00 +02:00
}
void
uicb_toggleverticalmax(Display *disp,
2007-09-12 18:11:27 +02:00
DC *drawcontext,
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar);
2007-09-05 20:15:00 +02:00
if(sel)
2007-09-20 22:25:10 +02:00
maximize(sel->x, si[awesomeconf->screen].y_org,
sel->w, si[awesomeconf->screen].height - 2 * awesomeconf->borderpx,
drawcontext, awesomeconf);
XFree(si);
2007-09-05 20:15:00 +02:00
}
void
uicb_togglehorizontalmax(Display *disp,
2007-09-12 18:11:27 +02:00
DC *drawcontext,
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, &awesomeconf->statusbar);
2007-09-05 20:15:00 +02:00
if(sel)
2007-09-20 22:25:10 +02:00
maximize(si[awesomeconf->screen].x_org, sel->y,
si[awesomeconf->screen].height - 2 * awesomeconf->borderpx, sel->h,
drawcontext, awesomeconf);
XFree(si);
2007-09-05 20:15:00 +02:00
}
void
uicb_zoom(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext __attribute__ ((unused)),
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
2007-09-06 23:26:48 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
2007-09-06 23:26:48 +02:00
detach(sel);
attach(sel);
focus(sel->display, drawcontext, sel, True, awesomeconf);
2007-09-17 13:45:13 +02:00
arrange(sel->display, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}