awesome/layout.c

319 lines
9.6 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"
#include "util.h"
#include "statusbar.h"
2007-09-05 20:15:00 +02:00
#include "layouts/floating.h"
/** Find the index of the first currently selected tag
* \param tags the array of tags to search
* \param ntags number of elements in above array
* \return tag
*/
Tag *
get_current_tag(Tag *tags, int ntags)
{
int i;
for(i = 0; i < ntags; i++)
if(tags[i].selected == True)
return &tags[i];
return NULL;
}
2007-10-03 00:33:16 +02:00
/** Arrange windows following current selected layout
* \param disp display ref
* \param awesomeconf awesome config
*/
2007-09-05 20:15:00 +02:00
void
2007-10-15 18:23:05 +02:00
arrange(awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
Client *c;
Tag *curtag = get_current_tag(awesomeconf->tags, awesomeconf->ntags);
2007-09-05 20:15:00 +02:00
2007-10-11 21:50:32 +02:00
for(c = *awesomeconf->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-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 == awesomeconf->screen)
2007-10-26 19:50:39 +02:00
client_ban(c);
2007-09-16 12:23:07 +02:00
}
curtag->layout->arrange(awesomeconf);
focus(curtag->client_sel, True, awesomeconf);
2007-10-15 18:28:07 +02:00
restack(awesomeconf);
2007-09-05 20:15:00 +02:00
}
Layout *
get_current_layout(Tag *tags, int ntags)
{
Tag *curtag;
if ((curtag = get_current_tag(tags, ntags)))
return curtag->layout;
return NULL;
}
2007-09-05 20:15:00 +02:00
void
2007-11-14 18:10:51 +01:00
uicb_client_focusnext(awesome_config * awesomeconf,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
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-10-11 21:50:32 +02:00
for(c = *awesomeconf->clients; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->next);
2007-09-05 20:15:00 +02:00
if(c)
{
2007-10-15 18:25:29 +02:00
focus(c, True, awesomeconf);
2007-10-15 18:28:07 +02:00
restack(awesomeconf);
2007-09-05 20:15:00 +02:00
}
}
void
2007-11-14 18:10:51 +01:00
uicb_client_focusprev(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
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)
{
2007-10-11 21:50:32 +02:00
for(c = *awesomeconf->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)
{
2007-10-15 18:25:29 +02:00
focus(c, True, awesomeconf);
2007-10-15 18:28:07 +02:00
restack(awesomeconf);
2007-09-05 20:15:00 +02:00
}
}
void
loadawesomeprops(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
if(xgettextprop(awesomeconf->display, RootWindow(awesomeconf->display, awesomeconf->phys_screen),
AWESOMEPROPS_ATOM(awesomeconf->display), prop, awesomeconf->ntags + 1))
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags && prop[i]; i++)
if(prop[i] == '1')
awesomeconf->tags[i].selected = True;
else
awesomeconf->tags[i].selected = False;
2007-09-07 11:12:36 +02:00
p_delete(&prop);
2007-09-05 20:15:00 +02:00
}
void
2007-10-15 18:28:07 +02:00
restack(awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
Client *c, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
2007-09-05 20:15:00 +02:00
XEvent ev;
XWindowChanges wc;
drawstatusbar(awesomeconf);
if(!sel)
2007-09-05 20:15:00 +02:00
return;
2007-10-12 16:03:18 +02:00
if(awesomeconf->allow_lower_floats)
XRaiseWindow(awesomeconf->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(awesomeconf->tags, awesomeconf->ntags)->arrange == layout_floating)
XRaiseWindow(sel->display, sel->win);
if(!(get_current_layout(awesomeconf->tags, awesomeconf->ntags)->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 = awesomeconf->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 = *awesomeconf->clients; c; c = c->next)
{
if(!IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags) || c == sel)
2007-10-12 16:03:18 +02:00
continue;
2007-10-15 18:28:07 +02:00
XConfigureWindow(awesomeconf->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(awesomeconf->focus_move_pointer)
XWarpPointer(awesomeconf->display, None, sel->win, 0, 0, 0, 0, sel->w / 2, sel->h / 2);
2007-10-15 18:28:07 +02:00
XSync(awesomeconf->display, False);
while(XCheckMaskEvent(awesomeconf->display, EnterWindowMask, &ev));
2007-09-05 20:15:00 +02:00
}
void
saveawesomeprops(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';
XChangeProperty(awesomeconf->display, RootWindow(awesomeconf->display, awesomeconf->phys_screen),
AWESOMEPROPS_ATOM(awesomeconf->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
2007-11-14 18:19:00 +01:00
uicb_tag_setlayout(awesome_config * awesomeconf,
2007-09-12 18:11:27 +02:00
const char *arg)
2007-09-05 20:15:00 +02:00
{
int i, j;
2007-09-05 20:15:00 +02:00
if(arg)
{
/* compute current index */
for(i = 0; i < awesomeconf->nlayouts &&
&awesomeconf->layouts[i] != get_current_layout(awesomeconf->tags, awesomeconf->ntags); i++);
i = compute_new_value_from_arg(arg, (double) i);
if(i >= awesomeconf->nlayouts)
i = 0;
else if(i < 0)
i = awesomeconf->nlayouts - 1;
}
else
i = 0;
for(j = 0; j < awesomeconf->ntags; j++)
if (awesomeconf->tags[j].selected)
awesomeconf->tags[j].layout = &awesomeconf->layouts[i];
if(get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel)
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
2007-09-05 20:15:00 +02:00
else
drawstatusbar(awesomeconf);
2007-09-05 20:15:00 +02:00
saveawesomeprops(awesomeconf);
2007-09-05 20:15:00 +02:00
}
static void
2007-10-10 14:09:36 +02:00
maximize(int x, int y, int w, int h, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
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, awesomeconf, 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, awesomeconf, 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
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
2007-09-05 20:15:00 +02:00
}
void
2007-11-14 18:10:51 +01:00
uicb_client_togglemax(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
2007-10-11 23:32:29 +02:00
ScreenInfo *si = get_screen_info(awesomeconf->display, 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,
2007-10-10 14:09:36 +02:00
awesomeconf);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
2007-11-14 18:10:51 +01:00
uicb_client_toggleverticalmax(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
2007-10-11 23:32:29 +02:00
ScreenInfo *si = get_screen_info(awesomeconf->display, awesomeconf->screen, &awesomeconf->statusbar);
if(sel)
maximize(sel->x,
2007-10-11 23:12:05 +02:00
si[awesomeconf->screen].y_org,
sel->w,
2007-10-11 23:12:05 +02:00
si[awesomeconf->screen].height - 2 * awesomeconf->borderpx,
2007-10-10 14:09:36 +02:00
awesomeconf);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
2007-11-14 18:10:51 +01:00
uicb_client_togglehorizontalmax(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
2007-10-11 23:32:29 +02:00
ScreenInfo *si = get_screen_info(awesomeconf->display, awesomeconf->screen, &awesomeconf->statusbar);
if(sel)
2007-10-11 23:12:05 +02:00
maximize(si[awesomeconf->screen].x_org,
sel->y,
2007-10-11 23:12:05 +02:00
si[awesomeconf->screen].height - 2 * awesomeconf->borderpx,
sel->h,
2007-10-10 14:09:36 +02:00
awesomeconf);
p_delete(&si);
2007-09-05 20:15:00 +02:00
}
void
2007-11-14 18:10:51 +01:00
uicb_client_zoom(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
{
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
if(*awesomeconf->clients == sel)
for(sel = sel->next; sel && !isvisible(sel, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); sel = sel->next);
if(!sel)
2007-09-05 20:15:00 +02:00
return;
client_detach(awesomeconf->clients, sel);
client_attach(awesomeconf->clients, sel);
focus(sel, True, awesomeconf);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
}
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