2 * layout.c - layout management
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <X11/Xatom.h>
23 #include <X11/Xutil.h>
29 #include "statusbar.h"
30 #include "layouts/floating.h"
33 extern Client
*clients
, *sel
; /* global client list */
36 arrange(Display
* disp
, DC
*drawcontext
, awesome_config
*awesomeconf
)
40 for(c
= clients
; c
; c
= c
->next
)
42 if(isvisible(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
))
44 /* we don't touch other screens windows */
45 else if(c
->screen
== awesomeconf
->screen
)
48 awesomeconf
->current_layout
->arrange(disp
, awesomeconf
);
49 focus(disp
, drawcontext
, NULL
, True
, awesomeconf
);
50 restack(disp
, drawcontext
, awesomeconf
);
54 uicb_focusnext(Display
*disp
__attribute__ ((unused
)),
56 awesome_config
* awesomeconf
,
57 const char *arg
__attribute__ ((unused
)))
63 for(c
= sel
->next
; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
); c
= c
->next
);
65 for(c
= clients
; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
); c
= c
->next
);
68 focus(c
->display
, drawcontext
, c
, True
, awesomeconf
);
69 restack(c
->display
, drawcontext
, awesomeconf
);
74 uicb_focusprev(Display
*disp
__attribute__ ((unused
)),
76 awesome_config
*awesomeconf
,
77 const char *arg
__attribute__ ((unused
)))
83 for(c
= sel
->prev
; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
); c
= c
->prev
);
86 for(c
= clients
; c
&& c
->next
; c
= c
->next
);
87 for(; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
); c
= c
->prev
);
91 focus(c
->display
, drawcontext
, c
, True
, awesomeconf
);
92 restack(c
->display
, drawcontext
, awesomeconf
);
97 loadawesomeprops(Display
*disp
, awesome_config
* awesomeconf
)
102 prop
= p_new(char, awesomeconf
->ntags
+ 1);
104 if(xgettextprop(disp
, RootWindow(disp
, awesomeconf
->screen
), AWESOMEPROPS_ATOM(disp
), prop
, awesomeconf
->ntags
+ 1))
105 for(i
= 0; i
< awesomeconf
->ntags
&& prop
[i
]; i
++)
106 awesomeconf
->tags
[i
].selected
= prop
[i
] == '1';
112 restack(Display
* disp
, DC
* drawcontext
, awesome_config
*awesomeconf
)
118 drawstatusbar(disp
, drawcontext
, awesomeconf
);
121 if(sel
->isfloating
|| IS_ARRANGE(layout_floating
))
122 XRaiseWindow(disp
, sel
->win
);
123 if(!IS_ARRANGE(layout_floating
))
125 wc
.stack_mode
= Below
;
126 wc
.sibling
= awesomeconf
->statusbar
.window
;
129 XConfigureWindow(disp
, sel
->win
, CWSibling
| CWStackMode
, &wc
);
130 wc
.sibling
= sel
->win
;
132 for(c
= clients
; c
; c
= c
->next
)
134 if(!IS_TILED(c
, awesomeconf
->screen
, awesomeconf
->tags
, awesomeconf
->ntags
) || c
== sel
)
136 XConfigureWindow(disp
, c
->win
, CWSibling
| CWStackMode
, &wc
);
141 while(XCheckMaskEvent(disp
, EnterWindowMask
, &ev
));
145 saveawesomeprops(Display
*disp
, awesome_config
*awesomeconf
)
150 prop
= p_new(char, awesomeconf
->ntags
+ 1);
151 for(i
= 0; i
< awesomeconf
->ntags
; i
++)
152 prop
[i
] = awesomeconf
->tags
[i
].selected
? '1' : '0';
154 XChangeProperty(disp
, RootWindow(disp
, awesomeconf
->screen
),
155 AWESOMEPROPS_ATOM(disp
), XA_STRING
, 8,
156 PropModeReplace
, (unsigned char *) prop
, i
);
161 uicb_setlayout(Display
*disp
,
163 awesome_config
* awesomeconf
,
171 if(!(++awesomeconf
->current_layout
)->symbol
)
172 awesomeconf
->current_layout
= awesomeconf
->layouts
;
176 i
= strtol(arg
, NULL
, 10);
177 if(i
< 0 || i
>= awesomeconf
->nlayouts
)
179 awesomeconf
->current_layout
= &awesomeconf
->layouts
[i
];
182 for(c
= clients
; c
; c
= c
->next
)
186 arrange(disp
, drawcontext
, awesomeconf
);
188 drawstatusbar(disp
, drawcontext
, awesomeconf
);
190 saveawesomeprops(disp
, awesomeconf
);
192 for(j
= 0; j
< awesomeconf
->ntags
; j
++)
193 if (awesomeconf
->tags
[j
].selected
)
194 awesomeconf
->tags
[j
].layout
= awesomeconf
->current_layout
;
198 maximize(int x
, int y
, int w
, int h
, DC
*drawcontext
, awesome_config
*awesomeconf
)
203 if((sel
->ismax
= !sel
->ismax
))
205 sel
->wasfloating
= sel
->isfloating
;
206 sel
->isfloating
= True
;
211 resize(sel
, x
, y
, w
, h
, awesomeconf
, True
);
213 else if(sel
->wasfloating
)
214 resize(sel
, sel
->rx
, sel
->ry
, sel
->rw
, sel
->rh
, awesomeconf
, True
);
216 sel
->isfloating
= False
;
218 arrange(sel
->display
, drawcontext
, awesomeconf
);
222 uicb_togglemax(Display
*disp
,
224 awesome_config
*awesomeconf
,
225 const char *arg
__attribute__ ((unused
)))
228 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, &awesomeconf
->statusbar
, &dummy
);
230 maximize(si
[awesomeconf
->screen
].x_org
, si
[awesomeconf
->screen
].y_org
,
231 si
[awesomeconf
->screen
].width
- 2 * awesomeconf
->borderpx
,
232 si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
,
233 drawcontext
, awesomeconf
);
238 uicb_toggleverticalmax(Display
*disp
,
240 awesome_config
*awesomeconf
,
241 const char *arg
__attribute__ ((unused
)))
244 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, &awesomeconf
->statusbar
, &dummy
);
247 maximize(sel
->x
, si
[awesomeconf
->screen
].y_org
,
248 sel
->w
, si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
,
249 drawcontext
, awesomeconf
);
255 uicb_togglehorizontalmax(Display
*disp
,
257 awesome_config
*awesomeconf
,
258 const char *arg
__attribute__ ((unused
)))
261 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, &awesomeconf
->statusbar
, &dummy
);
264 maximize(si
[awesomeconf
->screen
].x_org
, sel
->y
,
265 si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
, sel
->h
,
266 drawcontext
, awesomeconf
);
271 uicb_zoom(Display
*disp
__attribute__ ((unused
)),
272 DC
*drawcontext
__attribute__ ((unused
)),
273 awesome_config
*awesomeconf
,
274 const char *arg
__attribute__ ((unused
)))
280 focus(sel
->display
, drawcontext
, sel
, True
, awesomeconf
);
281 arrange(sel
->display
, drawcontext
, awesomeconf
);