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
->selected_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
->selected_tags
, awesomeconf
->ntags
); c
= c
->next
);
65 for(c
= clients
; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->selected_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
->selected_tags
, awesomeconf
->ntags
); c
= c
->prev
);
86 for(c
= clients
; c
&& c
->next
; c
= c
->next
);
87 for(; c
&& !isvisible(c
, awesomeconf
->screen
, awesomeconf
->selected_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
->selected_tags
[i
] = prop
[i
] == '1';
112 restack(Display
* disp
, DC
* drawcontext
, awesome_config
*awesomeconf
)
118 drawstatusbar(disp
, awesomeconf
->screen
, drawcontext
, awesomeconf
);
121 if(sel
->isfloating
|| IS_ARRANGE(floating
))
122 XRaiseWindow(disp
, sel
->win
);
123 if(!IS_ARRANGE(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
->selected_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
->selected_tags
[i
] ? '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
, awesomeconf
->screen
, drawcontext
, awesomeconf
);
190 saveawesomeprops(disp
, awesomeconf
);
192 for(j
= 0; j
< awesomeconf
->ntags
; j
++)
193 if (awesomeconf
->selected_tags
[j
])
194 awesomeconf
->tag_layouts
[j
] = awesomeconf
->current_layout
;
198 maximize(int x
, int y
, int w
, int h
, DC
*drawcontext
, awesome_config
*awesomeconf
)
205 if((sel
->ismax
= !sel
->ismax
))
207 sel
->wasfloating
= sel
->isfloating
;
208 sel
->isfloating
= True
;
213 resize(sel
, x
, y
, w
, h
, True
);
215 else if(sel
->isfloating
)
216 resize(sel
, sel
->rx
, sel
->ry
, sel
->rw
, sel
->rh
, True
);
218 sel
->isfloating
= False
;
220 drawstatusbar(sel
->display
, sel
->screen
, drawcontext
, awesomeconf
);
222 while(XCheckMaskEvent(sel
->display
, EnterWindowMask
, &ev
));
226 uicb_togglemax(Display
*disp
,
228 awesome_config
*awesomeconf
,
229 const char *arg
__attribute__ ((unused
)))
232 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, awesomeconf
->statusbar
, &dummy
);
234 maximize(si
[awesomeconf
->screen
].x_org
, si
[awesomeconf
->screen
].y_org
,
235 si
[awesomeconf
->screen
].width
- 2 * awesomeconf
->borderpx
,
236 si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
,
237 drawcontext
, awesomeconf
);
241 uicb_toggleverticalmax(Display
*disp
,
243 awesome_config
*awesomeconf
,
244 const char *arg
__attribute__ ((unused
)))
247 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, awesomeconf
->statusbar
, &dummy
);
250 maximize(sel
->x
, si
[awesomeconf
->screen
].y_org
,
251 sel
->w
, si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
,
252 drawcontext
, awesomeconf
);
257 uicb_togglehorizontalmax(Display
*disp
,
259 awesome_config
*awesomeconf
,
260 const char *arg
__attribute__ ((unused
)))
263 ScreenInfo
*si
= get_screen_info(disp
, awesomeconf
->screen
, awesomeconf
->statusbar
, &dummy
);
266 maximize(si
[awesomeconf
->screen
].x_org
, sel
->y
,
267 si
[awesomeconf
->screen
].height
- 2 * awesomeconf
->borderpx
, sel
->h
,
268 drawcontext
, awesomeconf
);
272 uicb_zoom(Display
*disp
__attribute__ ((unused
)),
273 DC
*drawcontext
__attribute__ ((unused
)),
274 awesome_config
*awesomeconf
,
275 const char *arg
__attribute__ ((unused
)))
281 focus(sel
->display
, drawcontext
, sel
, True
, awesomeconf
);
282 arrange(sel
->display
, drawcontext
, awesomeconf
);