build: fix theme installation (FS#263)
[awesome.git] / titlebar.c
blob976fd0daedf3e92eee8c748e72465e55a4f1d9ed
1 /*
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.
22 #include <xcb/xcb.h>
23 #include <xcb/xcb_aux.h>
25 #include <math.h>
27 #include "titlebar.h"
28 #include "client.h"
29 #include "widget.h"
31 extern awesome_t globalconf;
33 DO_LUA_NEW(extern, titlebar_t, titlebar, "titlebar", titlebar_ref)
34 DO_LUA_GC(titlebar_t, titlebar, "titlebar", titlebar_unref)
35 DO_LUA_EQ(titlebar_t, titlebar, "titlebar")
37 /** Get a client by its titlebar.
38 * \param titlebar The titlebar.
39 * \return A client.
41 client_t *
42 client_getbytitlebar(titlebar_t *titlebar)
44 client_t *c;
46 for(c = globalconf.clients; c; c = c->next)
47 if(c->titlebar == titlebar)
48 return c;
50 return NULL;
53 /** Get a client by its titlebar window.
54 * \param win The window.
55 * \return A client.
57 client_t *
58 client_getbytitlebarwin(xcb_window_t win)
60 client_t *c;
62 for(c = globalconf.clients; c; c = c->next)
63 if(c->titlebar && c->titlebar->sw && c->titlebar->sw->window == win)
64 return c;
66 return NULL;
69 /** Draw the titlebar content.
70 * \param c The client.
72 void
73 titlebar_draw(client_t *c)
75 xcb_drawable_t dw = 0;
76 draw_context_t *ctx;
77 xcb_screen_t *s;
79 if(!c || !c->titlebar || !c->titlebar->sw || !c->titlebar->position)
80 return;
82 s = xutil_screen_get(globalconf.connection,
83 c->titlebar->sw->phys_screen);
85 switch(c->titlebar->position)
87 case Off:
88 return;
89 case Right:
90 case Left:
91 dw = xcb_generate_id(globalconf.connection);
92 xcb_create_pixmap(globalconf.connection, s->root_depth,
93 dw,
94 s->root,
95 c->titlebar->sw->geometry.height,
96 c->titlebar->sw->geometry.width);
97 ctx = draw_context_new(globalconf.connection, c->titlebar->sw->phys_screen,
98 c->titlebar->sw->geometry.height,
99 c->titlebar->sw->geometry.width,
101 &c->titlebar->colors.fg,
102 &c->titlebar->colors.bg);
103 break;
104 default:
105 ctx = draw_context_new(globalconf.connection, c->titlebar->sw->phys_screen,
106 c->titlebar->sw->geometry.width,
107 c->titlebar->sw->geometry.height,
108 c->titlebar->sw->pixmap,
109 &c->titlebar->colors.fg,
110 &c->titlebar->colors.bg);
111 break;
114 widget_render(c->titlebar->widgets, ctx, c->titlebar->sw->gc, c->titlebar->sw->pixmap,
115 c->screen, c->titlebar->position,
116 c->titlebar->sw->geometry.x, c->titlebar->sw->geometry.y,
117 c->titlebar, AWESOME_TYPE_TITLEBAR);
119 switch(c->titlebar->position)
121 case Left:
122 draw_rotate(ctx, ctx->pixmap, c->titlebar->sw->pixmap,
123 ctx->width, ctx->height,
124 ctx->height, ctx->width,
125 - M_PI_2, 0, c->titlebar->sw->geometry.height);
126 xcb_free_pixmap(globalconf.connection, dw);
127 break;
128 case Right:
129 draw_rotate(ctx, ctx->pixmap, c->titlebar->sw->pixmap,
130 ctx->width, ctx->height,
131 ctx->height, ctx->width,
132 M_PI_2, c->titlebar->sw->geometry.width, 0);
133 xcb_free_pixmap(globalconf.connection, dw);
134 default:
135 break;
138 simplewindow_refresh_pixmap(c->titlebar->sw);
140 draw_context_delete(&ctx);
142 c->titlebar->need_update = false;
145 /** Titlebar refresh function.
147 void
148 titlebar_refresh(void)
150 client_t *c;
152 for(c = globalconf.clients; c; c = c->next)
153 if(c->titlebar && c->titlebar->need_update)
154 titlebar_draw(c);
157 void
158 titlebar_geometry_compute(client_t *c, area_t geometry, area_t *res)
160 int width, x_offset = 0, y_offset = 0;
162 switch(c->titlebar->position)
164 default:
165 return;
166 case Top:
167 if(c->titlebar->width)
168 width = MAX(1, MIN(c->titlebar->width, geometry.width - 2 * c->titlebar->border.width));
169 else
170 width = MAX(1, geometry.width + 2 * c->border - 2 * c->titlebar->border.width);
171 switch(c->titlebar->align)
173 default:
174 break;
175 case AlignRight:
176 x_offset = 2 * c->border + geometry.width - width - 2 * c->titlebar->border.width;
177 break;
178 case AlignCenter:
179 x_offset = (geometry.width - width) / 2;
180 break;
182 res->x = geometry.x + x_offset;
183 res->y = geometry.y - c->titlebar->height - 2 * c->titlebar->border.width + c->border;
184 res->width = width;
185 res->height = c->titlebar->height;
186 break;
187 case Bottom:
188 if(c->titlebar->width)
189 width = MAX(1, MIN(c->titlebar->width, geometry.width - 2 * c->titlebar->border.width));
190 else
191 width = MAX(1, geometry.width + 2 * c->border - 2 * c->titlebar->border.width);
192 switch(c->titlebar->align)
194 default:
195 break;
196 case AlignRight:
197 x_offset = 2 * c->border + geometry.width - width - 2 * c->titlebar->border.width;
198 break;
199 case AlignCenter:
200 x_offset = (geometry.width - width) / 2;
201 break;
203 res->x = geometry.x + x_offset;
204 res->y = geometry.y + geometry.height + c->border;
205 res->width = width;
206 res->height = c->titlebar->height;
207 break;
208 case Left:
209 if(c->titlebar->width)
210 width = MAX(1, MIN(c->titlebar->width, geometry.height - 2 * c->titlebar->border.width));
211 else
212 width = MAX(1, geometry.height + 2 * c->border - 2 * c->titlebar->border.width);
213 switch(c->titlebar->align)
215 default:
216 break;
217 case AlignRight:
218 y_offset = 2 * c->border + geometry.height - width - 2 * c->titlebar->border.width;
219 break;
220 case AlignCenter:
221 y_offset = (geometry.height - width) / 2;
222 break;
224 res->x = geometry.x - c->titlebar->height + c->border;
225 res->y = geometry.y + y_offset;
226 res->width = c->titlebar->height;
227 res->height = width;
228 break;
229 case Right:
230 if(c->titlebar->width)
231 width = MAX(1, MIN(c->titlebar->width, geometry.height - 2 * c->titlebar->border.width));
232 else
233 width = MAX(1, geometry.height + 2 * c->border - 2 * c->titlebar->border.width);
234 switch(c->titlebar->align)
236 default:
237 break;
238 case AlignRight:
239 y_offset = 2 * c->border + geometry.height - width - 2 * c->titlebar->border.width;
240 break;
241 case AlignCenter:
242 y_offset = (geometry.height - width) / 2;
243 break;
245 res->x = geometry.x + geometry.width + c->border;
246 res->y = geometry.y + y_offset;
247 res->width = c->titlebar->height;
248 res->height = width;
249 break;
253 /** Set client titlebar position.
254 * \param c The client.
256 void
257 titlebar_init(client_t *c)
259 int width = 0, height = 0;
260 area_t geom;
262 switch(c->titlebar->position)
264 default:
265 c->titlebar->position = Off;
266 return;
267 case Top:
268 case Bottom:
269 if(c->titlebar->width)
270 width = MIN(c->titlebar->width, c->geometry.width - 2 * c->titlebar->border.width);
271 else
272 width = c->geometry.width + 2 * c->border - 2 * c->titlebar->border.width;
273 height = c->titlebar->height;
274 break;
275 case Left:
276 case Right:
277 if(c->titlebar->width)
278 height = MIN(c->titlebar->width, c->geometry.height - 2 * c->titlebar->border.width);
279 else
280 height = c->geometry.height + 2 * c->border - 2 * c->titlebar->border.width;
281 width = c->titlebar->height;
282 break;
285 titlebar_geometry_compute(c, c->geometry, &geom);
287 c->titlebar->sw = simplewindow_new(globalconf.connection, c->phys_screen, geom.x, geom.y,
288 geom.width, geom.height, c->titlebar->border.width);
290 if(c->titlebar->border.width)
291 xcb_change_window_attributes(globalconf.connection, c->titlebar->sw->window,
292 XCB_CW_BORDER_PIXEL, &c->titlebar->border.color.pixel);
294 if(client_isvisible(c, c->screen))
295 globalconf.screens[c->screen].need_arrange = true;
297 c->titlebar->need_update = true;
300 /** Create a new titlebar.
301 * \param L The Lua VM state.
302 * \return The number of value pushed.
304 * \luastack
305 * \lparam A table with values: align, position, fg, bg, border_width,
306 * border_color, width and height.
307 * \lreturn A brand new titlebar.
309 static int
310 luaA_titlebar_new(lua_State *L)
312 titlebar_t *tb;
313 const char *buf;
314 size_t len;
315 xcolor_init_request_t reqs[3];
316 int8_t i, reqs_nbr = -1;
318 luaA_checktable(L, 2);
320 tb = p_new(titlebar_t, 1);
322 buf = luaA_getopt_lstring(L, 2, "align", "left", &len);
323 tb->align = draw_align_fromstr(buf, len);
325 tb->width = luaA_getopt_number(L, 2, "width", 0);
326 tb->height = luaA_getopt_number(L, 2, "height", 0);
327 if(tb->height <= 0)
328 /* 1.5 as default factor, it fits nice but no one knows why */
329 tb->height = 1.5 * globalconf.font->height;
331 buf = luaA_getopt_lstring(L, 2, "position", "top", &len);
332 tb->position = position_fromstr(buf, len);
334 tb->colors.fg = globalconf.colors.fg;
335 if((buf = luaA_getopt_lstring(L, 2, "fg", NULL, &len)))
336 reqs[++reqs_nbr] = xcolor_init_unchecked(globalconf.connection,
337 &tb->colors.fg,
338 globalconf.default_screen,
339 buf, len);
341 tb->colors.bg = globalconf.colors.bg;
342 if((buf = luaA_getopt_lstring(L, 2, "bg", NULL, &len)))
343 reqs[++reqs_nbr] = xcolor_init_unchecked(globalconf.connection,
344 &tb->colors.bg,
345 globalconf.default_screen,
346 buf, len);
348 tb->border.color = globalconf.colors.fg;
349 if((buf = luaA_getopt_lstring(L, 2, "border_color", NULL, &len)))
350 reqs[++reqs_nbr] = xcolor_init_unchecked(globalconf.connection,
351 &tb->border.color,
352 globalconf.default_screen,
353 buf, len);
355 tb->border.width = luaA_getopt_number(L, 2, "border_width", 0);
357 for(i = 0; i <= reqs_nbr; i++)
358 xcolor_init_reply(globalconf.connection, reqs[i]);
360 return luaA_titlebar_userdata_new(globalconf.L, tb);
363 /** Titlebar newindex.
364 * \param L The Lua VM state.
365 * \return The number of elements pushed on stack.
367 static int
368 luaA_titlebar_newindex(lua_State *L)
370 size_t len;
371 titlebar_t **titlebar = luaA_checkudata(L, 1, "titlebar");
372 const char *buf, *attr = luaL_checklstring(L, 2, &len);
373 client_t *c = NULL, **newc;
374 int i;
375 widget_node_t *witer;
376 position_t position;
378 switch(a_tokenize(attr, len))
380 case A_TK_CLIENT:
381 if(!lua_isnil(L, 3))
382 newc = luaA_checkudata(L, 3, "client");
383 else
384 newc = NULL;
386 if(newc)
388 if((*newc)->titlebar)
390 simplewindow_delete(&(*newc)->titlebar->sw);
391 titlebar_unref(&(*newc)->titlebar);
392 globalconf.screens[(*newc)->screen].need_arrange = true;
394 /* Attach titlebar to client */
395 (*newc)->titlebar = *titlebar;
396 titlebar_ref(titlebar);
397 titlebar_init(*newc);
398 c = *newc;
400 else
402 if((c = client_getbytitlebar(*titlebar)))
404 simplewindow_delete(&(*titlebar)->sw);
405 /* unref and NULL the ref */
406 titlebar_unref(&c->titlebar);
407 globalconf.screens[c->screen].need_arrange = true;
410 break;
411 case A_TK_ALIGN:
412 if((buf = luaL_checklstring(L, 3, &len)))
413 (*titlebar)->align = draw_align_fromstr(buf, len);
414 else
415 return 0;
416 break;
417 case A_TK_BORDER_WIDTH:
418 if((i = luaL_checknumber(L, 3)) >= 0)
419 (*titlebar)->border.width = i;
420 else
421 return 0;
422 break;
423 case A_TK_BORDER_COLOR:
424 if((buf = luaL_checklstring(L, 3, &len)))
425 if(xcolor_init_reply(globalconf.connection,
426 xcolor_init_unchecked(globalconf.connection,
427 &(*titlebar)->border.color,
428 globalconf.default_screen, buf, len)))
429 if((*titlebar)->sw)
430 xcb_change_window_attributes(globalconf.connection, (*titlebar)->sw->window,
431 XCB_CW_BORDER_PIXEL, &(*titlebar)->border.color.pixel);
432 return 0;
433 case A_TK_FG:
434 if((buf = luaL_checklstring(L, 3, &len)))
435 if(xcolor_init_reply(globalconf.connection,
436 xcolor_init_unchecked(globalconf.connection,
437 &(*titlebar)->colors.fg,
438 globalconf.default_screen,
439 buf, len)))
440 (*titlebar)->need_update = true;
441 return 0;
442 case A_TK_BG:
443 if((buf = luaL_checklstring(L, 3, &len)))
444 if(xcolor_init_reply(globalconf.connection,
445 xcolor_init_unchecked(globalconf.connection,
446 &(*titlebar)->colors.bg,
447 globalconf.default_screen,
448 buf, len)))
449 (*titlebar)->need_update = true;
450 return 0;
451 case A_TK_WIDGETS:
452 luaA_checktable(L, 3);
454 /* remove all widgets */
455 for(witer = (*titlebar)->widgets; witer; witer = (*titlebar)->widgets)
457 if(witer->widget->detach)
458 witer->widget->detach(witer->widget, *titlebar);
459 widget_unref(&witer->widget);
460 widget_node_list_detach(&(*titlebar)->widgets, witer);
461 p_delete(&witer);
464 (*titlebar)->need_update = true;
466 /* now read all widgets and add them */
467 lua_pushnil(L);
468 while(lua_next(L, 3))
470 widget_t **widget = luaA_checkudata(L, -1, "widget");
471 widget_node_t *w = p_new(widget_node_t, 1);
472 w->widget = *widget;
473 widget_node_list_append(&(*titlebar)->widgets, w);
474 widget_ref(widget);
475 lua_pop(L, 1);
477 break;
478 case A_TK_POSITION:
479 buf = luaL_checklstring(L, 3, &len);
480 position = position_fromstr(buf, len);
481 if(position != (*titlebar)->position)
483 (*titlebar)->position = position;
484 c = client_getbytitlebar(*titlebar);
485 simplewindow_delete(&c->titlebar->sw);
486 titlebar_init(c);
488 break;
489 default:
490 return 0;
493 if((c || (c = client_getbytitlebar(*titlebar)))
494 && client_isvisible(c, c->screen))
495 globalconf.screens[c->screen].need_arrange = true;
497 return 0;
500 /** Titlebar object.
501 * \param L The Lua VM state.
502 * \return The number of elements pushed on stack.
503 * \luastack
504 * \lfield client The client attached to this titlebar.
505 * \lfield align Alignment relative to the client.
506 * \lfield border_width Border width.
507 * \lfield border_color Border color.
508 * \lfield fg Foreground color.
509 * \lfield bg Background color.
510 * \lfield position Position.
512 static int
513 luaA_titlebar_index(lua_State *L)
515 size_t len;
516 titlebar_t **titlebar = luaA_checkudata(L, 1, "titlebar");
517 const char *attr = luaL_checklstring(L, 2, &len);
518 client_t *c;
519 widget_node_t *witer;
520 int i = 0;
522 if(luaA_usemetatable(L, 1, 2))
523 return 1;
525 switch(a_tokenize(attr, len))
527 case A_TK_CLIENT:
528 if((c = client_getbytitlebar(*titlebar)))
529 return luaA_client_userdata_new(L, c);
530 else
531 return 0;
532 case A_TK_ALIGN:
533 lua_pushstring(L, draw_align_tostr((*titlebar)->align));
534 break;
535 case A_TK_BORDER_WIDTH:
536 lua_pushnumber(L, (*titlebar)->border.width);
537 break;
538 case A_TK_BORDER_COLOR:
539 luaA_pushcolor(L, &(*titlebar)->border.color);
540 break;
541 case A_TK_FG:
542 luaA_pushcolor(L, &(*titlebar)->colors.fg);
543 break;
544 case A_TK_BG:
545 luaA_pushcolor(L, &(*titlebar)->colors.bg);
546 break;
547 case A_TK_WIDGETS:
548 lua_newtable(L);
549 for(witer = (*titlebar)->widgets; witer; witer = witer->next)
551 luaA_widget_userdata_new(L, witer->widget);
552 lua_rawseti(L, -2, ++i);
554 break;
555 case A_TK_POSITION:
556 lua_pushstring(L, position_tostr((*titlebar)->position));
557 break;
558 default:
559 return 0;
562 return 1;
565 /** Convert a titlebar to a printable string.
566 * \param L The Lua VM state.
567 * \return The number of value pushed.
569 * \luastack
570 * \lvalue A titlebar.
571 * \lreturn A string.
573 static int
574 luaA_titlebar_tostring(lua_State *L)
576 titlebar_t **p = luaA_checkudata(L, 1, "titlebar");
577 lua_pushfstring(L, "[titlebar udata(%p)]", *p);
578 return 1;
581 const struct luaL_reg awesome_titlebar_methods[] =
583 { "__call", luaA_titlebar_new },
584 { NULL, NULL }
586 const struct luaL_reg awesome_titlebar_meta[] =
588 { "__index", luaA_titlebar_index },
589 { "__newindex", luaA_titlebar_newindex },
590 { "__eq", luaA_titlebar_eq },
591 { "__gc", luaA_titlebar_gc },
592 { "__tostring", luaA_titlebar_tostring },
593 { NULL, NULL }
596 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80