1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 action.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
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 See the COPYING file for a copy of the GNU General Public License.
22 #include "moveresize.h"
37 inline void client_action_start(union ActionData
*data
)
39 if (config_focus_follow
)
40 if (data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
&& !data
->any
.button
)
41 grab_pointer(TRUE
, OB_CURSOR_NONE
);
44 inline void client_action_end(union ActionData
*data
)
46 if (config_focus_follow
)
47 if (data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
) {
48 if (!data
->any
.button
) {
49 grab_pointer(FALSE
, OB_CURSOR_NONE
);
53 /* usually this is sorta redundant, but with a press action
54 the enter event will come as a GrabNotify which is
55 ignored, so this will handle that case */
56 if ((c
= client_under_pointer()))
57 event_enter_client(c
);
65 void (*func
)(union ActionData
*);
66 void (*setup
)(ObAction
**, ObUserAction uact
);
69 static ObAction
*action_new(void (*func
)(union ActionData
*data
))
71 ObAction
*a
= g_new0(ObAction
, 1);
78 void action_ref(ObAction
*a
)
83 void action_unref(ObAction
*a
)
85 if (a
== NULL
) return;
87 if (--a
->ref
> 0) return;
89 /* deal with pointers */
90 if (a
->func
== action_execute
|| a
->func
== action_restart
)
91 g_free(a
->data
.execute
.path
);
92 else if (a
->func
== action_showmenu
)
93 g_free(a
->data
.showmenu
.name
);
98 ObAction
* action_copy(const ObAction
*src
)
100 ObAction
*a
= action_new(src
->func
);
104 /* deal with pointers */
105 if (a
->func
== action_execute
|| a
->func
== action_restart
)
106 a
->data
.execute
.path
= g_strdup(a
->data
.execute
.path
);
107 else if (a
->func
== action_showmenu
)
108 a
->data
.showmenu
.name
= g_strdup(a
->data
.showmenu
.name
);
113 void setup_action_directional_focus_north(ObAction
**a
, ObUserAction uact
)
115 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
116 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_NORTH
;
117 (*a
)->data
.interdiraction
.dialog
= TRUE
;
120 void setup_action_directional_focus_east(ObAction
**a
, ObUserAction uact
)
122 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
123 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_EAST
;
124 (*a
)->data
.interdiraction
.dialog
= TRUE
;
127 void setup_action_directional_focus_south(ObAction
**a
, ObUserAction uact
)
129 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
130 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTH
;
131 (*a
)->data
.interdiraction
.dialog
= TRUE
;
134 void setup_action_directional_focus_west(ObAction
**a
, ObUserAction uact
)
136 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
137 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_WEST
;
138 (*a
)->data
.interdiraction
.dialog
= TRUE
;
141 void setup_action_directional_focus_northeast(ObAction
**a
, ObUserAction uact
)
143 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
144 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_NORTHEAST
;
145 (*a
)->data
.interdiraction
.dialog
= TRUE
;
148 void setup_action_directional_focus_southeast(ObAction
**a
, ObUserAction uact
)
150 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
151 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTHEAST
;
152 (*a
)->data
.interdiraction
.dialog
= TRUE
;
155 void setup_action_directional_focus_southwest(ObAction
**a
, ObUserAction uact
)
157 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
158 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTHWEST
;
159 (*a
)->data
.interdiraction
.dialog
= TRUE
;
162 void setup_action_directional_focus_northwest(ObAction
**a
, ObUserAction uact
)
164 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
165 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_NORTHWEST
;
166 (*a
)->data
.interdiraction
.dialog
= TRUE
;
169 void setup_action_send_to_desktop(ObAction
**a
, ObUserAction uact
)
171 (*a
)->data
.sendto
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
172 (*a
)->data
.sendto
.follow
= TRUE
;
175 void setup_action_send_to_desktop_prev(ObAction
**a
, ObUserAction uact
)
177 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
178 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
179 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_WEST
;
180 (*a
)->data
.sendtodir
.linear
= TRUE
;
181 (*a
)->data
.sendtodir
.wrap
= TRUE
;
182 (*a
)->data
.sendtodir
.follow
= TRUE
;
185 void setup_action_send_to_desktop_next(ObAction
**a
, ObUserAction uact
)
187 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
188 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
189 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_EAST
;
190 (*a
)->data
.sendtodir
.linear
= TRUE
;
191 (*a
)->data
.sendtodir
.wrap
= TRUE
;
192 (*a
)->data
.sendtodir
.follow
= TRUE
;
195 void setup_action_send_to_desktop_left(ObAction
**a
, ObUserAction uact
)
197 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
198 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
199 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_WEST
;
200 (*a
)->data
.sendtodir
.linear
= FALSE
;
201 (*a
)->data
.sendtodir
.wrap
= TRUE
;
202 (*a
)->data
.sendtodir
.follow
= TRUE
;
205 void setup_action_send_to_desktop_right(ObAction
**a
, ObUserAction uact
)
207 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
208 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
209 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_EAST
;
210 (*a
)->data
.sendtodir
.linear
= FALSE
;
211 (*a
)->data
.sendtodir
.wrap
= TRUE
;
212 (*a
)->data
.sendtodir
.follow
= TRUE
;
215 void setup_action_send_to_desktop_up(ObAction
**a
, ObUserAction uact
)
217 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
218 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
219 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_NORTH
;
220 (*a
)->data
.sendtodir
.linear
= FALSE
;
221 (*a
)->data
.sendtodir
.wrap
= TRUE
;
222 (*a
)->data
.sendtodir
.follow
= TRUE
;
225 void setup_action_send_to_desktop_down(ObAction
**a
, ObUserAction uact
)
227 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
228 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
229 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_SOUTH
;
230 (*a
)->data
.sendtodir
.linear
= FALSE
;
231 (*a
)->data
.sendtodir
.wrap
= TRUE
;
232 (*a
)->data
.sendtodir
.follow
= TRUE
;
235 void setup_action_desktop(ObAction
**a
, ObUserAction uact
)
237 (*a
)->data
.desktop
.inter
.any
.interactive
= FALSE
;
240 void setup_action_desktop_prev(ObAction
**a
, ObUserAction uact
)
242 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
243 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_WEST
;
244 (*a
)->data
.desktopdir
.linear
= TRUE
;
245 (*a
)->data
.desktopdir
.wrap
= TRUE
;
248 void setup_action_desktop_next(ObAction
**a
, ObUserAction uact
)
250 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
251 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_EAST
;
252 (*a
)->data
.desktopdir
.linear
= TRUE
;
253 (*a
)->data
.desktopdir
.wrap
= TRUE
;
256 void setup_action_desktop_left(ObAction
**a
, ObUserAction uact
)
258 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
259 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_WEST
;
260 (*a
)->data
.desktopdir
.linear
= FALSE
;
261 (*a
)->data
.desktopdir
.wrap
= TRUE
;
264 void setup_action_desktop_right(ObAction
**a
, ObUserAction uact
)
266 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
267 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_EAST
;
268 (*a
)->data
.desktopdir
.linear
= FALSE
;
269 (*a
)->data
.desktopdir
.wrap
= TRUE
;
272 void setup_action_desktop_up(ObAction
**a
, ObUserAction uact
)
274 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
275 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_NORTH
;
276 (*a
)->data
.desktopdir
.linear
= FALSE
;
277 (*a
)->data
.desktopdir
.wrap
= TRUE
;
280 void setup_action_desktop_down(ObAction
**a
, ObUserAction uact
)
282 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
283 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_SOUTH
;
284 (*a
)->data
.desktopdir
.linear
= FALSE
;
285 (*a
)->data
.desktopdir
.wrap
= TRUE
;
288 void setup_action_cycle_windows_next(ObAction
**a
, ObUserAction uact
)
290 (*a
)->data
.cycle
.inter
.any
.interactive
= TRUE
;
291 (*a
)->data
.cycle
.linear
= FALSE
;
292 (*a
)->data
.cycle
.forward
= TRUE
;
293 (*a
)->data
.cycle
.dialog
= TRUE
;
296 void setup_action_cycle_windows_previous(ObAction
**a
, ObUserAction uact
)
298 (*a
)->data
.cycle
.inter
.any
.interactive
= TRUE
;
299 (*a
)->data
.cycle
.linear
= FALSE
;
300 (*a
)->data
.cycle
.forward
= FALSE
;
301 (*a
)->data
.cycle
.dialog
= TRUE
;
304 void setup_action_movetoedge_north(ObAction
**a
, ObUserAction uact
)
306 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
307 (*a
)->data
.diraction
.direction
= OB_DIRECTION_NORTH
;
310 void setup_action_movetoedge_south(ObAction
**a
, ObUserAction uact
)
312 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
313 (*a
)->data
.diraction
.direction
= OB_DIRECTION_SOUTH
;
316 void setup_action_movetoedge_east(ObAction
**a
, ObUserAction uact
)
318 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
319 (*a
)->data
.diraction
.direction
= OB_DIRECTION_EAST
;
322 void setup_action_movetoedge_west(ObAction
**a
, ObUserAction uact
)
324 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
325 (*a
)->data
.diraction
.direction
= OB_DIRECTION_WEST
;
328 void setup_action_growtoedge_north(ObAction
**a
, ObUserAction uact
)
330 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
331 (*a
)->data
.diraction
.direction
= OB_DIRECTION_NORTH
;
334 void setup_action_growtoedge_south(ObAction
**a
, ObUserAction uact
)
336 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
337 (*a
)->data
.diraction
.direction
= OB_DIRECTION_SOUTH
;
340 void setup_action_growtoedge_east(ObAction
**a
, ObUserAction uact
)
342 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
343 (*a
)->data
.diraction
.direction
= OB_DIRECTION_EAST
;
346 void setup_action_growtoedge_west(ObAction
**a
, ObUserAction uact
)
348 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
349 (*a
)->data
.diraction
.direction
= OB_DIRECTION_WEST
;
352 void setup_action_top_layer(ObAction
**a
, ObUserAction uact
)
354 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
355 (*a
)->data
.layer
.layer
= 1;
358 void setup_action_normal_layer(ObAction
**a
, ObUserAction uact
)
360 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
361 (*a
)->data
.layer
.layer
= 0;
364 void setup_action_bottom_layer(ObAction
**a
, ObUserAction uact
)
366 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
367 (*a
)->data
.layer
.layer
= -1;
370 void setup_action_move(ObAction
**a
, ObUserAction uact
)
372 (*a
)->data
.moveresize
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
373 (*a
)->data
.moveresize
.move
= TRUE
;
374 (*a
)->data
.moveresize
.keyboard
=
375 (uact
== OB_USER_ACTION_NONE
||
376 uact
== OB_USER_ACTION_KEYBOARD_KEY
||
377 uact
== OB_USER_ACTION_MENU_SELECTION
);
380 void setup_action_resize(ObAction
**a
, ObUserAction uact
)
382 (*a
)->data
.moveresize
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
383 (*a
)->data
.moveresize
.move
= FALSE
;
384 (*a
)->data
.moveresize
.keyboard
=
385 (uact
== OB_USER_ACTION_NONE
||
386 uact
== OB_USER_ACTION_KEYBOARD_KEY
||
387 uact
== OB_USER_ACTION_MENU_SELECTION
);
390 void setup_action_showmenu(ObAction
**a
, ObUserAction uact
)
392 (*a
)->data
.showmenu
.any
.client_action
= OB_CLIENT_ACTION_OPTIONAL
;
393 /* you cannot call ShowMenu from inside a menu, cuz the menu code makes
394 assumptions that there is only one menu (and submenus) open at
396 if (uact
== OB_USER_ACTION_MENU_SELECTION
) {
402 void setup_client_action(ObAction
**a
, ObUserAction uact
)
404 (*a
)->data
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
407 ActionString actionstrings
[] =
415 "directionalfocusnorth",
416 action_directional_focus
,
417 setup_action_directional_focus_north
420 "directionalfocuseast",
421 action_directional_focus
,
422 setup_action_directional_focus_east
425 "directionalfocussouth",
426 action_directional_focus
,
427 setup_action_directional_focus_south
430 "directionalfocuswest",
431 action_directional_focus
,
432 setup_action_directional_focus_west
435 "directionalfocusnortheast",
436 action_directional_focus
,
437 setup_action_directional_focus_northeast
440 "directionalfocussoutheast",
441 action_directional_focus
,
442 setup_action_directional_focus_southeast
445 "directionalfocussouthwest",
446 action_directional_focus
,
447 setup_action_directional_focus_southwest
450 "directionalfocusnorthwest",
451 action_directional_focus
,
452 setup_action_directional_focus_northwest
476 action_focus_order_to_bottom
,
531 action_toggle_omnipresent
,
536 action_move_relative_horz
,
541 action_move_relative_vert
,
546 action_move_to_center
,
550 "resizerelativehorz",
551 action_resize_relative_horz
,
555 "resizerelativevert",
556 action_resize_relative_vert
,
561 action_move_relative
,
566 action_resize_relative
,
571 action_maximize_full
,
576 action_unmaximize_full
,
580 "togglemaximizefull",
581 action_toggle_maximize_full
,
586 action_maximize_horz
,
591 action_unmaximize_horz
,
595 "togglemaximizehorz",
596 action_toggle_maximize_horz
,
601 action_maximize_vert
,
606 action_unmaximize_vert
,
610 "togglemaximizevert",
611 action_toggle_maximize_vert
,
616 action_toggle_fullscreen
,
621 action_send_to_desktop
,
622 setup_action_send_to_desktop
626 action_send_to_desktop_dir
,
627 setup_action_send_to_desktop_next
630 "sendtodesktopprevious",
631 action_send_to_desktop_dir
,
632 setup_action_send_to_desktop_prev
635 "sendtodesktopright",
636 action_send_to_desktop_dir
,
637 setup_action_send_to_desktop_right
641 action_send_to_desktop_dir
,
642 setup_action_send_to_desktop_left
646 action_send_to_desktop_dir
,
647 setup_action_send_to_desktop_up
651 action_send_to_desktop_dir
,
652 setup_action_send_to_desktop_down
662 setup_action_desktop_next
667 setup_action_desktop_prev
672 setup_action_desktop_right
677 setup_action_desktop_left
682 setup_action_desktop_up
687 setup_action_desktop_down
691 action_toggle_decorations
,
705 "toggledockautohide",
706 action_toggle_dockautohide
,
711 action_toggle_show_desktop
,
721 action_unshow_desktop
,
747 setup_action_showmenu
751 action_send_to_layer
,
752 setup_action_top_layer
757 setup_action_top_layer
761 action_send_to_layer
,
762 setup_action_normal_layer
766 action_send_to_layer
,
767 setup_action_bottom_layer
770 "togglealwaysonbottom",
772 setup_action_bottom_layer
776 action_cycle_windows
,
777 setup_action_cycle_windows_next
781 action_cycle_windows
,
782 setup_action_cycle_windows_previous
787 setup_action_movetoedge_north
792 setup_action_movetoedge_south
797 setup_action_movetoedge_west
802 setup_action_movetoedge_east
807 setup_action_growtoedge_north
812 setup_action_growtoedge_south
817 setup_action_growtoedge_west
822 setup_action_growtoedge_east
831 /* only key bindings can be interactive. thus saith the xor.
832 because of how the mouse is grabbed, mouse events dont even get
833 read during interactive events, so no dice! >:) */
834 #define INTERACTIVE_LIMIT(a, uact) \
835 if (uact != OB_USER_ACTION_KEYBOARD_KEY) \
836 a->data.any.interactive = FALSE;
838 ObAction
*action_from_string(const gchar
*name
, ObUserAction uact
)
841 gboolean exist
= FALSE
;
844 for (i
= 0; actionstrings
[i
].name
; i
++)
845 if (!g_ascii_strcasecmp(name
, actionstrings
[i
].name
)) {
847 a
= action_new(actionstrings
[i
].func
);
848 if (actionstrings
[i
].setup
)
849 actionstrings
[i
].setup(&a
, uact
);
851 INTERACTIVE_LIMIT(a
, uact
);
855 g_warning("Invalid action '%s' requested. No such action exists.",
858 g_warning("Invalid use of action '%s'. Action will be ignored.", name
);
862 ObAction
*action_parse(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
866 ObAction
*act
= NULL
;
869 if (parse_attr_string("name", node
, &actname
)) {
870 if ((act
= action_from_string(actname
, uact
))) {
871 if (act
->func
== action_execute
|| act
->func
== action_restart
) {
872 if ((n
= parse_find_node("execute", node
->xmlChildrenNode
))) {
873 gchar
*s
= parse_string(doc
, n
);
874 act
->data
.execute
.path
= parse_expand_tilde(s
);
877 } else if (act
->func
== action_showmenu
) {
878 if ((n
= parse_find_node("menu", node
->xmlChildrenNode
)))
879 act
->data
.showmenu
.name
= parse_string(doc
, n
);
880 } else if (act
->func
== action_move_relative_horz
||
881 act
->func
== action_move_relative_vert
||
882 act
->func
== action_resize_relative_horz
||
883 act
->func
== action_resize_relative_vert
) {
884 if ((n
= parse_find_node("delta", node
->xmlChildrenNode
)))
885 act
->data
.relative
.deltax
= parse_int(doc
, n
);
886 } else if (act
->func
== action_move_relative
) {
887 if ((n
= parse_find_node("x", node
->xmlChildrenNode
)))
888 act
->data
.relative
.deltax
= parse_int(doc
, n
);
889 if ((n
= parse_find_node("y", node
->xmlChildrenNode
)))
890 act
->data
.relative
.deltay
= parse_int(doc
, n
);
891 } else if (act
->func
== action_resize_relative
) {
892 if ((n
= parse_find_node("left", node
->xmlChildrenNode
)))
893 act
->data
.relative
.deltaxl
= parse_int(doc
, n
);
894 if ((n
= parse_find_node("up", node
->xmlChildrenNode
)))
895 act
->data
.relative
.deltayu
= parse_int(doc
, n
);
896 if ((n
= parse_find_node("right", node
->xmlChildrenNode
)))
897 act
->data
.relative
.deltax
= parse_int(doc
, n
);
898 if ((n
= parse_find_node("down", node
->xmlChildrenNode
)))
899 act
->data
.relative
.deltay
= parse_int(doc
, n
);
900 } else if (act
->func
== action_desktop
) {
901 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
902 act
->data
.desktop
.desk
= parse_int(doc
, n
);
903 if (act
->data
.desktop
.desk
> 0) act
->data
.desktop
.desk
--;
904 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
905 act
->data
.desktop
.inter
.any
.interactive
=
907 } else if (act
->func
== action_send_to_desktop
) {
908 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
909 act
->data
.sendto
.desk
= parse_int(doc
, n
);
910 if (act
->data
.sendto
.desk
> 0) act
->data
.sendto
.desk
--;
911 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
912 act
->data
.sendto
.follow
= parse_bool(doc
, n
);
913 } else if (act
->func
== action_desktop_dir
) {
914 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
915 act
->data
.desktopdir
.wrap
= parse_bool(doc
, n
);
916 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
917 act
->data
.desktopdir
.inter
.any
.interactive
=
919 } else if (act
->func
== action_send_to_desktop_dir
) {
920 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
921 act
->data
.sendtodir
.wrap
= parse_bool(doc
, n
);
922 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
923 act
->data
.sendtodir
.follow
= parse_bool(doc
, n
);
924 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
925 act
->data
.sendtodir
.inter
.any
.interactive
=
927 } else if (act
->func
== action_activate
) {
928 if ((n
= parse_find_node("here", node
->xmlChildrenNode
)))
929 act
->data
.activate
.here
= parse_bool(doc
, n
);
930 } else if (act
->func
== action_cycle_windows
) {
931 if ((n
= parse_find_node("linear", node
->xmlChildrenNode
)))
932 act
->data
.cycle
.linear
= parse_bool(doc
, n
);
933 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
934 act
->data
.cycle
.dialog
= parse_bool(doc
, n
);
935 } else if (act
->func
== action_directional_focus
) {
936 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
937 act
->data
.cycle
.dialog
= parse_bool(doc
, n
);
938 } else if (act
->func
== action_raise
||
939 act
->func
== action_lower
||
940 act
->func
== action_raiselower
||
941 act
->func
== action_shadelower
||
942 act
->func
== action_unshaderaise
) {
943 if ((n
= parse_find_node("group", node
->xmlChildrenNode
)))
944 act
->data
.stacking
.group
= parse_bool(doc
, n
);
946 INTERACTIVE_LIMIT(act
, uact
);
953 void action_run_list(GSList
*acts
, ObClient
*c
, ObFrameContext context
,
954 guint state
, guint button
, gint x
, gint y
,
955 gboolean cancel
, gboolean done
)
959 gboolean inter
= FALSE
;
965 screen_pointer_pos(&x
, &y
);
967 if (grab_on_keyboard())
970 for (it
= acts
; it
; it
= g_slist_next(it
)) {
972 if (a
->data
.any
.interactive
) {
979 /* sometimes when we execute another app as an action,
980 it won't work right unless we XUngrabKeyboard first,
981 even though we grabbed the key/button Asychronously.
982 e.g. "gnome-panel-control --main-menu" */
983 XUngrabKeyboard(ob_display
, event_lasttime
);
986 for (it
= acts
; it
; it
= g_slist_next(it
)) {
989 if (!(a
->data
.any
.client_action
== OB_CLIENT_ACTION_ALWAYS
&& !c
)) {
990 a
->data
.any
.c
= a
->data
.any
.client_action
? c
: NULL
;
991 a
->data
.any
.context
= context
;
995 a
->data
.any
.button
= button
;
997 if (a
->data
.any
.interactive
) {
998 a
->data
.inter
.cancel
= cancel
;
999 a
->data
.inter
.final
= done
;
1000 if (!(cancel
|| done
))
1001 if (!keyboard_interactive_grab(state
, a
->data
.any
.c
, a
))
1005 /* XXX UGLY HACK race with motion event starting a move and the
1006 button release gettnig processed first. answer: don't queue
1007 moveresize starts. UGLY HACK XXX */
1008 if (a
->data
.any
.interactive
|| a
->func
== action_moveresize
) {
1009 /* interactive actions are not queued */
1012 ob_main_loop_queue_action(ob_main_loop
, a
);
1017 void action_run_string(const gchar
*name
, struct _ObClient
*c
)
1022 a
= action_from_string(name
, OB_USER_ACTION_NONE
);
1025 l
= g_slist_append(NULL
, a
);
1027 action_run(l
, c
, 0);
1030 void action_execute(union ActionData
*data
)
1033 gchar
*cmd
, **argv
= 0;
1034 if (data
->execute
.path
) {
1035 cmd
= g_filename_from_utf8(data
->execute
.path
, -1, NULL
, NULL
, NULL
);
1037 if (!g_shell_parse_argv (cmd
, NULL
, &argv
, &e
)) {
1038 g_warning("failed to execute '%s': %s",
1042 if (!g_spawn_async(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
|
1043 G_SPAWN_DO_NOT_REAP_CHILD
,
1044 NULL
, NULL
, NULL
, &e
)) {
1045 g_warning("failed to execute '%s': %s",
1053 g_warning("failed to convert '%s' from utf8", data
->execute
.path
);
1058 void action_activate(union ActionData
*data
)
1060 client_activate(data
->activate
.any
.c
, data
->activate
.here
);
1063 void action_focus(union ActionData
*data
)
1065 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1067 event_halt_focus_delay();
1069 client_focus(data
->client
.any
.c
);
1072 void action_unfocus (union ActionData
*data
)
1074 client_unfocus(data
->client
.any
.c
);
1077 void action_iconify(union ActionData
*data
)
1079 client_action_start(data
);
1080 client_iconify(data
->client
.any
.c
, TRUE
, TRUE
);
1081 client_action_end(data
);
1084 void action_focus_order_to_bottom(union ActionData
*data
)
1086 focus_order_to_bottom(data
->client
.any
.c
);
1089 void action_raiselower(union ActionData
*data
)
1091 ObClient
*c
= data
->client
.any
.c
;
1093 gboolean raise
= FALSE
;
1095 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
1096 ObClient
*cit
= it
->data
;
1098 if (cit
== c
) break;
1099 if (client_normal(cit
) == client_normal(c
) &&
1100 cit
->layer
== c
->layer
&&
1101 cit
->frame
->visible
&&
1102 !client_search_transient(c
, cit
))
1104 if (RECT_INTERSECTS_RECT(cit
->frame
->area
, c
->frame
->area
)) {
1117 void action_raise(union ActionData
*data
)
1119 client_action_start(data
);
1120 stacking_raise(CLIENT_AS_WINDOW(data
->client
.any
.c
), data
->stacking
.group
);
1121 client_action_end(data
);
1124 void action_unshaderaise(union ActionData
*data
)
1126 if (data
->client
.any
.c
->shaded
)
1127 action_unshade(data
);
1132 void action_shadelower(union ActionData
*data
)
1134 if (data
->client
.any
.c
->shaded
)
1140 void action_lower(union ActionData
*data
)
1142 client_action_start(data
);
1143 stacking_lower(CLIENT_AS_WINDOW(data
->client
.any
.c
), data
->stacking
.group
);
1144 client_action_end(data
);
1147 void action_close(union ActionData
*data
)
1149 client_close(data
->client
.any
.c
);
1152 void action_kill(union ActionData
*data
)
1154 client_kill(data
->client
.any
.c
);
1157 void action_shade(union ActionData
*data
)
1159 client_action_start(data
);
1160 client_shade(data
->client
.any
.c
, TRUE
);
1161 client_action_end(data
);
1164 void action_unshade(union ActionData
*data
)
1166 client_action_start(data
);
1167 client_shade(data
->client
.any
.c
, FALSE
);
1168 client_action_end(data
);
1171 void action_toggle_shade(union ActionData
*data
)
1173 client_action_start(data
);
1174 client_shade(data
->client
.any
.c
, !data
->client
.any
.c
->shaded
);
1175 client_action_end(data
);
1178 void action_toggle_omnipresent(union ActionData
*data
)
1180 client_set_desktop(data
->client
.any
.c
,
1181 data
->client
.any
.c
->desktop
== DESKTOP_ALL
?
1182 screen_desktop
: DESKTOP_ALL
, FALSE
);
1185 void action_move_relative_horz(union ActionData
*data
)
1187 ObClient
*c
= data
->relative
.any
.c
;
1188 client_action_start(data
);
1189 client_move(c
, c
->area
.x
+ data
->relative
.deltax
, c
->area
.y
);
1190 client_action_end(data
);
1193 void action_move_relative_vert(union ActionData
*data
)
1195 ObClient
*c
= data
->relative
.any
.c
;
1196 client_action_start(data
);
1197 client_move(c
, c
->area
.x
, c
->area
.y
+ data
->relative
.deltax
);
1198 client_action_end(data
);
1201 void action_move_to_center(union ActionData
*data
)
1203 ObClient
*c
= data
->client
.any
.c
;
1205 area
= screen_area_monitor(c
->desktop
, 0);
1206 client_action_start(data
);
1207 client_move(c
, area
->width
/ 2 - c
->area
.width
/ 2,
1208 area
->height
/ 2 - c
->area
.height
/ 2);
1209 client_action_end(data
);
1212 void action_resize_relative_horz(union ActionData
*data
)
1214 ObClient
*c
= data
->relative
.any
.c
;
1215 client_action_start(data
);
1217 c
->area
.width
+ data
->relative
.deltax
* c
->size_inc
.width
,
1219 client_action_end(data
);
1222 void action_resize_relative_vert(union ActionData
*data
)
1224 ObClient
*c
= data
->relative
.any
.c
;
1226 client_action_start(data
);
1227 client_resize(c
, c
->area
.width
, c
->area
.height
+
1228 data
->relative
.deltax
* c
->size_inc
.height
);
1229 client_action_end(data
);
1233 void action_move_relative(union ActionData
*data
)
1235 ObClient
*c
= data
->relative
.any
.c
;
1236 client_action_start(data
);
1237 client_move(c
, c
->area
.x
+ data
->relative
.deltax
, c
->area
.y
+
1238 data
->relative
.deltay
);
1239 client_action_end(data
);
1242 void action_resize_relative(union ActionData
*data
)
1244 ObClient
*c
= data
->relative
.any
.c
;
1245 client_action_start(data
);
1246 client_move_resize(c
,
1247 c
->area
.x
- data
->relative
.deltaxl
* c
->size_inc
.width
,
1248 c
->area
.y
- data
->relative
.deltayu
* c
->size_inc
.height
,
1249 c
->area
.width
+ data
->relative
.deltax
* c
->size_inc
.width
1250 + data
->relative
.deltaxl
* c
->size_inc
.width
,
1251 c
->area
.height
+ data
->relative
.deltay
* c
->size_inc
.height
1252 + data
->relative
.deltayu
* c
->size_inc
.height
);
1253 client_action_end(data
);
1256 void action_maximize_full(union ActionData
*data
)
1258 client_action_start(data
);
1259 client_maximize(data
->client
.any
.c
, TRUE
, 0, TRUE
);
1260 client_action_end(data
);
1263 void action_unmaximize_full(union ActionData
*data
)
1265 client_action_start(data
);
1266 client_maximize(data
->client
.any
.c
, FALSE
, 0, TRUE
);
1267 client_action_end(data
);
1270 void action_toggle_maximize_full(union ActionData
*data
)
1272 client_action_start(data
);
1273 client_maximize(data
->client
.any
.c
,
1274 !(data
->client
.any
.c
->max_horz
||
1275 data
->client
.any
.c
->max_vert
),
1277 client_action_end(data
);
1280 void action_maximize_horz(union ActionData
*data
)
1282 client_action_start(data
);
1283 client_maximize(data
->client
.any
.c
, TRUE
, 1, TRUE
);
1284 client_action_end(data
);
1287 void action_unmaximize_horz(union ActionData
*data
)
1289 client_action_start(data
);
1290 client_maximize(data
->client
.any
.c
, FALSE
, 1, TRUE
);
1291 client_action_end(data
);
1294 void action_toggle_maximize_horz(union ActionData
*data
)
1296 client_action_start(data
);
1297 client_maximize(data
->client
.any
.c
,
1298 !data
->client
.any
.c
->max_horz
, 1, TRUE
);
1299 client_action_end(data
);
1302 void action_maximize_vert(union ActionData
*data
)
1304 client_action_start(data
);
1305 client_maximize(data
->client
.any
.c
, TRUE
, 2, TRUE
);
1306 client_action_end(data
);
1309 void action_unmaximize_vert(union ActionData
*data
)
1311 client_action_start(data
);
1312 client_maximize(data
->client
.any
.c
, FALSE
, 2, TRUE
);
1313 client_action_end(data
);
1316 void action_toggle_maximize_vert(union ActionData
*data
)
1318 client_action_start(data
);
1319 client_maximize(data
->client
.any
.c
,
1320 !data
->client
.any
.c
->max_vert
, 2, TRUE
);
1321 client_action_end(data
);
1324 void action_toggle_fullscreen(union ActionData
*data
)
1326 client_action_start(data
);
1327 client_fullscreen(data
->client
.any
.c
,
1328 !(data
->client
.any
.c
->fullscreen
), TRUE
);
1329 client_action_end(data
);
1332 void action_send_to_desktop(union ActionData
*data
)
1334 ObClient
*c
= data
->sendto
.any
.c
;
1336 if (!client_normal(c
)) return;
1338 if (data
->sendto
.desk
< screen_num_desktops
||
1339 data
->sendto
.desk
== DESKTOP_ALL
) {
1340 client_set_desktop(c
, data
->sendto
.desk
, data
->sendto
.follow
);
1341 if (data
->sendto
.follow
)
1342 screen_set_desktop(data
->sendto
.desk
);
1346 void action_desktop(union ActionData
*data
)
1348 static guint first
= (unsigned) -1;
1350 if (data
->inter
.any
.interactive
&& first
== (unsigned) -1)
1351 first
= screen_desktop
;
1353 if (!data
->inter
.any
.interactive
||
1354 (!data
->inter
.cancel
&& !data
->inter
.final
))
1356 if (data
->desktop
.desk
< screen_num_desktops
||
1357 data
->desktop
.desk
== DESKTOP_ALL
)
1359 screen_set_desktop(data
->desktop
.desk
);
1360 if (data
->inter
.any
.interactive
)
1361 screen_desktop_popup(data
->desktop
.desk
, TRUE
);
1363 } else if (data
->inter
.cancel
) {
1364 screen_set_desktop(first
);
1367 if (!data
->inter
.any
.interactive
|| data
->inter
.final
) {
1368 screen_desktop_popup(0, FALSE
);
1369 first
= (unsigned) -1;
1373 void action_desktop_dir(union ActionData
*data
)
1377 d
= screen_cycle_desktop(data
->desktopdir
.dir
,
1378 data
->desktopdir
.wrap
,
1379 data
->desktopdir
.linear
,
1380 data
->desktopdir
.inter
.any
.interactive
,
1381 data
->desktopdir
.inter
.final
,
1382 data
->desktopdir
.inter
.cancel
);
1383 if (!data
->sendtodir
.inter
.any
.interactive
||
1384 !data
->sendtodir
.inter
.final
||
1385 data
->sendtodir
.inter
.cancel
)
1387 screen_set_desktop(d
);
1391 void action_send_to_desktop_dir(union ActionData
*data
)
1393 ObClient
*c
= data
->sendtodir
.inter
.any
.c
;
1396 if (!client_normal(c
)) return;
1398 d
= screen_cycle_desktop(data
->sendtodir
.dir
, data
->sendtodir
.wrap
,
1399 data
->sendtodir
.linear
,
1400 data
->sendtodir
.inter
.any
.interactive
,
1401 data
->sendtodir
.inter
.final
,
1402 data
->sendtodir
.inter
.cancel
);
1403 if (!data
->sendtodir
.inter
.any
.interactive
||
1404 !data
->sendtodir
.inter
.final
||
1405 data
->sendtodir
.inter
.cancel
)
1407 client_set_desktop(c
, d
, data
->sendtodir
.follow
);
1408 if (data
->sendtodir
.follow
)
1409 screen_set_desktop(d
);
1413 void action_desktop_last(union ActionData
*data
)
1415 screen_set_desktop(screen_last_desktop
);
1418 void action_toggle_decorations(union ActionData
*data
)
1420 ObClient
*c
= data
->client
.any
.c
;
1422 client_action_start(data
);
1423 client_set_undecorated(c
, !c
->undecorated
);
1424 client_action_end(data
);
1427 static guint32
pick_corner(gint x
, gint y
, gint cx
, gint cy
, gint cw
, gint ch
)
1429 if (config_resize_four_corners
) {
1430 if (x
- cx
> cw
/ 2) {
1431 if (y
- cy
> ch
/ 2)
1432 return prop_atoms
.net_wm_moveresize_size_bottomright
;
1434 return prop_atoms
.net_wm_moveresize_size_topright
;
1436 if (y
- cy
> ch
/ 2)
1437 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
1439 return prop_atoms
.net_wm_moveresize_size_topleft
;
1442 if (x
- cx
> cw
* 2 / 3) {
1443 if (y
- cy
> ch
* 2 / 3)
1444 return prop_atoms
.net_wm_moveresize_size_bottomright
;
1445 else if (y
- cy
< ch
/ 3)
1446 return prop_atoms
.net_wm_moveresize_size_topright
;
1448 return prop_atoms
.net_wm_moveresize_size_right
;
1449 } else if (x
- cx
< cw
/ 3) {
1450 if (y
- cy
> ch
* 2 / 3)
1451 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
1452 else if (y
- cy
< ch
/ 3)
1453 return prop_atoms
.net_wm_moveresize_size_topleft
;
1455 return prop_atoms
.net_wm_moveresize_size_left
;
1457 if (y
- cy
> ch
* 2 / 3)
1458 return prop_atoms
.net_wm_moveresize_size_bottom
;
1459 else if (y
- cy
< ch
/ 3)
1460 return prop_atoms
.net_wm_moveresize_size_top
;
1462 return prop_atoms
.net_wm_moveresize_move
;
1466 void action_moveresize(union ActionData
*data
)
1468 ObClient
*c
= data
->moveresize
.any
.c
;
1471 if (!client_normal(c
)) return;
1473 if (data
->moveresize
.keyboard
) {
1474 corner
= (data
->moveresize
.move
?
1475 prop_atoms
.net_wm_moveresize_move_keyboard
:
1476 prop_atoms
.net_wm_moveresize_size_keyboard
);
1478 corner
= (data
->moveresize
.move
?
1479 prop_atoms
.net_wm_moveresize_move
:
1480 pick_corner(data
->any
.x
, data
->any
.y
,
1481 c
->frame
->area
.x
, c
->frame
->area
.y
,
1482 /* use the client size because the frame
1483 can be differently sized (shaded
1484 windows) and we want this based on the
1486 c
->area
.width
+ c
->frame
->size
.left
+
1487 c
->frame
->size
.right
,
1488 c
->area
.height
+ c
->frame
->size
.top
+
1489 c
->frame
->size
.bottom
));
1492 moveresize_start(c
, data
->any
.x
, data
->any
.y
, data
->any
.button
, corner
);
1495 void action_reconfigure(union ActionData
*data
)
1500 void action_restart(union ActionData
*data
)
1502 ob_restart_other(data
->execute
.path
);
1505 void action_exit(union ActionData
*data
)
1510 void action_showmenu(union ActionData
*data
)
1512 if (data
->showmenu
.name
) {
1513 menu_show(data
->showmenu
.name
, data
->any
.x
, data
->any
.y
,
1514 data
->showmenu
.any
.c
);
1518 void action_cycle_windows(union ActionData
*data
)
1520 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1522 event_halt_focus_delay();
1524 focus_cycle(data
->cycle
.forward
, data
->cycle
.linear
, data
->any
.interactive
,
1526 data
->cycle
.inter
.final
, data
->cycle
.inter
.cancel
);
1529 void action_directional_focus(union ActionData
*data
)
1531 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1533 event_halt_focus_delay();
1535 focus_directional_cycle(data
->interdiraction
.direction
,
1536 data
->any
.interactive
,
1537 data
->interdiraction
.dialog
,
1538 data
->interdiraction
.inter
.final
,
1539 data
->interdiraction
.inter
.cancel
);
1542 void action_movetoedge(union ActionData
*data
)
1545 ObClient
*c
= data
->diraction
.any
.c
;
1547 x
= c
->frame
->area
.x
;
1548 y
= c
->frame
->area
.y
;
1550 switch(data
->diraction
.direction
) {
1551 case OB_DIRECTION_NORTH
:
1552 y
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
);
1554 case OB_DIRECTION_WEST
:
1555 x
= client_directional_edge_search(c
, OB_DIRECTION_WEST
);
1557 case OB_DIRECTION_SOUTH
:
1558 y
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
) -
1559 c
->frame
->area
.height
;
1561 case OB_DIRECTION_EAST
:
1562 x
= client_directional_edge_search(c
, OB_DIRECTION_EAST
) -
1563 c
->frame
->area
.width
;
1566 g_assert_not_reached();
1568 frame_frame_gravity(c
->frame
, &x
, &y
);
1569 client_action_start(data
);
1570 client_move(c
, x
, y
);
1571 client_action_end(data
);
1574 void action_growtoedge(union ActionData
*data
)
1576 gint x
, y
, width
, height
, dest
;
1577 ObClient
*c
= data
->diraction
.any
.c
;
1580 //FIXME growtoedge resizes shaded windows to 0 height
1584 a
= screen_area(c
->desktop
);
1585 x
= c
->frame
->area
.x
;
1586 y
= c
->frame
->area
.y
;
1587 width
= c
->frame
->area
.width
;
1588 height
= c
->frame
->area
.height
;
1590 switch(data
->diraction
.direction
) {
1591 case OB_DIRECTION_NORTH
:
1592 dest
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
);
1594 height
= c
->frame
->area
.height
/ 2;
1596 height
= c
->frame
->area
.y
+ c
->frame
->area
.height
- dest
;
1600 case OB_DIRECTION_WEST
:
1601 dest
= client_directional_edge_search(c
, OB_DIRECTION_WEST
);
1603 width
= c
->frame
->area
.width
/ 2;
1605 width
= c
->frame
->area
.x
+ c
->frame
->area
.width
- dest
;
1609 case OB_DIRECTION_SOUTH
:
1610 dest
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
);
1611 if (a
->y
+ a
->height
== y
+ c
->frame
->area
.height
) {
1612 height
= c
->frame
->area
.height
/ 2;
1613 y
= a
->y
+ a
->height
- height
;
1615 height
= dest
- c
->frame
->area
.y
;
1616 y
+= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1617 height
-= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1619 case OB_DIRECTION_EAST
:
1620 dest
= client_directional_edge_search(c
, OB_DIRECTION_EAST
);
1621 if (a
->x
+ a
->width
== x
+ c
->frame
->area
.width
) {
1622 width
= c
->frame
->area
.width
/ 2;
1623 x
= a
->x
+ a
->width
- width
;
1625 width
= dest
- c
->frame
->area
.x
;
1626 x
+= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1627 width
-= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1630 g_assert_not_reached();
1632 frame_frame_gravity(c
->frame
, &x
, &y
);
1633 width
-= c
->frame
->size
.left
+ c
->frame
->size
.right
;
1634 height
-= c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
1635 client_action_start(data
);
1636 client_move_resize(c
, x
, y
, width
, height
);
1637 client_action_end(data
);
1640 void action_send_to_layer(union ActionData
*data
)
1642 client_set_layer(data
->layer
.any
.c
, data
->layer
.layer
);
1645 void action_toggle_layer(union ActionData
*data
)
1647 ObClient
*c
= data
->layer
.any
.c
;
1649 client_action_start(data
);
1650 if (data
->layer
.layer
< 0)
1651 client_set_layer(c
, c
->below
? 0 : -1);
1652 else if (data
->layer
.layer
> 0)
1653 client_set_layer(c
, c
->above
? 0 : 1);
1654 client_action_end(data
);
1657 void action_toggle_dockautohide(union ActionData
*data
)
1659 config_dock_hide
= !config_dock_hide
;
1663 void action_toggle_show_desktop(union ActionData
*data
)
1665 screen_show_desktop(!screen_showing_desktop
);
1668 void action_show_desktop(union ActionData
*data
)
1670 screen_show_desktop(TRUE
);
1673 void action_unshow_desktop(union ActionData
*data
)
1675 screen_show_desktop(FALSE
);