awesomerc: swap icon and prompt
[awesome.git] / titlebar.c
blob27c41975b4106cde52b8be10f466e737e4b181f8
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 position_t position;
377 switch(a_tokenize(attr, len))
379 case A_TK_CLIENT:
380 if(!lua_isnil(L, 3))
381 newc = luaA_checkudata(L, 3, "client");
382 else
383 newc = NULL;
385 if(newc)
387 if((*newc)->titlebar)
389 simplewindow_delete(&(*newc)->titlebar->sw);
390 titlebar_unref(&(*newc)->titlebar);
391 (*newc)->titlebar = NULL;
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 c->titlebar = NULL;
408 globalconf.screens[c->screen].need_arrange = true;
411 break;
412 case A_TK_ALIGN:
413 if((buf = luaL_checklstring(L, 3, &len)))
414 (*titlebar)->align = draw_align_fromstr(buf, len);
415 else
416 return 0;
417 break;
418 case A_TK_BORDER_WIDTH:
419 if((i = luaL_checknumber(L, 3)) >= 0)
420 (*titlebar)->border.width = i;
421 else
422 return 0;
423 break;
424 case A_TK_BORDER_COLOR:
425 if((buf = luaL_checklstring(L, 3, &len)))
426 if(xcolor_init_reply(globalconf.connection,
427 xcolor_init_unchecked(globalconf.connection,
428 &(*titlebar)->border.color,
429 globalconf.default_screen, buf, len)))
430 if((*titlebar)->sw)
431 xcb_change_window_attributes(globalconf.connection, (*titlebar)->sw->window,
432 XCB_CW_BORDER_PIXEL, &(*titlebar)->border.color.pixel);
433 return 0;
434 case A_TK_FG:
435 if((buf = luaL_checklstring(L, 3, &len)))
436 if(xcolor_init_reply(globalconf.connection,
437 xcolor_init_unchecked(globalconf.connection,
438 &(*titlebar)->colors.fg,
439 globalconf.default_screen,
440 buf, len)))
441 (*titlebar)->need_update = true;
442 return 0;
443 case A_TK_BG:
444 if((buf = luaL_checklstring(L, 3, &len)))
445 if(xcolor_init_reply(globalconf.connection,
446 xcolor_init_unchecked(globalconf.connection,
447 &(*titlebar)->colors.bg,
448 globalconf.default_screen,
449 buf, len)))
450 (*titlebar)->need_update = true;
451 break;
452 case A_TK_POSITION:
453 buf = luaL_checklstring(L, 3, &len);
454 position = position_fromstr(buf, len);
455 if(position != (*titlebar)->position)
457 (*titlebar)->position = position;
458 c = client_getbytitlebar(*titlebar);
459 simplewindow_delete(&c->titlebar->sw);
460 titlebar_init(c);
462 break;
463 default:
464 return 0;
467 if((c || (c = client_getbytitlebar(*titlebar)))
468 && client_isvisible(c, c->screen))
469 globalconf.screens[c->screen].need_arrange = true;
471 return 0;
474 /** Titlebar object.
475 * \param L The Lua VM state.
476 * \return The number of elements pushed on stack.
477 * \luastack
478 * \lfield client The client attached to this titlebar.
479 * \lfield align Alignment relative to the client.
480 * \lfield border_width Border width.
481 * \lfield border_color Border color.
482 * \lfield fg Foreground color.
483 * \lfield bg Background color.
484 * \lfield position Position.
486 static int
487 luaA_titlebar_index(lua_State *L)
489 size_t len;
490 titlebar_t **titlebar = luaA_checkudata(L, 1, "titlebar");
491 const char *attr = luaL_checklstring(L, 2, &len);
492 client_t *c;
494 if(luaA_usemetatable(L, 1, 2))
495 return 1;
497 switch(a_tokenize(attr, len))
499 case A_TK_CLIENT:
500 if((c = client_getbytitlebar(*titlebar)))
501 return luaA_client_userdata_new(L, c);
502 else
503 return 0;
504 case A_TK_ALIGN:
505 lua_pushstring(L, draw_align_tostr((*titlebar)->align));
506 break;
507 case A_TK_BORDER_WIDTH:
508 lua_pushnumber(L, (*titlebar)->border.width);
509 break;
510 case A_TK_BORDER_COLOR:
511 luaA_pushcolor(L, &(*titlebar)->border.color);
512 break;
513 case A_TK_FG:
514 luaA_pushcolor(L, &(*titlebar)->colors.fg);
515 break;
516 case A_TK_BG:
517 luaA_pushcolor(L, &(*titlebar)->colors.bg);
518 break;
519 case A_TK_POSITION:
520 lua_pushstring(L, position_tostr((*titlebar)->position));
521 break;
522 default:
523 return 0;
526 return 1;
529 static int
530 luaA_titlebar_widgets(lua_State *L)
532 titlebar_t **titlebar = luaA_checkudata(L, 1, "titlebar");
534 if(lua_gettop(L) == 2)
536 luaA_widget_set(L, 2, *titlebar, &(*titlebar)->widgets);
537 (*titlebar)->need_update = true;
538 return 1;
540 return luaA_widget_get(L, (*titlebar)->widgets);
543 /** Convert a titlebar to a printable string.
544 * \param L The Lua VM state.
545 * \return The number of value pushed.
547 * \luastack
548 * \lvalue A titlebar.
549 * \lreturn A string.
551 static int
552 luaA_titlebar_tostring(lua_State *L)
554 titlebar_t **p = luaA_checkudata(L, 1, "titlebar");
555 lua_pushfstring(L, "[titlebar udata(%p)]", *p);
556 return 1;
559 const struct luaL_reg awesome_titlebar_methods[] =
561 { "__call", luaA_titlebar_new },
562 { NULL, NULL }
564 const struct luaL_reg awesome_titlebar_meta[] =
566 { "widgets", luaA_titlebar_widgets },
567 { "__index", luaA_titlebar_index },
568 { "__newindex", luaA_titlebar_newindex },
569 { "__eq", luaA_titlebar_eq },
570 { "__gc", luaA_titlebar_gc },
571 { "__tostring", luaA_titlebar_tostring },
572 { NULL, NULL }
575 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80