awful.widget: add graph stack property
[awesome.git] / client.c
blob075df434eb2cae9a30254d4c28df286563ef152b
1 /*
2 * client.c - client management
4 * Copyright © 2007-2009 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_atom.h>
23 #include <xcb/xcb_image.h>
25 #include "tag.h"
26 #include "ewmh.h"
27 #include "screen.h"
28 #include "titlebar.h"
29 #include "systray.h"
30 #include "property.h"
31 #include "spawn.h"
32 #include "luaa.h"
33 #include "common/atoms.h"
34 #include "common/xutil.h"
36 client_t *
37 luaA_client_checkudata(lua_State *L, int ud)
39 client_t *c = luaA_checkudata(L, ud, &client_class);
40 if(c->invalid)
41 luaL_error(L, "client is invalid\n");
42 return c;
45 /** Collect a client.
46 * \param L The Lua VM state.
47 * \return The number of element pushed on stack.
49 static int
50 luaA_client_gc(lua_State *L)
52 client_t *c = luaA_checkudata(L, 1, &client_class);
53 button_array_wipe(&c->buttons);
54 key_array_wipe(&c->keys);
55 xcb_get_wm_protocols_reply_wipe(&c->protocols);
56 p_delete(&c->machine);
57 p_delete(&c->class);
58 p_delete(&c->instance);
59 p_delete(&c->icon_name);
60 p_delete(&c->alt_icon_name);
61 p_delete(&c->name);
62 p_delete(&c->alt_name);
63 return luaA_object_gc(L);
66 /** Change the client opacity.
67 * \param L The Lua VM state.
68 * \param cidx The client index.
69 * \param opacity The opacity.
71 void
72 client_set_opacity(lua_State *L, int cidx, double opacity)
74 client_t *c = luaA_client_checkudata(L, cidx);
76 if(c->opacity != opacity)
78 c->opacity = opacity;
79 window_opacity_set(c->window, opacity);
80 luaA_object_emit_signal(L, cidx, "property::opacity", 0);
84 /** Change the clients urgency flag.
85 * \param L The Lua VM state.
86 * \param cidx The client index on the stack.
87 * \param urgent The new flag state.
89 void
90 client_set_urgent(lua_State *L, int cidx, bool urgent)
92 client_t *c = luaA_client_checkudata(L, cidx);
94 if(c->urgent != urgent)
96 xcb_get_property_cookie_t hints =
97 xcb_get_wm_hints_unchecked(globalconf.connection, c->window);
99 c->urgent = urgent;
100 ewmh_client_update_hints(c);
102 /* update ICCCM hints */
103 xcb_wm_hints_t wmh;
104 xcb_get_wm_hints_reply(globalconf.connection, hints, &wmh, NULL);
106 if(urgent)
107 wmh.flags |= XCB_WM_HINT_X_URGENCY;
108 else
109 wmh.flags &= ~XCB_WM_HINT_X_URGENCY;
111 xcb_set_wm_hints(globalconf.connection, c->window, &wmh);
113 hook_property(c, "urgent");
114 luaA_object_emit_signal(L, cidx, "property::urgent", 0);
118 void
119 client_set_group_window(lua_State *L, int cidx, xcb_window_t window)
121 client_t *c = luaA_client_checkudata(L, cidx);
123 if(c->group_window != window)
125 c->group_window = window;
126 luaA_object_emit_signal(L, cidx, "property::group_window", 0);
130 void
131 client_set_type(lua_State *L, int cidx, window_type_t type)
133 client_t *c = luaA_client_checkudata(L, cidx);
135 if(c->type != type)
137 c->type = type;
138 luaA_object_emit_signal(L, cidx, "property::type", 0);
142 void
143 client_set_pid(lua_State *L, int cidx, uint32_t pid)
145 client_t *c = luaA_client_checkudata(L, cidx);
147 if(c->pid != pid)
149 c->pid = pid;
150 luaA_object_emit_signal(L, cidx, "property::pid", 0);
154 void
155 client_set_icon_name(lua_State *L, int cidx, char *icon_name)
157 client_t *c = luaA_client_checkudata(L, cidx);
158 p_delete(&c->icon_name);
159 c->icon_name = icon_name;
160 luaA_object_emit_signal(L, cidx, "property::icon_name", 0);
161 hook_property(c, "icon_name");
164 void
165 client_set_alt_icon_name(lua_State *L, int cidx, char *icon_name)
167 client_t *c = luaA_client_checkudata(L, cidx);
168 p_delete(&c->alt_icon_name);
169 c->alt_icon_name = icon_name;
170 luaA_object_emit_signal(L, cidx, "property::icon_name", 0);
171 hook_property(c, "icon_name");
174 void
175 client_set_role(lua_State *L, int cidx, char *role)
177 client_t *c = luaA_client_checkudata(L, cidx);
178 p_delete(&c->role);
179 c->role = role;
180 luaA_object_emit_signal(L, cidx, "property::role", 0);
183 void
184 client_set_machine(lua_State *L, int cidx, char *machine)
186 client_t *c = luaA_client_checkudata(L, cidx);
187 p_delete(&c->machine);
188 c->machine = machine;
189 luaA_object_emit_signal(L, cidx, "property::machine", 0);
192 void
193 client_set_class_instance(lua_State *L, int cidx, const char *class, const char *instance)
195 client_t *c = luaA_client_checkudata(L, cidx);
196 p_delete(&c->class);
197 p_delete(&c->instance);
198 c->class = a_strdup(class);
199 c->instance = a_strdup(instance);
200 luaA_object_emit_signal(L, cidx, "property::class", 0);
201 luaA_object_emit_signal(L, cidx, "property::instance", 0);
204 void
205 client_set_transient_for(lua_State *L, int cidx, client_t *transient_for)
207 client_t *c = luaA_client_checkudata(L, cidx);
209 if(c->transient_for != transient_for)
211 c->transient_for = transient_for;
212 luaA_object_emit_signal(L, cidx, "property::transient_for", 0);
216 void
217 client_set_name(lua_State *L, int cidx, char *name)
219 client_t *c = luaA_client_checkudata(L, cidx);
220 p_delete(&c->name);
221 c->name = name;
222 hook_property(c, "name");
223 luaA_object_emit_signal(L, cidx, "property::name", 0);
226 void
227 client_set_alt_name(lua_State *L, int cidx, char *name)
229 client_t *c = luaA_client_checkudata(L, cidx);
230 p_delete(&c->alt_name);
231 c->alt_name = name;
232 hook_property(c, "name");
233 luaA_object_emit_signal(L, cidx, "property::name", 0);
236 /** Returns true if a client is tagged
237 * with one of the tags of the specified screen.
238 * \param c The client to check.
239 * \param screen Virtual screen.
240 * \return true if the client is visible, false otherwise.
242 bool
243 client_maybevisible(client_t *c, screen_t *screen)
245 if(screen && c->screen == screen)
247 if(c->sticky || c->type == WINDOW_TYPE_DESKTOP)
248 return true;
250 foreach(tag, screen->tags)
251 if(tag_get_selected(*tag) && is_client_tagged(c, *tag))
252 return true;
254 return false;
257 /** Get a client by its window.
258 * \param w The client window to find.
259 * \return A client pointer if found, NULL otherwise.
261 client_t *
262 client_getbywin(xcb_window_t w)
264 foreach(c, globalconf.clients)
265 if((*c)->window == w)
266 return *c;
268 return NULL;
271 /** Record that a client lost focus.
272 * \param c Client being unfocused
274 void
275 client_unfocus_update(client_t *c)
277 globalconf.screens.tab[c->phys_screen].client_focus = NULL;
278 ewmh_update_net_active_window(c->phys_screen);
280 /* Call hook */
281 if(globalconf.hooks.unfocus != LUA_REFNIL)
283 luaA_object_push(globalconf.L, c);
284 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.unfocus, 1, 0);
287 luaA_object_push(globalconf.L, c);
288 luaA_class_emit_signal(globalconf.L, &client_class, "unfocus", 1);
291 /** Unfocus a client.
292 * \param c The client.
294 void
295 client_unfocus(client_t *c)
298 xcb_window_t root_win = xutil_screen_get(globalconf.connection, c->phys_screen)->root;
299 /* Set focus on root window, so no events leak to the current window.
300 * This kind of inlines client_set_focus(), but a root window will never have
301 * the WM_TAKE_FOCUS protocol.
303 xcb_set_input_focus(globalconf.connection, XCB_INPUT_FOCUS_PARENT,
304 root_win, XCB_CURRENT_TIME);
306 client_unfocus_update(c);
309 /** Check if client supports atom a protocol in WM_PROTOCOL.
310 * \param c The client.
311 * \param atom The protocol atom to check for.
312 * \return True if client has the atom in protocol, false otherwise.
314 bool
315 client_hasproto(client_t *c, xcb_atom_t atom)
317 for(uint32_t i = 0; i < c->protocols.atoms_len; i++)
318 if(c->protocols.atoms[i] == atom)
319 return true;
320 return false;
323 /** Sets focus on window - using xcb_set_input_focus or WM_TAKE_FOCUS
324 * \param c Client that should get focus
325 * \param set_input_focus Should we call xcb_set_input_focus
327 void
328 client_set_focus(client_t *c, bool set_input_focus)
330 bool takefocus = client_hasproto(c, WM_TAKE_FOCUS);
331 if(set_input_focus)
332 xcb_set_input_focus(globalconf.connection, XCB_INPUT_FOCUS_PARENT,
333 c->window, XCB_CURRENT_TIME);
334 if(takefocus)
335 window_takefocus(c->window);
338 /** Prepare banning a client by running all needed lua events.
339 * \param c The client.
341 void client_ban_unfocus(client_t *c)
343 if(globalconf.screens.tab[c->phys_screen].prev_client_focus == c)
344 globalconf.screens.tab[c->phys_screen].prev_client_focus = NULL;
346 /* Wait until the last moment to take away the focus from the window. */
347 if(globalconf.screens.tab[c->phys_screen].client_focus == c)
348 client_unfocus(c);
351 /** Ban client and move it out of the viewport.
352 * \param c The client.
354 void
355 client_ban(client_t *c)
357 if(!c->isbanned)
359 xcb_unmap_window(globalconf.connection, c->window);
361 c->isbanned = true;
363 client_ban_unfocus(c);
367 /** This is part of The Bob Marley Algorithm: we ignore enter and leave window
368 * in certain cases, like map/unmap or move, so we don't get spurious events.
370 void
371 client_ignore_enterleave_events(void)
373 foreach(c, globalconf.clients)
374 xcb_change_window_attributes(globalconf.connection,
375 (*c)->window,
376 XCB_CW_EVENT_MASK,
377 (const uint32_t []) { CLIENT_SELECT_INPUT_EVENT_MASK & ~(XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_LEAVE_WINDOW) });
380 void
381 client_restore_enterleave_events(void)
383 foreach(c, globalconf.clients)
384 xcb_change_window_attributes(globalconf.connection,
385 (*c)->window,
386 XCB_CW_EVENT_MASK,
387 (const uint32_t []) { CLIENT_SELECT_INPUT_EVENT_MASK });
390 /** Record that a client got focus.
391 * \param c The client.
393 void
394 client_focus_update(client_t *c)
396 if(!client_maybevisible(c, c->screen))
398 /* Focus previously focused client */
399 client_focus(globalconf.screen_focus->prev_client_focus);
400 return;
403 if(globalconf.screen_focus
404 && globalconf.screen_focus->client_focus)
406 if (globalconf.screen_focus->client_focus != c)
407 client_unfocus_update(globalconf.screen_focus->client_focus);
408 else
409 /* Already focused */
410 return;
412 luaA_object_push(globalconf.L, c);
413 client_set_minimized(globalconf.L, -1, false);
415 /* unban the client before focusing for consistency */
416 client_unban(c);
418 globalconf.screen_focus = &globalconf.screens.tab[c->phys_screen];
419 globalconf.screen_focus->prev_client_focus = c;
420 globalconf.screen_focus->client_focus = c;
422 /* according to EWMH, we have to remove the urgent state from a client */
423 client_set_urgent(globalconf.L, -1, false);
425 ewmh_update_net_active_window(c->phys_screen);
427 /* execute hook */
428 if(globalconf.hooks.focus != LUA_REFNIL)
430 luaA_object_push(globalconf.L, c);
431 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.focus, 1, 0);
434 luaA_class_emit_signal(globalconf.L, &client_class, "focus", 1);
437 /** Give focus to client, or to first client if client is NULL.
438 * \param c The client.
440 void
441 client_focus(client_t *c)
443 /* We have to set focus on first client */
444 if(!c && globalconf.clients.len && !(c = globalconf.clients.tab[0]))
445 return;
447 if(!client_maybevisible(c, c->screen))
448 return;
450 if (!c->nofocus)
451 client_focus_update(c);
453 client_set_focus(c, !c->nofocus);
456 /** Stack a window below.
457 * \param c The client.
458 * \param previous The previous window on the stack.
459 * \return The next-previous!
461 static xcb_window_t
462 client_stack_above(client_t *c, xcb_window_t previous)
464 uint32_t config_win_vals[2];
466 config_win_vals[0] = previous;
467 config_win_vals[1] = XCB_STACK_MODE_ABOVE;
469 xcb_configure_window(globalconf.connection, c->window,
470 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE,
471 config_win_vals);
473 config_win_vals[0] = c->window;
475 if(c->titlebar)
477 xcb_configure_window(globalconf.connection,
478 c->titlebar->window,
479 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE,
480 config_win_vals);
481 previous = c->titlebar->window;
483 else
484 previous = c->window;
486 /* stack transient window on top of their parents */
487 foreach(node, globalconf.stack)
488 if((*node)->transient_for == c)
489 previous = client_stack_above(*node, previous);
491 return previous;
494 /** Stacking layout layers */
495 typedef enum
497 /** This one is a special layer */
498 LAYER_IGNORE,
499 LAYER_DESKTOP,
500 LAYER_BELOW,
501 LAYER_NORMAL,
502 LAYER_ABOVE,
503 LAYER_FULLSCREEN,
504 LAYER_ONTOP,
505 /** This one only used for counting and is not a real layer */
506 LAYER_COUNT
507 } layer_t;
509 /** Get the real layer of a client according to its attribute (fullscreen, …)
510 * \param c The client.
511 * \return The real layer.
513 static layer_t
514 client_layer_translator(client_t *c)
516 /* first deal with user set attributes */
517 if(c->ontop)
518 return LAYER_ONTOP;
519 else if(c->fullscreen)
520 return LAYER_FULLSCREEN;
521 else if(c->above)
522 return LAYER_ABOVE;
523 else if(c->below)
524 return LAYER_BELOW;
526 /* check for transient attr */
527 if(c->transient_for)
528 return LAYER_IGNORE;
530 /* then deal with windows type */
531 switch(c->type)
533 case WINDOW_TYPE_DESKTOP:
534 return LAYER_DESKTOP;
535 default:
536 break;
539 return LAYER_NORMAL;
542 /** Restack clients.
543 * \todo It might be worth stopping to restack everyone and only stack `c'
544 * relatively to the first matching in the list.
546 void
547 client_stack_refresh()
549 uint32_t config_win_vals[2];
550 layer_t layer;
552 if (!globalconf.client_need_stack_refresh)
553 return;
554 globalconf.client_need_stack_refresh = false;
556 config_win_vals[0] = XCB_NONE;
557 config_win_vals[1] = XCB_STACK_MODE_ABOVE;
559 /* stack desktop windows */
560 for(layer = LAYER_DESKTOP; layer < LAYER_BELOW; layer++)
561 foreach(node, globalconf.stack)
562 if(client_layer_translator(*node) == layer)
563 config_win_vals[0] = client_stack_above(*node,
564 config_win_vals[0]);
566 /* first stack not ontop wibox window */
567 foreach(_sb, globalconf.wiboxes)
569 wibox_t *sb = *_sb;
570 if(!sb->ontop)
572 xcb_configure_window(globalconf.connection,
573 sb->window,
574 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE,
575 config_win_vals);
576 config_win_vals[0] = sb->window;
580 /* then stack clients */
581 for(layer = LAYER_BELOW; layer < LAYER_COUNT; layer++)
582 foreach(node, globalconf.stack)
583 if(client_layer_translator(*node) == layer)
584 config_win_vals[0] = client_stack_above(*node,
585 config_win_vals[0]);
587 /* then stack ontop wibox window */
588 foreach(_sb, globalconf.wiboxes)
590 wibox_t *sb = *_sb;
591 if(sb->ontop)
593 xcb_configure_window(globalconf.connection,
594 sb->window,
595 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE,
596 config_win_vals);
597 config_win_vals[0] = sb->window;
602 /** Manage a new client.
603 * \param w The window.
604 * \param wgeom Window geometry.
605 * \param phys_screen Physical screen number.
606 * \param startup True if we are managing at startup time.
608 void
609 client_manage(xcb_window_t w, xcb_get_geometry_reply_t *wgeom, int phys_screen, bool startup)
611 const uint32_t select_input_val[] = { CLIENT_SELECT_INPUT_EVENT_MASK };
613 if(systray_iskdedockapp(w))
615 systray_request_handle(w, phys_screen, NULL);
616 return;
619 /* If this is a new client that just has been launched, then request its
620 * startup id. */
621 xcb_get_property_cookie_t startup_id_q = { 0 };
622 if(!startup)
623 startup_id_q = xcb_get_any_property(globalconf.connection,
624 false, w, _NET_STARTUP_ID, UINT_MAX);
626 xcb_change_window_attributes(globalconf.connection, w, XCB_CW_EVENT_MASK, select_input_val);
628 client_t *c = client_new(globalconf.L);
630 /* This cannot change, ever. */
631 c->phys_screen = phys_screen;
632 /* consider the window banned */
633 c->isbanned = true;
634 /* Store window */
635 c->window = w;
636 luaA_object_emit_signal(globalconf.L, -1, "property::window", 0);
638 /* Duplicate client and push it in client list */
639 lua_pushvalue(globalconf.L, -1);
640 client_array_push(&globalconf.clients, luaA_object_ref(globalconf.L, -1));
642 /* Set the right screen */
643 screen_client_moveto(c, screen_getbycoord(&globalconf.screens.tab[phys_screen], wgeom->x, wgeom->y), false);
645 /* Store initial geometry and emits signals so we inform that geometry have
646 * been set. */
647 #define HANDLE_GEOM(attr) \
648 c->geometry.attr = wgeom->attr; \
649 c->geometries.internal.attr = wgeom->attr; \
650 luaA_object_emit_signal(globalconf.L, -1, "property::" #attr, 0);
651 HANDLE_GEOM(x)
652 HANDLE_GEOM(y)
653 HANDLE_GEOM(width)
654 HANDLE_GEOM(height)
655 #undef HANDLE_GEOM
657 luaA_object_emit_signal(globalconf.L, -1, "property::geometry", 0);
659 /* Push client */
660 client_set_border_width(globalconf.L, -1, wgeom->border_width);
662 /* we honor size hints by default */
663 c->size_hints_honor = true;
664 luaA_object_emit_signal(globalconf.L, -1, "property::size_hints_honor", 0);
666 /* update hints */
667 property_update_wm_normal_hints(c, NULL);
668 property_update_wm_hints(c, NULL);
669 property_update_wm_transient_for(c, NULL);
670 property_update_wm_client_leader(c, NULL);
671 property_update_wm_client_machine(c, NULL);
672 property_update_wm_window_role(c, NULL);
673 property_update_net_wm_pid(c, NULL);
674 property_update_net_wm_icon(c, NULL);
676 /* get opacity */
677 client_set_opacity(globalconf.L, -1, window_opacity_get(c->window));
679 /* Then check clients hints */
680 ewmh_client_check_hints(c);
682 /* Push client in stack */
683 client_raise(c);
685 /* update window title */
686 property_update_wm_name(c, NULL);
687 property_update_net_wm_name(c, NULL);
688 property_update_wm_icon_name(c, NULL);
689 property_update_net_wm_icon_name(c, NULL);
690 property_update_wm_class(c, NULL);
691 property_update_wm_protocols(c, NULL);
693 /* update strut */
694 ewmh_process_client_strut(c, NULL);
696 ewmh_update_net_client_list(c->phys_screen);
698 /* Always stay in NORMAL_STATE. Even though iconified seems more
699 * appropriate sometimes. The only possible loss is that clients not using
700 * visibility events may continue to process data (when banned).
701 * Without any exposes or other events the cost should be fairly limited though.
703 * Some clients may expect the window to be unmapped when STATE_ICONIFIED.
704 * Two conflicting parts of the ICCCM v2.0 (section 4.1.4):
706 * "Normal -> Iconic - The client should send a ClientMessage event as described later in this section."
707 * (note no explicit mention of unmapping, while Normal->Widthdrawn does mention that)
709 * "Once a client's window has left the Withdrawn state, the window will be mapped
710 * if it is in the Normal state and the window will be unmapped if it is in the Iconic state."
712 * At this stage it's just safer to keep it in normal state and avoid confusion.
714 window_state_set(c->window, XCB_WM_STATE_NORMAL);
716 if(!startup)
718 /* Request our response */
719 xcb_get_property_reply_t *reply =
720 xcb_get_property_reply(globalconf.connection, startup_id_q, NULL);
721 /* Say spawn that a client has been started, with startup id as argument */
722 char *startup_id = xutil_get_text_property_from_reply(reply);
723 p_delete(&reply);
724 spawn_start_notify(c, startup_id);
725 p_delete(&startup_id);
728 /* Call hook to notify list change */
729 if(globalconf.hooks.clients != LUA_REFNIL)
730 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.clients, 0, 0);
732 luaA_class_emit_signal(globalconf.L, &client_class, "list", 0);
734 /* call hook */
735 if(globalconf.hooks.manage != LUA_REFNIL)
737 luaA_object_push(globalconf.L, c);
738 lua_pushboolean(globalconf.L, startup);
739 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.manage, 2, 0);
742 /* client is still on top of the stack; push startup value,
743 * and emit signals with 2 args */
744 lua_pushboolean(globalconf.L, startup);
745 luaA_class_emit_signal(globalconf.L, &client_class, "manage", 2);
748 /** Compute client geometry with respect to its geometry hints.
749 * \param c The client.
750 * \param geometry The geometry that the client might receive.
751 * \return The geometry the client must take respecting its hints.
753 area_t
754 client_geometry_hints(client_t *c, area_t geometry)
756 int32_t basew, baseh, minw, minh;
758 /* base size is substituted with min size if not specified */
759 if(c->size_hints.flags & XCB_SIZE_HINT_P_SIZE)
761 basew = c->size_hints.base_width;
762 baseh = c->size_hints.base_height;
764 else if(c->size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)
766 basew = c->size_hints.min_width;
767 baseh = c->size_hints.min_height;
769 else
770 basew = baseh = 0;
772 /* min size is substituted with base size if not specified */
773 if(c->size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)
775 minw = c->size_hints.min_width;
776 minh = c->size_hints.min_height;
778 else if(c->size_hints.flags & XCB_SIZE_HINT_P_SIZE)
780 minw = c->size_hints.base_width;
781 minh = c->size_hints.base_height;
783 else
784 minw = minh = 0;
786 if(c->size_hints.flags & XCB_SIZE_HINT_P_ASPECT
787 && c->size_hints.min_aspect_num > 0
788 && c->size_hints.min_aspect_den > 0
789 && geometry.height - baseh > 0
790 && geometry.width - basew > 0)
792 double dx = (double) (geometry.width - basew);
793 double dy = (double) (geometry.height - baseh);
794 double min = (double) c->size_hints.min_aspect_num / (double) c->size_hints.min_aspect_den;
795 double max = (double) c->size_hints.max_aspect_num / (double) c->size_hints.min_aspect_den;
796 double ratio = dx / dy;
797 if(max > 0 && min > 0 && ratio > 0)
799 if(ratio < min)
801 dy = (dx * min + dy) / (min * min + 1);
802 dx = dy * min;
803 geometry.width = (int) dx + basew;
804 geometry.height = (int) dy + baseh;
806 else if(ratio > max)
808 dy = (dx * min + dy) / (max * max + 1);
809 dx = dy * min;
810 geometry.width = (int) dx + basew;
811 geometry.height = (int) dy + baseh;
816 if(minw)
817 geometry.width = MAX(geometry.width, minw);
818 if(minh)
819 geometry.height = MAX(geometry.height, minh);
821 if(c->size_hints.flags & XCB_SIZE_HINT_P_MAX_SIZE)
823 if(c->size_hints.max_width)
824 geometry.width = MIN(geometry.width, c->size_hints.max_width);
825 if(c->size_hints.max_height)
826 geometry.height = MIN(geometry.height, c->size_hints.max_height);
829 if(c->size_hints.flags & (XCB_SIZE_HINT_P_RESIZE_INC | XCB_SIZE_HINT_BASE_SIZE)
830 && c->size_hints.width_inc && c->size_hints.height_inc)
832 uint16_t t1 = geometry.width, t2 = geometry.height;
833 unsigned_subtract(t1, basew);
834 unsigned_subtract(t2, baseh);
835 geometry.width -= t1 % c->size_hints.width_inc;
836 geometry.height -= t2 % c->size_hints.height_inc;
839 return geometry;
842 /** Resize client window.
843 * The sizes given as parameters are with titlebar and borders!
844 * \param c Client to resize.
845 * \param geometry New window geometry.
846 * \param hints Use size hints.
847 * \return true if an actual resize occurred.
849 bool
850 client_resize(client_t *c, area_t geometry, bool hints)
852 area_t geometry_internal;
853 area_t area;
855 /* offscreen appearance fixes */
856 area = display_area_get(c->phys_screen);
858 if(geometry.x > area.width)
859 geometry.x = area.width - geometry.width;
860 if(geometry.y > area.height)
861 geometry.y = area.height - geometry.height;
862 if(geometry.x + geometry.width < 0)
863 geometry.x = 0;
864 if(geometry.y + geometry.height < 0)
865 geometry.y = 0;
867 /* Real client geometry, please keep it contained to C code at the very least. */
868 geometry_internal = titlebar_geometry_remove(c->titlebar, c->border_width, geometry);
870 if(hints)
871 geometry_internal = client_geometry_hints(c, geometry_internal);
873 if(geometry_internal.width == 0 || geometry_internal.height == 0)
874 return false;
876 /* Also let client hints propagate to the "official" geometry. */
877 geometry = titlebar_geometry_add(c->titlebar, c->border_width, geometry_internal);
879 if(c->geometries.internal.x != geometry_internal.x
880 || c->geometries.internal.y != geometry_internal.y
881 || c->geometries.internal.width != geometry_internal.width
882 || c->geometries.internal.height != geometry_internal.height)
884 screen_t *new_screen = screen_getbycoord(c->screen,
885 geometry_internal.x, geometry_internal.y);
887 /* Values to configure a window is an array where values are
888 * stored according to 'value_mask' */
889 uint32_t values[4];
891 c->geometries.internal.x = values[0] = geometry_internal.x;
892 c->geometries.internal.y = values[1] = geometry_internal.y;
893 c->geometries.internal.width = values[2] = geometry_internal.width;
894 c->geometries.internal.height = values[3] = geometry_internal.height;
896 /* Also store geometry including border and titlebar. */
897 c->geometry = geometry;
899 titlebar_update_geometry(c);
901 /* Ignore all spurious enter/leave notify events */
902 client_ignore_enterleave_events();
904 xcb_configure_window(globalconf.connection, c->window,
905 XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
906 | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
907 values);
909 client_restore_enterleave_events();
911 screen_client_moveto(c, new_screen, false);
913 /* execute hook */
914 hook_property(c, "geometry");
916 luaA_object_push(globalconf.L, c);
917 luaA_object_emit_signal(globalconf.L, -1, "property::geometry", 0);
918 /** \todo This need to be VERIFIED before it is emitted! */
919 luaA_object_emit_signal(globalconf.L, -1, "property::x", 0);
920 luaA_object_emit_signal(globalconf.L, -1, "property::y", 0);
921 luaA_object_emit_signal(globalconf.L, -1, "property::width", 0);
922 luaA_object_emit_signal(globalconf.L, -1, "property::height", 0);
923 lua_pop(globalconf.L, 1);
925 return true;
928 return false;
931 /** Set a client minimized, or not.
932 * \param L The Lua VM state.
933 * \param cidx The client index.
934 * \param s Set or not the client minimized.
936 void
937 client_set_minimized(lua_State *L, int cidx, bool s)
939 client_t *c = luaA_client_checkudata(L, cidx);
941 if(c->minimized != s)
943 c->minimized = s;
944 banning_need_update((c)->screen);
945 if(s)
946 window_state_set(c->window, XCB_WM_STATE_ICONIC);
947 else
948 window_state_set(c->window, XCB_WM_STATE_NORMAL);
949 ewmh_client_update_hints(c);
950 if(strut_has_value(&c->strut))
951 screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
952 /* execute hook */
953 hook_property(c, "minimized");
954 luaA_object_emit_signal(L, cidx, "property::minimized", 0);
958 /** Set a client sticky, or not.
959 * \param L The Lua VM state.
960 * \param cidx The client index.
961 * \param s Set or not the client sticky.
963 void
964 client_set_sticky(lua_State *L, int cidx, bool s)
966 client_t *c = luaA_client_checkudata(L, cidx);
968 if(c->sticky != s)
970 c->sticky = s;
971 banning_need_update((c)->screen);
972 ewmh_client_update_hints(c);
973 hook_property(c, "sticky");
974 luaA_object_emit_signal(L, cidx, "property::sticky", 0);
978 /** Set a client fullscreen, or not.
979 * \param L The Lua VM state.
980 * \param cidx The client index.
981 * \param s Set or not the client fullscreen.
983 void
984 client_set_fullscreen(lua_State *L, int cidx, bool s)
986 client_t *c = luaA_client_checkudata(L, cidx);
988 if(c->fullscreen != s)
990 area_t geometry;
992 /* become fullscreen! */
993 if(s)
995 /* Make sure the current geometry is stored without titlebar. */
996 titlebar_ban(c->titlebar);
997 /* remove any max state */
998 client_set_maximized_horizontal(L, cidx, false);
999 client_set_maximized_vertical(L, cidx, false);
1000 /* You can only be part of one of the special layers. */
1001 client_set_below(L, cidx, false);
1002 client_set_above(L, cidx, false);
1003 client_set_ontop(L, cidx, false);
1005 geometry = screen_area_get(c->screen, false);
1006 c->geometries.fullscreen = c->geometry;
1007 c->border_width_fs = c->border_width;
1008 client_set_border_width(L, cidx, 0);
1009 c->fullscreen = true;
1011 else
1013 geometry = c->geometries.fullscreen;
1014 c->fullscreen = false;
1015 client_set_border_width(L, cidx, c->border_width_fs);
1017 client_resize(c, geometry, false);
1018 client_stack();
1019 ewmh_client_update_hints(c);
1020 hook_property(c, "fullscreen");
1021 luaA_object_emit_signal(L, cidx, "property::fullscreen", 0);
1025 /** Set a client horizontally maximized.
1026 * \param L The Lua VM state.
1027 * \param cidx The client index.
1028 * \param s The maximized status.
1030 void
1031 client_set_maximized_horizontal(lua_State *L, int cidx, bool s)
1033 client_t *c = luaA_client_checkudata(L, cidx);
1035 if(c->maximized_horizontal != s)
1037 area_t geometry;
1039 if((c->maximized_horizontal = s))
1041 /* remove fullscreen mode */
1042 client_set_fullscreen(L, cidx, false);
1044 geometry = screen_area_get(c->screen, true);
1045 geometry.y = c->geometry.y;
1046 geometry.height = c->geometry.height;
1047 c->geometries.max.x = c->geometry.x;
1048 c->geometries.max.width = c->geometry.width;
1050 else
1052 geometry = c->geometry;
1053 geometry.x = c->geometries.max.x;
1054 geometry.width = c->geometries.max.width;
1057 client_resize(c, geometry, c->size_hints_honor);
1058 client_stack();
1059 ewmh_client_update_hints(c);
1060 hook_property(c, "maximized_horizontal");
1061 luaA_object_emit_signal(L, cidx, "property::maximized_horizontal", 0);
1065 /** Set a client vertically maximized.
1066 * \param L The Lua VM state.
1067 * \param cidx The client index.
1068 * \param s The maximized status.
1070 void
1071 client_set_maximized_vertical(lua_State *L, int cidx, bool s)
1073 client_t *c = luaA_client_checkudata(L, cidx);
1075 if(c->maximized_vertical != s)
1077 area_t geometry;
1079 if((c->maximized_vertical = s))
1081 /* remove fullscreen mode */
1082 client_set_fullscreen(L, cidx, false);
1084 geometry = screen_area_get(c->screen, true);
1085 geometry.x = c->geometry.x;
1086 geometry.width = c->geometry.width;
1087 c->geometries.max.y = c->geometry.y;
1088 c->geometries.max.height = c->geometry.height;
1090 else
1092 geometry = c->geometry;
1093 geometry.y = c->geometries.max.y;
1094 geometry.height = c->geometries.max.height;
1097 client_resize(c, geometry, c->size_hints_honor);
1098 client_stack();
1099 ewmh_client_update_hints(c);
1100 hook_property(c, "maximized_vertical");
1101 luaA_object_emit_signal(L, cidx, "property::maximized_vertical", 0);
1105 /** Set a client above, or not.
1106 * \param L The Lua VM state.
1107 * \param cidx The client index.
1108 * \param s Set or not the client above.
1110 void
1111 client_set_above(lua_State *L, int cidx, bool s)
1113 client_t *c = luaA_client_checkudata(L, cidx);
1115 if(c->above != s)
1117 /* You can only be part of one of the special layers. */
1118 if(s)
1120 client_set_below(L, cidx, false);
1121 client_set_ontop(L, cidx, false);
1122 client_set_fullscreen(L, cidx, false);
1124 c->above = s;
1125 client_stack();
1126 ewmh_client_update_hints(c);
1127 /* execute hook */
1128 hook_property(c, "above");
1129 luaA_object_emit_signal(L, cidx, "property::above", 0);
1133 /** Set a client below, or not.
1134 * \param L The Lua VM state.
1135 * \param cidx The client index.
1136 * \param s Set or not the client below.
1138 void
1139 client_set_below(lua_State *L, int cidx, bool s)
1141 client_t *c = luaA_client_checkudata(L, cidx);
1143 if(c->below != s)
1145 /* You can only be part of one of the special layers. */
1146 if(s)
1148 client_set_above(L, cidx, false);
1149 client_set_ontop(L, cidx, false);
1150 client_set_fullscreen(L, cidx, false);
1152 c->below = s;
1153 client_stack();
1154 ewmh_client_update_hints(c);
1155 /* execute hook */
1156 hook_property(c, "below");
1157 luaA_object_emit_signal(L, cidx, "property::below", 0);
1161 /** Set a client modal, or not.
1162 * \param L The Lua VM state.
1163 * \param cidx The client index.
1164 * \param s Set or not the client modal attribute.
1166 void
1167 client_set_modal(lua_State *L, int cidx, bool s)
1169 client_t *c = luaA_client_checkudata(L, cidx);
1171 if(c->modal != s)
1173 c->modal = s;
1174 client_stack();
1175 ewmh_client_update_hints(c);
1176 /* execute hook */
1177 hook_property(c, "modal");
1178 luaA_object_emit_signal(L, cidx, "property::modal", 0);
1182 /** Set a client ontop, or not.
1183 * \param L The Lua VM state.
1184 * \param cidx The client index.
1185 * \param s Set or not the client ontop attribute.
1187 void
1188 client_set_ontop(lua_State *L, int cidx, bool s)
1190 client_t *c = luaA_client_checkudata(L, cidx);
1192 if(c->ontop != s)
1194 /* You can only be part of one of the special layers. */
1195 if(s)
1197 client_set_above(L, cidx, false);
1198 client_set_below(L, cidx, false);
1199 client_set_fullscreen(L, cidx, false);
1201 c->ontop = s;
1202 client_stack();
1203 /* execute hook */
1204 hook_property(c, "ontop");
1205 luaA_object_emit_signal(L, cidx, "property::ontop", 0);
1209 /** Set a client skip taskbar attribute.
1210 * \param L Tha Lua VM state.
1211 * \param cidx The client index.
1212 * \param s Set or not the client skip taskbar attribute.
1214 void
1215 client_set_skip_taskbar(lua_State *L, int cidx, bool s)
1217 client_t *c = luaA_client_checkudata(L, cidx);
1219 if(c->skip_taskbar != s)
1221 c->skip_taskbar = s;
1222 ewmh_client_update_hints(c);
1223 luaA_object_emit_signal(L, cidx, "property::skip_taskbar", 0);
1227 /** Unban a client and move it back into the viewport.
1228 * \param c The client.
1230 void
1231 client_unban(client_t *c)
1233 if(c->isbanned)
1235 xcb_map_window(globalconf.connection, c->window);
1237 c->isbanned = false;
1241 /** Unmanage a client.
1242 * \param c The client.
1244 void
1245 client_unmanage(client_t *c)
1247 tag_array_t *tags = &c->screen->tags;
1249 /* Reset transient_for attributes of widows that maybe referring to us */
1250 foreach(_tc, globalconf.clients)
1252 client_t *tc = *_tc;
1253 if(tc->transient_for == c)
1254 tc->transient_for = NULL;
1257 if(globalconf.screens.tab[c->phys_screen].prev_client_focus == c)
1258 globalconf.screens.tab[c->phys_screen].prev_client_focus = NULL;
1260 if(globalconf.screens.tab[c->phys_screen].client_focus == c)
1261 client_unfocus(c);
1263 /* remove client from global list and everywhere else */
1264 foreach(elem, globalconf.clients)
1265 if(*elem == c)
1267 client_array_remove(&globalconf.clients, elem);
1268 break;
1270 stack_client_remove(c);
1271 for(int i = 0; i < tags->len; i++)
1272 untag_client(c, tags->tab[i]);
1274 /* call hook */
1275 if(globalconf.hooks.unmanage != LUA_REFNIL)
1277 luaA_object_push(globalconf.L, c);
1278 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.unmanage, 1, 0);
1281 luaA_object_push(globalconf.L, c);
1282 luaA_class_emit_signal(globalconf.L, &client_class, "unmanage", 1);
1284 /* Call hook to notify list change */
1285 if(globalconf.hooks.clients != LUA_REFNIL)
1286 luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.clients, 0, 0);
1288 luaA_class_emit_signal(globalconf.L, &client_class, "list", 0);
1290 if(strut_has_value(&c->strut))
1291 screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
1293 window_state_set(c->window, XCB_WM_STATE_WITHDRAWN);
1295 titlebar_client_detach(c);
1297 ewmh_update_net_client_list(c->phys_screen);
1299 /* set client as invalid */
1300 c->invalid = true;
1302 luaA_object_unref(globalconf.L, c);
1305 /** Kill a client via a WM_DELETE_WINDOW request or KillClient if not
1306 * supported.
1307 * \param c The client to kill.
1309 void
1310 client_kill(client_t *c)
1312 if(client_hasproto(c, WM_DELETE_WINDOW))
1314 xcb_client_message_event_t ev;
1316 /* Initialize all of event's fields first */
1317 p_clear(&ev, 1);
1319 ev.response_type = XCB_CLIENT_MESSAGE;
1320 ev.window = c->window;
1321 ev.format = 32;
1322 ev.data.data32[1] = XCB_CURRENT_TIME;
1323 ev.type = WM_PROTOCOLS;
1324 ev.data.data32[0] = WM_DELETE_WINDOW;
1326 xcb_send_event(globalconf.connection, false, c->window,
1327 XCB_EVENT_MASK_NO_EVENT, (char *) &ev);
1329 else
1330 xcb_kill_client(globalconf.connection, c->window);
1333 /** Get all clients into a table.
1334 * \param L The Lua VM state.
1335 * \return The number of elements pushed on stack.
1336 * \luastack
1337 * \lparam An optional screen number.
1338 * \lreturn A table with all clients.
1340 static int
1341 luaA_client_get(lua_State *L)
1343 int i = 1, screen;
1345 screen = luaL_optnumber(L, 1, 0) - 1;
1347 lua_newtable(L);
1349 if(screen == -1)
1350 foreach(c, globalconf.clients)
1352 luaA_object_push(L, *c);
1353 lua_rawseti(L, -2, i++);
1355 else
1357 luaA_checkscreen(screen);
1358 foreach(c, globalconf.clients)
1359 if((*c)->screen == &globalconf.screens.tab[screen])
1361 luaA_object_push(L, *c);
1362 lua_rawseti(L, -2, i++);
1366 return 1;
1369 /** Check if a client is visible on its screen.
1370 * \param L The Lua VM state.
1371 * \return The number of elements pushed on stack.
1372 * \luastack
1373 * \lvalue A client.
1374 * \lreturn A boolean value, true if the client is visible, false otherwise.
1376 static int
1377 luaA_client_isvisible(lua_State *L)
1379 client_t *c = luaA_client_checkudata(L, 1);
1380 lua_pushboolean(L, client_isvisible(c, c->screen));
1381 return 1;
1384 /** Set client border width.
1385 * \param L The Lua VM state.
1386 * \param cidx The client index.
1387 * \param width The border width.
1389 void
1390 client_set_border_width(lua_State *L, int cidx, int width)
1392 client_t *c = luaA_client_checkudata(L, cidx);
1393 uint32_t w = width;
1395 if(width > 0 && (c->type == WINDOW_TYPE_DOCK
1396 || c->type == WINDOW_TYPE_SPLASH
1397 || c->type == WINDOW_TYPE_DESKTOP
1398 || c->fullscreen))
1399 return;
1401 if(width == c->border_width || width < 0)
1402 return;
1404 /* disallow change of border width if the client is fullscreen */
1405 if(c->fullscreen)
1406 return;
1408 /* Update geometry with the new border. */
1409 c->geometry.width -= 2 * c->border_width;
1410 c->geometry.height -= 2 * c->border_width;
1412 c->border_width = width;
1413 xcb_configure_window(globalconf.connection, c->window,
1414 XCB_CONFIG_WINDOW_BORDER_WIDTH, &w);
1416 c->geometry.width += 2 * c->border_width;
1417 c->geometry.height += 2 * c->border_width;
1419 /* Changing border size also affects the size of the titlebar. */
1420 titlebar_update_geometry(c);
1422 hook_property(c, "border_width");
1423 luaA_object_emit_signal(L, cidx, "property::border_width", 0);
1426 /** Set a client icon.
1427 * \param L The Lua VM state.
1428 * \param cidx The client index on the stack.
1429 * \param iidx The image index on the stack.
1431 void
1432 client_set_icon(lua_State *L, int cidx, int iidx)
1434 client_t *c = luaA_client_checkudata(L, cidx);
1435 /* convert index to absolute */
1436 cidx = luaA_absindex(L, cidx);
1437 iidx = luaA_absindex(L, iidx);
1438 luaA_checkudata(L, iidx, &image_class);
1439 luaA_object_unref_item(L, cidx, c->icon);
1440 c->icon = luaA_object_ref_item(L, cidx, iidx);
1441 luaA_object_emit_signal(L, cidx < iidx ? cidx : cidx - 1, "property::icon", 0);
1442 /* execute hook */
1443 hook_property(c, "icon");
1446 /** Kill a client.
1447 * \param L The Lua VM state.
1449 * \luastack
1450 * \lvalue A client.
1452 static int
1453 luaA_client_kill(lua_State *L)
1455 client_t *c = luaA_client_checkudata(L, 1);
1456 client_kill(c);
1457 return 0;
1460 /** Swap a client with another one.
1461 * \param L The Lua VM state.
1462 * \luastack
1463 * \lvalue A client.
1464 * \lparam A client to swap with.
1466 static int
1467 luaA_client_swap(lua_State *L)
1469 client_t *c = luaA_client_checkudata(L, 1);
1470 client_t *swap = luaA_client_checkudata(L, 2);
1472 if(c != swap)
1474 client_t **ref_c = NULL, **ref_swap = NULL;
1475 foreach(item, globalconf.clients)
1477 if(*item == c)
1478 ref_c = item;
1479 else if(*item == swap)
1480 ref_swap = item;
1481 if(ref_c && ref_swap)
1482 break;
1484 /* swap ! */
1485 *ref_c = swap;
1486 *ref_swap = c;
1488 /* Call hook to notify list change */
1489 if(globalconf.hooks.clients != LUA_REFNIL)
1490 luaA_dofunction_from_registry(L, globalconf.hooks.clients, 0, 0);
1492 luaA_class_emit_signal(globalconf.L, &client_class, "list", 0);
1495 return 0;
1498 /** Access or set the client tags.
1499 * \param L The Lua VM state.
1500 * \return The number of elements pushed on stack.
1501 * \lparam A table with tags to set, or none to get the current tags table.
1502 * \return The clients tag.
1504 static int
1505 luaA_client_tags(lua_State *L)
1507 client_t *c = luaA_client_checkudata(L, 1);
1508 tag_array_t *tags = &c->screen->tags;
1509 int j = 0;
1511 if(lua_gettop(L) == 2)
1513 luaA_checktable(L, 2);
1514 for(int i = 0; i < tags->len; i++)
1515 untag_client(c, tags->tab[i]);
1516 lua_pushnil(L);
1517 while(lua_next(L, 2))
1518 tag_client(c);
1519 lua_pop(L, 1);
1522 lua_newtable(L);
1523 foreach(tag, *tags)
1524 if(is_client_tagged(c, *tag))
1526 luaA_object_push(L, *tag);
1527 lua_rawseti(L, -2, ++j);
1530 return 1;
1533 /** Raise a client on top of others which are on the same layer.
1534 * \param L The Lua VM state.
1535 * \luastack
1536 * \lvalue A client.
1538 static int
1539 luaA_client_raise(lua_State *L)
1541 client_t *c = luaA_client_checkudata(L, 1);
1542 client_raise(c);
1543 return 0;
1546 /** Lower a client on bottom of others which are on the same layer.
1547 * \param L The Lua VM state.
1548 * \luastack
1549 * \lvalue A client.
1551 static int
1552 luaA_client_lower(lua_State *L)
1554 client_t *c = luaA_client_checkudata(L, 1);
1556 stack_client_push(c);
1558 /* Traverse all transient layers. */
1559 for(client_t *tc = c->transient_for; tc; tc = tc->transient_for)
1560 stack_client_push(tc);
1562 client_stack();
1564 return 0;
1567 /** Redraw a client by unmapping and mapping it quickly.
1568 * \param L The Lua VM state.
1570 * \luastack
1571 * \lvalue A client.
1573 static int
1574 luaA_client_redraw(lua_State *L)
1576 client_t *c = luaA_client_checkudata(L, 1);
1578 xcb_unmap_window(globalconf.connection, c->window);
1579 xcb_map_window(globalconf.connection, c->window);
1581 /* Set the focus on the current window if the redraw has been
1582 performed on the window where the pointer is currently on
1583 because after the unmapping/mapping, the focus is lost */
1584 if(globalconf.screen_focus->client_focus == c)
1586 client_unfocus(c);
1587 client_focus(c);
1590 return 0;
1593 /** Stop managing a client.
1594 * \param L The Lua VM state.
1595 * \return The number of elements pushed on stack.
1596 * \luastack
1597 * \lvalue A client.
1599 static int
1600 luaA_client_unmanage(lua_State *L)
1602 client_t *c = luaA_client_checkudata(L, 1);
1603 client_unmanage(c);
1604 return 0;
1607 /** Return client geometry.
1608 * \param L The Lua VM state.
1609 * \return The number of elements pushed on stack.
1610 * \luastack
1611 * \lparam A table with new coordinates, or none.
1612 * \lreturn A table with client coordinates.
1614 static int
1615 luaA_client_geometry(lua_State *L)
1617 client_t *c = luaA_client_checkudata(L, 1);
1619 if(lua_gettop(L) == 2 && !lua_isnil(L, 2))
1621 area_t geometry;
1623 luaA_checktable(L, 2);
1624 geometry.x = luaA_getopt_number(L, 2, "x", c->geometry.x);
1625 geometry.y = luaA_getopt_number(L, 2, "y", c->geometry.y);
1626 if(client_isfixed(c))
1628 geometry.width = c->geometry.width;
1629 geometry.height = c->geometry.height;
1631 else
1633 geometry.width = luaA_getopt_number(L, 2, "width", c->geometry.width);
1634 geometry.height = luaA_getopt_number(L, 2, "height", c->geometry.height);
1637 client_resize(c, geometry, c->size_hints_honor);
1640 return luaA_pusharea(L, c->geometry);
1643 /** Return client struts (reserved space at the edge of the screen).
1644 * \param L The Lua VM state.
1645 * \return The number of elements pushed on stack.
1646 * \luastack
1647 * \lparam A table with new strut values, or none.
1648 * \lreturn A table with strut values.
1650 static int
1651 luaA_client_struts(lua_State *L)
1653 client_t *c = luaA_client_checkudata(L, 1);
1655 if(lua_gettop(L) == 2)
1657 luaA_tostrut(L, 2, &c->strut);
1658 ewmh_update_strut(c->window, &c->strut);
1659 hook_property(c, "struts");
1660 luaA_object_emit_signal(L, 1, "property::struts", 0);
1661 screen_emit_signal(L, c->screen, "property::workarea", 0);
1664 return luaA_pushstrut(L, c->strut);
1667 static int
1668 luaA_client_set_screen(lua_State *L, client_t *c)
1670 if(globalconf.xinerama_is_active)
1672 int screen = luaL_checknumber(L, -1) - 1;
1673 luaA_checkscreen(screen);
1674 screen_client_moveto(c, &globalconf.screens.tab[screen], true);
1676 return 0;
1679 static int
1680 luaA_client_set_hidden(lua_State *L, client_t *c)
1682 bool b = luaA_checkboolean(L, -1);
1683 if(b != c->hidden)
1685 c->hidden = b;
1686 banning_need_update((c)->screen);
1687 hook_property(c, "hidden");
1688 if(strut_has_value(&c->strut))
1689 screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
1690 luaA_object_emit_signal(L, -3, "property::hidden", 0);
1692 return 0;
1695 static int
1696 luaA_client_set_minimized(lua_State *L, client_t *c)
1698 client_set_minimized(L, -3, luaA_checkboolean(L, -1));
1699 return 0;
1702 static int
1703 luaA_client_set_fullscreen(lua_State *L, client_t *c)
1705 client_set_fullscreen(L, -3, luaA_checkboolean(L, -1));
1706 return 0;
1709 static int
1710 luaA_client_set_modal(lua_State *L, client_t *c)
1712 client_set_modal(L, -3, luaA_checkboolean(L, -1));
1713 return 0;
1716 static int
1717 luaA_client_set_maximized_horizontal(lua_State *L, client_t *c)
1719 client_set_maximized_horizontal(L, -3, luaA_checkboolean(L, -1));
1720 return 0;
1723 static int
1724 luaA_client_set_maximized_vertical(lua_State *L, client_t *c)
1726 client_set_maximized_vertical(L, -3, luaA_checkboolean(L, -1));
1727 return 0;
1730 static int
1731 luaA_client_set_icon(lua_State *L, client_t *c)
1733 client_set_icon(L, -3, -1);
1734 return 0;
1737 static int
1738 luaA_client_set_opacity(lua_State *L, client_t *c)
1740 if(lua_isnil(L, -1))
1741 client_set_opacity(L, -3, -1);
1742 else
1743 client_set_opacity(L, -3, luaL_checknumber(L, -1));
1744 return 0;
1747 static int
1748 luaA_client_set_sticky(lua_State *L, client_t *c)
1750 client_set_sticky(L, -3, luaA_checkboolean(L, -1));
1751 return 0;
1754 static int
1755 luaA_client_set_size_hints_honor(lua_State *L, client_t *c)
1757 c->size_hints_honor = luaA_checkboolean(L, -1);
1758 hook_property(c, "size_hints_honor");
1759 luaA_object_emit_signal(L, -3, "property::size_hints_honor", 0);
1760 return 0;
1763 static int
1764 luaA_client_set_border_width(lua_State *L, client_t *c)
1766 client_set_border_width(L, -3, luaL_checknumber(L, -1));
1767 return 0;
1770 static int
1771 luaA_client_set_ontop(lua_State *L, client_t *c)
1773 client_set_ontop(L, -3, luaA_checkboolean(L, -1));
1774 return 0;
1777 static int
1778 luaA_client_set_below(lua_State *L, client_t *c)
1780 client_set_below(L, -3, luaA_checkboolean(L, -1));
1781 return 0;
1784 static int
1785 luaA_client_set_above(lua_State *L, client_t *c)
1787 client_set_above(L, -3, luaA_checkboolean(L, -1));
1788 return 0;
1791 static int
1792 luaA_client_set_urgent(lua_State *L, client_t *c)
1794 client_set_urgent(L, -3, luaA_checkboolean(L, -1));
1795 return 0;
1798 static int
1799 luaA_client_set_border_color(lua_State *L, client_t *c)
1801 size_t len;
1802 const char *buf;
1803 if((buf = luaL_checklstring(L, -1, &len))
1804 && xcolor_init_reply(xcolor_init_unchecked(&c->border_color, buf, len)))
1806 xcb_change_window_attributes(globalconf.connection, c->window,
1807 XCB_CW_BORDER_PIXEL, &c->border_color.pixel);
1808 luaA_object_emit_signal(L, -3, "property::border_color", 0);
1810 return 0;
1813 static int
1814 luaA_client_set_titlebar(lua_State *L, client_t *c)
1816 if(lua_isnil(L, -1))
1817 titlebar_client_detach(c);
1818 else
1819 titlebar_client_attach(c);
1820 return 0;
1823 static int
1824 luaA_client_set_skip_taskbar(lua_State *L, client_t *c)
1826 client_set_skip_taskbar(L, -3, luaA_checkboolean(L, -1));
1827 return 0;
1830 static int
1831 luaA_client_get_name(lua_State *L, client_t *c)
1833 lua_pushstring(L, c->name ? c->name : c->alt_name);
1834 return 1;
1837 static int
1838 luaA_client_get_icon_name(lua_State *L, client_t *c)
1840 lua_pushstring(L, c->icon_name ? c->icon_name : c->alt_icon_name);
1841 return 1;
1844 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, class, lua_pushstring)
1845 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, instance, lua_pushstring)
1846 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, machine, lua_pushstring)
1847 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, role, lua_pushstring)
1848 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, transient_for, luaA_object_push)
1849 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, skip_taskbar, lua_pushboolean)
1850 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, window, lua_pushnumber)
1851 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, leader_window, lua_pushnumber)
1852 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, group_window, lua_pushnumber)
1853 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, pid, lua_pushnumber)
1854 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, hidden, lua_pushboolean)
1855 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, minimized, lua_pushboolean)
1856 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, fullscreen, lua_pushboolean)
1857 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, modal, lua_pushboolean)
1858 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, ontop, lua_pushboolean)
1859 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, urgent, lua_pushboolean)
1860 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, above, lua_pushboolean)
1861 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, below, lua_pushboolean)
1862 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, sticky, lua_pushboolean)
1863 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, size_hints_honor, lua_pushboolean)
1864 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, maximized_horizontal, lua_pushboolean)
1865 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, maximized_vertical, lua_pushboolean)
1866 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, opacity, lua_pushnumber)
1867 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, border_width, lua_pushnumber)
1868 LUA_OBJECT_EXPORT_PROPERTY(client, client_t, border_color, luaA_pushxcolor)
1870 static int
1871 luaA_client_get_content(lua_State *L, client_t *c)
1873 xcb_image_t *ximage = xcb_image_get(globalconf.connection,
1874 c->window,
1875 0, 0,
1876 c->geometries.internal.width,
1877 c->geometries.internal.height,
1878 ~0, XCB_IMAGE_FORMAT_Z_PIXMAP);
1879 int retval = 0;
1881 if(ximage)
1883 if(ximage->bpp >= 24)
1885 uint32_t *data = p_alloca(uint32_t, ximage->width * ximage->height);
1887 for(int y = 0; y < ximage->height; y++)
1888 for(int x = 0; x < ximage->width; x++)
1890 data[y * ximage->width + x] = xcb_image_get_pixel(ximage, x, y);
1891 data[y * ximage->width + x] |= 0xff000000; /* set alpha to 0xff */
1894 retval = image_new_from_argb32(ximage->width, ximage->height, data);
1896 xcb_image_destroy(ximage);
1899 return retval;
1902 static int
1903 luaA_client_get_type(lua_State *L, client_t *c)
1905 switch(c->type)
1907 case WINDOW_TYPE_DESKTOP:
1908 lua_pushliteral(L, "desktop");
1909 break;
1910 case WINDOW_TYPE_DOCK:
1911 lua_pushliteral(L, "dock");
1912 break;
1913 case WINDOW_TYPE_SPLASH:
1914 lua_pushliteral(L, "splash");
1915 break;
1916 case WINDOW_TYPE_DIALOG:
1917 lua_pushliteral(L, "dialog");
1918 break;
1919 case WINDOW_TYPE_MENU:
1920 lua_pushliteral(L, "menu");
1921 break;
1922 case WINDOW_TYPE_TOOLBAR:
1923 lua_pushliteral(L, "toolbar");
1924 break;
1925 case WINDOW_TYPE_UTILITY:
1926 lua_pushliteral(L, "utility");
1927 break;
1928 case WINDOW_TYPE_DROPDOWN_MENU:
1929 lua_pushliteral(L, "dropdown_menu");
1930 break;
1931 case WINDOW_TYPE_POPUP_MENU:
1932 lua_pushliteral(L, "popup_menu");
1933 break;
1934 case WINDOW_TYPE_TOOLTIP:
1935 lua_pushliteral(L, "tooltip");
1936 break;
1937 case WINDOW_TYPE_NOTIFICATION:
1938 lua_pushliteral(L, "notification");
1939 break;
1940 case WINDOW_TYPE_COMBO:
1941 lua_pushliteral(L, "combo");
1942 break;
1943 case WINDOW_TYPE_DND:
1944 lua_pushliteral(L, "dnd");
1945 break;
1946 case WINDOW_TYPE_NORMAL:
1947 lua_pushliteral(L, "normal");
1948 break;
1950 return 1;
1953 static int
1954 luaA_client_get_screen(lua_State *L, client_t *c)
1956 if(!c->screen)
1957 return 0;
1958 lua_pushnumber(L, 1 + screen_array_indexof(&globalconf.screens, c->screen));
1959 return 1;
1962 static int
1963 luaA_client_get_icon(lua_State *L, client_t *c)
1965 return luaA_object_push_item(L, -2, c->icon);
1968 static int
1969 luaA_client_get_titlebar(lua_State *L, client_t *c)
1971 return luaA_object_push(L, c->titlebar);
1974 static int
1975 luaA_client_get_size_hints(lua_State *L, client_t *c)
1977 const char *u_or_p = NULL;
1979 lua_createtable(L, 0, 1);
1981 if(c->size_hints.flags & XCB_SIZE_HINT_US_POSITION)
1982 u_or_p = "user_position";
1983 else if(c->size_hints.flags & XCB_SIZE_HINT_P_POSITION)
1984 u_or_p = "program_position";
1986 if(u_or_p)
1988 lua_createtable(L, 0, 2);
1989 lua_pushnumber(L, c->size_hints.x);
1990 lua_setfield(L, -2, "x");
1991 lua_pushnumber(L, c->size_hints.y);
1992 lua_setfield(L, -2, "y");
1993 lua_setfield(L, -2, u_or_p);
1994 u_or_p = NULL;
1997 if(c->size_hints.flags & XCB_SIZE_HINT_US_SIZE)
1998 u_or_p = "user_size";
1999 else if(c->size_hints.flags & XCB_SIZE_HINT_P_SIZE)
2000 u_or_p = "program_size";
2002 if(u_or_p)
2004 lua_createtable(L, 0, 2);
2005 lua_pushnumber(L, c->size_hints.width);
2006 lua_setfield(L, -2, "width");
2007 lua_pushnumber(L, c->size_hints.height);
2008 lua_setfield(L, -2, "height");
2009 lua_setfield(L, -2, u_or_p);
2012 if(c->size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)
2014 lua_pushnumber(L, c->size_hints.min_width);
2015 lua_setfield(L, -2, "min_width");
2016 lua_pushnumber(L, c->size_hints.min_height);
2017 lua_setfield(L, -2, "min_height");
2020 if(c->size_hints.flags & XCB_SIZE_HINT_P_MAX_SIZE)
2022 lua_pushnumber(L, c->size_hints.max_width);
2023 lua_setfield(L, -2, "max_width");
2024 lua_pushnumber(L, c->size_hints.max_height);
2025 lua_setfield(L, -2, "max_height");
2028 if(c->size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)
2030 lua_pushnumber(L, c->size_hints.width_inc);
2031 lua_setfield(L, -2, "width_inc");
2032 lua_pushnumber(L, c->size_hints.height_inc);
2033 lua_setfield(L, -2, "height_inc");
2036 if(c->size_hints.flags & XCB_SIZE_HINT_P_ASPECT)
2038 lua_pushnumber(L, c->size_hints.min_aspect_num);
2039 lua_setfield(L, -2, "min_aspect_num");
2040 lua_pushnumber(L, c->size_hints.min_aspect_den);
2041 lua_setfield(L, -2, "min_aspect_den");
2042 lua_pushnumber(L, c->size_hints.max_aspect_num);
2043 lua_setfield(L, -2, "max_aspect_num");
2044 lua_pushnumber(L, c->size_hints.max_aspect_den);
2045 lua_setfield(L, -2, "max_aspect_den");
2048 if(c->size_hints.flags & XCB_SIZE_HINT_BASE_SIZE)
2050 lua_pushnumber(L, c->size_hints.base_width);
2051 lua_setfield(L, -2, "base_width");
2052 lua_pushnumber(L, c->size_hints.base_height);
2053 lua_setfield(L, -2, "base_height");
2056 if(c->size_hints.flags & XCB_SIZE_HINT_P_WIN_GRAVITY)
2058 switch(c->size_hints.win_gravity)
2060 default:
2061 lua_pushliteral(L, "north_west");
2062 break;
2063 case XCB_GRAVITY_NORTH:
2064 lua_pushliteral(L, "north");
2065 break;
2066 case XCB_GRAVITY_NORTH_EAST:
2067 lua_pushliteral(L, "north_east");
2068 break;
2069 case XCB_GRAVITY_WEST:
2070 lua_pushliteral(L, "west");
2071 break;
2072 case XCB_GRAVITY_CENTER:
2073 lua_pushliteral(L, "center");
2074 break;
2075 case XCB_GRAVITY_EAST:
2076 lua_pushliteral(L, "east");
2077 break;
2078 case XCB_GRAVITY_SOUTH_WEST:
2079 lua_pushliteral(L, "south_west");
2080 break;
2081 case XCB_GRAVITY_SOUTH:
2082 lua_pushliteral(L, "south");
2083 break;
2084 case XCB_GRAVITY_SOUTH_EAST:
2085 lua_pushliteral(L, "south_east");
2086 break;
2087 case XCB_GRAVITY_STATIC:
2088 lua_pushliteral(L, "static");
2089 break;
2091 lua_setfield(L, -2, "win_gravity");
2094 return 1;
2097 /** Get or set mouse buttons bindings for a client.
2098 * \param L The Lua VM state.
2099 * \return The number of element pushed on stack.
2100 * \luastack
2101 * \lvalue A client.
2102 * \lparam An array of mouse button bindings objects, or nothing.
2103 * \return The array of mouse button bindings objects of this client.
2105 static int
2106 luaA_client_buttons(lua_State *L)
2108 client_t *client = luaA_client_checkudata(L, 1);
2109 button_array_t *buttons = &client->buttons;
2111 if(lua_gettop(L) == 2)
2113 luaA_button_array_set(L, 1, 2, buttons);
2114 luaA_object_emit_signal(L, 1, "property::buttons", 0);
2115 window_buttons_grab(client->window, &client->buttons);
2118 return luaA_button_array_get(L, 1, buttons);
2121 /** Get or set keys bindings for a client.
2122 * \param L The Lua VM state.
2123 * \return The number of element pushed on stack.
2124 * \luastack
2125 * \lvalue A client.
2126 * \lparam An array of key bindings objects, or nothing.
2127 * \return The array of key bindings objects of this client.
2129 static int
2130 luaA_client_keys(lua_State *L)
2132 client_t *c = luaA_client_checkudata(L, 1);
2133 key_array_t *keys = &c->keys;
2135 if(lua_gettop(L) == 2)
2137 luaA_key_array_set(L, 1, 2, keys);
2138 luaA_object_emit_signal(L, 1, "property::keys", 0);
2139 xcb_ungrab_key(globalconf.connection, XCB_GRAB_ANY, c->window, XCB_BUTTON_MASK_ANY);
2140 window_grabkeys(c->window, keys);
2143 return luaA_key_array_get(L, 1, keys);
2146 /* Client module.
2147 * \param L The Lua VM state.
2148 * \return The number of pushed elements.
2150 static int
2151 luaA_client_module_index(lua_State *L)
2153 size_t len;
2154 const char *buf = luaL_checklstring(L, 2, &len);
2156 switch(a_tokenize(buf, len))
2158 case A_TK_FOCUS:
2159 return luaA_object_push(globalconf.L, globalconf.screen_focus->client_focus);
2160 break;
2161 default:
2162 return 0;
2166 /* Client module new index.
2167 * \param L The Lua VM state.
2168 * \return The number of pushed elements.
2170 static int
2171 luaA_client_module_newindex(lua_State *L)
2173 size_t len;
2174 const char *buf = luaL_checklstring(L, 2, &len);
2175 client_t *c;
2177 switch(a_tokenize(buf, len))
2179 case A_TK_FOCUS:
2180 c = luaA_client_checkudata(L, 3);
2181 client_focus(c);
2182 break;
2183 default:
2184 break;
2187 return 0;
2190 void
2191 client_class_setup(lua_State *L)
2193 static const struct luaL_reg client_methods[] =
2195 LUA_CLASS_METHODS(client)
2196 { "get", luaA_client_get },
2197 { "__index", luaA_client_module_index },
2198 { "__newindex", luaA_client_module_newindex },
2199 { NULL, NULL }
2202 static const struct luaL_reg client_meta[] =
2204 LUA_OBJECT_META(client)
2205 LUA_CLASS_META
2206 { "buttons", luaA_client_buttons },
2207 { "keys", luaA_client_keys },
2208 { "isvisible", luaA_client_isvisible },
2209 { "geometry", luaA_client_geometry },
2210 { "struts", luaA_client_struts },
2211 { "tags", luaA_client_tags },
2212 { "kill", luaA_client_kill },
2213 { "swap", luaA_client_swap },
2214 { "raise", luaA_client_raise },
2215 { "lower", luaA_client_lower },
2216 { "redraw", luaA_client_redraw },
2217 { "unmanage", luaA_client_unmanage },
2218 { "__gc", luaA_client_gc },
2219 { NULL, NULL }
2222 luaA_class_setup(L, &client_class, "client", (lua_class_allocator_t) client_new,
2223 luaA_class_index_miss_property, luaA_class_newindex_miss_property,
2224 client_methods, client_meta);
2225 luaA_class_add_property(&client_class, A_TK_NAME,
2226 NULL,
2227 (lua_class_propfunc_t) luaA_client_get_name,
2228 NULL);
2229 luaA_class_add_property(&client_class, A_TK_TRANSIENT_FOR,
2230 NULL,
2231 (lua_class_propfunc_t) luaA_client_get_transient_for,
2232 NULL);
2233 luaA_class_add_property(&client_class, A_TK_SKIP_TASKBAR,
2234 (lua_class_propfunc_t) luaA_client_set_skip_taskbar,
2235 (lua_class_propfunc_t) luaA_client_get_skip_taskbar,
2236 (lua_class_propfunc_t) luaA_client_set_skip_taskbar);
2237 luaA_class_add_property(&client_class, A_TK_CONTENT,
2238 NULL,
2239 (lua_class_propfunc_t) luaA_client_get_content,
2240 NULL);
2241 luaA_class_add_property(&client_class, A_TK_TYPE,
2242 NULL,
2243 (lua_class_propfunc_t) luaA_client_get_type,
2244 NULL);
2245 luaA_class_add_property(&client_class, A_TK_CLASS,
2246 NULL,
2247 (lua_class_propfunc_t) luaA_client_get_class,
2248 NULL);
2249 luaA_class_add_property(&client_class, A_TK_INSTANCE,
2250 NULL,
2251 (lua_class_propfunc_t) luaA_client_get_instance,
2252 NULL);
2253 luaA_class_add_property(&client_class, A_TK_ROLE,
2254 NULL,
2255 (lua_class_propfunc_t) luaA_client_get_role,
2256 NULL);
2257 luaA_class_add_property(&client_class, A_TK_PID,
2258 NULL,
2259 (lua_class_propfunc_t) luaA_client_get_pid,
2260 NULL);
2261 luaA_class_add_property(&client_class, A_TK_WINDOW,
2262 NULL,
2263 (lua_class_propfunc_t) luaA_client_get_window,
2264 NULL);
2265 luaA_class_add_property(&client_class, A_TK_LEADER_WINDOW,
2266 NULL,
2267 (lua_class_propfunc_t) luaA_client_get_leader_window,
2268 NULL);
2269 luaA_class_add_property(&client_class, A_TK_MACHINE,
2270 NULL,
2271 (lua_class_propfunc_t) luaA_client_get_machine,
2272 NULL);
2273 luaA_class_add_property(&client_class, A_TK_ICON_NAME,
2274 NULL,
2275 (lua_class_propfunc_t) luaA_client_get_icon_name,
2276 NULL);
2277 luaA_class_add_property(&client_class, A_TK_SCREEN,
2278 NULL,
2279 (lua_class_propfunc_t) luaA_client_get_screen,
2280 (lua_class_propfunc_t) luaA_client_set_screen);
2281 luaA_class_add_property(&client_class, A_TK_HIDDEN,
2282 (lua_class_propfunc_t) luaA_client_set_hidden,
2283 (lua_class_propfunc_t) luaA_client_get_hidden,
2284 (lua_class_propfunc_t) luaA_client_set_hidden);
2285 luaA_class_add_property(&client_class, A_TK_MINIMIZED,
2286 (lua_class_propfunc_t) luaA_client_set_minimized,
2287 (lua_class_propfunc_t) luaA_client_get_minimized,
2288 (lua_class_propfunc_t) luaA_client_set_minimized);
2289 luaA_class_add_property(&client_class, A_TK_FULLSCREEN,
2290 (lua_class_propfunc_t) luaA_client_set_fullscreen,
2291 (lua_class_propfunc_t) luaA_client_get_fullscreen,
2292 (lua_class_propfunc_t) luaA_client_set_fullscreen);
2293 luaA_class_add_property(&client_class, A_TK_MODAL,
2294 (lua_class_propfunc_t) luaA_client_set_modal,
2295 (lua_class_propfunc_t) luaA_client_get_modal,
2296 (lua_class_propfunc_t) luaA_client_set_modal);
2297 luaA_class_add_property(&client_class, A_TK_GROUP_WINDOW,
2298 NULL,
2299 (lua_class_propfunc_t) luaA_client_get_group_window,
2300 NULL);
2301 luaA_class_add_property(&client_class, A_TK_MAXIMIZED_HORIZONTAL,
2302 (lua_class_propfunc_t) luaA_client_set_maximized_horizontal,
2303 (lua_class_propfunc_t) luaA_client_get_maximized_horizontal,
2304 (lua_class_propfunc_t) luaA_client_set_maximized_horizontal);
2305 luaA_class_add_property(&client_class, A_TK_MAXIMIZED_VERTICAL,
2306 (lua_class_propfunc_t) luaA_client_set_maximized_vertical,
2307 (lua_class_propfunc_t) luaA_client_get_maximized_vertical,
2308 (lua_class_propfunc_t) luaA_client_set_maximized_vertical);
2309 luaA_class_add_property(&client_class, A_TK_ICON,
2310 (lua_class_propfunc_t) luaA_client_set_icon,
2311 (lua_class_propfunc_t) luaA_client_get_icon,
2312 (lua_class_propfunc_t) luaA_client_set_icon);
2313 luaA_class_add_property(&client_class, A_TK_OPACITY,
2314 (lua_class_propfunc_t) luaA_client_set_opacity,
2315 (lua_class_propfunc_t) luaA_client_get_opacity,
2316 (lua_class_propfunc_t) luaA_client_set_opacity);
2317 luaA_class_add_property(&client_class, A_TK_ONTOP,
2318 (lua_class_propfunc_t) luaA_client_set_ontop,
2319 (lua_class_propfunc_t) luaA_client_get_ontop,
2320 (lua_class_propfunc_t) luaA_client_set_ontop);
2321 luaA_class_add_property(&client_class, A_TK_ABOVE,
2322 (lua_class_propfunc_t) luaA_client_set_above,
2323 (lua_class_propfunc_t) luaA_client_get_above,
2324 (lua_class_propfunc_t) luaA_client_set_above);
2325 luaA_class_add_property(&client_class, A_TK_BELOW,
2326 (lua_class_propfunc_t) luaA_client_set_below,
2327 (lua_class_propfunc_t) luaA_client_get_below,
2328 (lua_class_propfunc_t) luaA_client_set_below);
2329 luaA_class_add_property(&client_class, A_TK_STICKY,
2330 (lua_class_propfunc_t) luaA_client_set_sticky,
2331 (lua_class_propfunc_t) luaA_client_get_sticky,
2332 (lua_class_propfunc_t) luaA_client_set_sticky);
2333 luaA_class_add_property(&client_class, A_TK_SIZE_HINTS_HONOR,
2334 (lua_class_propfunc_t) luaA_client_set_size_hints_honor,
2335 (lua_class_propfunc_t) luaA_client_get_size_hints_honor,
2336 (lua_class_propfunc_t) luaA_client_set_size_hints_honor);
2337 luaA_class_add_property(&client_class, A_TK_BORDER_WIDTH,
2338 (lua_class_propfunc_t) luaA_client_set_border_width,
2339 (lua_class_propfunc_t) luaA_client_get_border_width,
2340 (lua_class_propfunc_t) luaA_client_set_border_width);
2341 luaA_class_add_property(&client_class, A_TK_BORDER_COLOR,
2342 (lua_class_propfunc_t) luaA_client_set_border_color,
2343 (lua_class_propfunc_t) luaA_client_get_border_color,
2344 (lua_class_propfunc_t) luaA_client_set_border_color);
2345 luaA_class_add_property(&client_class, A_TK_TITLEBAR,
2346 (lua_class_propfunc_t) luaA_client_set_titlebar,
2347 (lua_class_propfunc_t) luaA_client_get_titlebar,
2348 (lua_class_propfunc_t) luaA_client_set_titlebar);
2349 luaA_class_add_property(&client_class, A_TK_URGENT,
2350 (lua_class_propfunc_t) luaA_client_set_urgent,
2351 (lua_class_propfunc_t) luaA_client_get_urgent,
2352 (lua_class_propfunc_t) luaA_client_set_urgent);
2353 luaA_class_add_property(&client_class, A_TK_SIZE_HINTS,
2354 NULL,
2355 (lua_class_propfunc_t) luaA_client_get_size_hints,
2356 NULL);
2359 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80