2 * titlebar.c - titlebar management
4 * Copyright © 2008 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.
30 extern awesome_t globalconf
;
32 /** Get a client by its titlebar.
33 * \param titlebar The titlebar.
37 client_getbytitlebar(wibox_t
*titlebar
)
41 for(c
= globalconf
.clients
; c
; c
= c
->next
)
42 if(c
->titlebar
== titlebar
)
48 /** Get a client by its titlebar window.
49 * \param win The window.
53 client_getbytitlebarwin(xcb_window_t win
)
57 for(c
= globalconf
.clients
; c
; c
= c
->next
)
58 if(c
->titlebar
&& c
->titlebar
->sw
.window
== win
)
65 titlebar_geometry_compute(client_t
*c
, area_t geometry
, area_t
*res
)
67 int height
, width
, x_offset
= 0, y_offset
= 0;
69 switch(c
->titlebar
->position
)
74 width
= MAX(1, geometry
.width
);
75 switch(c
->titlebar
->align
)
80 x_offset
= geometry
.width
- width
;
83 x_offset
= (geometry
.width
- width
) / 2;
86 res
->x
= geometry
.x
+ x_offset
;
89 res
->height
= c
->titlebar
->sw
.geometry
.height
;
92 width
= MAX(1, geometry
.width
);
93 switch(c
->titlebar
->align
)
98 x_offset
= geometry
.width
- width
;
101 x_offset
= (geometry
.width
- width
) / 2;
104 res
->x
= geometry
.x
+ x_offset
;
105 res
->y
= geometry
.y
+ geometry
.height
- c
->titlebar
->sw
.geometry
.height
;
107 res
->height
= c
->titlebar
->sw
.geometry
.height
;
110 height
= MAX(1, geometry
.height
);
111 switch(c
->titlebar
->align
)
116 y_offset
= geometry
.height
- height
;
119 y_offset
= (geometry
.height
- height
) / 2;
123 res
->y
= geometry
.y
+ y_offset
;
124 res
->width
= c
->titlebar
->sw
.geometry
.width
;
125 res
->height
= height
;
128 height
= MAX(1, geometry
.height
);
129 switch(c
->titlebar
->align
)
134 y_offset
= geometry
.height
- height
;
137 y_offset
= (geometry
.height
- height
) / 2;
140 res
->x
= geometry
.x
+ geometry
.width
- c
->titlebar
->sw
.geometry
.width
;
141 res
->y
= geometry
.y
+ y_offset
;
142 res
->width
= c
->titlebar
->sw
.geometry
.width
;
143 res
->height
= height
;
148 /** Detach a wibox titlebar from its client.
149 * \param c The client.
152 titlebar_client_detach(client_t
*c
)
154 /* If client has a titlebar, kick it out. */
157 simplewindow_wipe(&c
->titlebar
->sw
);
158 c
->titlebar
->type
= WIBOX_TYPE_NORMAL
;
159 c
->titlebar
->screen
= SCREEN_UNDEF
;
160 wibox_unref(&c
->titlebar
);
162 client_need_arrange(c
);
167 /** Attach a wibox to a client as its titlebar.
168 * \param c The client.
169 * \param t The wibox/titlebar.
172 titlebar_client_attach(client_t
*c
, wibox_t
*t
)
174 titlebar_client_detach(c
);
180 /* check if titlebar is already on a client */
181 titlebar_client_detach(client_getbytitlebar(t
));
183 c
->titlebar
= wibox_ref(&t
);
184 t
->type
= WIBOX_TYPE_TITLEBAR
;
185 t
->screen
= c
->screen
;
193 if(!t
->sw
.geometry
.height
)
194 t
->sw
.geometry
.height
= 1.5 * globalconf
.font
->height
;
198 if(!t
->sw
.geometry
.width
)
199 t
->sw
.geometry
.width
= 1.5 * globalconf
.font
->height
;
203 titlebar_geometry_compute(c
, c
->geometry
, &wingeom
);
205 simplewindow_init(&t
->sw
, c
->phys_screen
,
206 wingeom
, 0, t
->sw
.orientation
,
207 &t
->sw
.ctx
.fg
, &t
->sw
.ctx
.bg
);
208 simplewindow_border_color_set(&t
->sw
, &t
->sw
.border
.color
);
210 t
->need_update
= true;
212 /* This may seem useless, but it's the cleanest way to avoid seeing titlebars for banned clients. */
213 titlebar_update_geometry(c
);
216 xcb_map_window(globalconf
.connection
, t
->sw
.window
);
218 client_need_arrange(c
);
223 /** Map or unmap a titlebar wibox.
224 * \param t The wibox/titlebar.
225 * \param visible The new state of the titlebar.
228 titlebar_set_visible(wibox_t
*t
, bool visible
)
230 if (visible
!= t
->isvisible
)
232 /* The price of (un)mapping something small like a titlebar is pretty cheap.
233 * It would complicate matters if this rare case was treated like clients.
234 * Clients are moved out of the viewport when banned.
236 if ((t
->isvisible
= visible
))
237 xcb_map_window(globalconf
.connection
, t
->sw
.window
);
239 xcb_unmap_window(globalconf
.connection
, t
->sw
.window
);
241 globalconf
.screens
[t
->screen
].need_arrange
= true;
246 /** Titlebar newindex.
247 * \param L The Lua VM state.
248 * \param titlebar The wibox titlebar.
249 * \param tok The attribute token.
250 * \return The number of elements pushed on stack.
253 luaA_titlebar_newindex(lua_State
*L
, wibox_t
*titlebar
, awesome_token_t tok
)
265 if((buf
= luaL_checklstring(L
, 3, &len
)))
266 titlebar
->align
= draw_align_fromstr(buf
, len
);
270 case A_TK_BORDER_WIDTH
:
271 if((i
= luaL_checknumber(L
, 3)) >= 0)
272 simplewindow_border_width_set(&titlebar
->sw
, i
);
276 case A_TK_BORDER_COLOR
:
277 if((buf
= luaL_checklstring(L
, 3, &len
)))
278 if(xcolor_init_reply(xcolor_init_unchecked(&titlebar
->sw
.border
.color
, buf
, len
)))
279 simplewindow_border_color_set(&titlebar
->sw
, &titlebar
->sw
.border
.color
);
282 buf
= luaL_checklstring(L
, 3, &len
);
283 position
= position_fromstr(buf
, len
);
284 if(position
!= titlebar
->position
)
289 switch(titlebar
->position
)
298 tmp
= titlebar
->sw
.geometry
.width
;
299 titlebar
->sw
.geometry
.width
= titlebar
->sw
.geometry
.height
;
300 titlebar
->sw
.geometry
.height
= tmp
;
303 simplewindow_orientation_set(&titlebar
->sw
, North
);
306 switch(titlebar
->position
)
315 tmp
= titlebar
->sw
.geometry
.width
;
316 titlebar
->sw
.geometry
.width
= titlebar
->sw
.geometry
.height
;
317 titlebar
->sw
.geometry
.height
= tmp
;
320 simplewindow_orientation_set(&titlebar
->sw
, South
);
325 switch(titlebar
->position
)
330 tmp
= titlebar
->sw
.geometry
.width
;
331 titlebar
->sw
.geometry
.width
= titlebar
->sw
.geometry
.height
;
332 titlebar
->sw
.geometry
.height
= tmp
;
339 simplewindow_orientation_set(&titlebar
->sw
, East
);
342 titlebar
->position
= position
;
343 if((c
= client_getbytitlebar(titlebar
)))
345 titlebar_update_geometry(c
);
346 /* call geometry hook for client because some like to
347 * set titlebar width in that hook, which make sense */
348 hooks_property(c
, "geometry");
356 if((c
|| (c
= client_getbytitlebar(titlebar
))))
357 client_need_arrange(c
);
362 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80