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
526 action_toggle_omnipresent
,
531 action_move_relative_horz
,
536 action_move_relative_vert
,
541 action_move_to_center
,
545 "resizerelativehorz",
546 action_resize_relative_horz
,
550 "resizerelativevert",
551 action_resize_relative_vert
,
556 action_maximize_full
,
561 action_unmaximize_full
,
565 "togglemaximizefull",
566 action_toggle_maximize_full
,
571 action_maximize_horz
,
576 action_unmaximize_horz
,
580 "togglemaximizehorz",
581 action_toggle_maximize_horz
,
586 action_maximize_vert
,
591 action_unmaximize_vert
,
595 "togglemaximizevert",
596 action_toggle_maximize_vert
,
601 action_toggle_fullscreen
,
606 action_send_to_desktop
,
607 setup_action_send_to_desktop
611 action_send_to_desktop_dir
,
612 setup_action_send_to_desktop_next
615 "sendtodesktopprevious",
616 action_send_to_desktop_dir
,
617 setup_action_send_to_desktop_prev
620 "sendtodesktopright",
621 action_send_to_desktop_dir
,
622 setup_action_send_to_desktop_right
626 action_send_to_desktop_dir
,
627 setup_action_send_to_desktop_left
631 action_send_to_desktop_dir
,
632 setup_action_send_to_desktop_up
636 action_send_to_desktop_dir
,
637 setup_action_send_to_desktop_down
647 setup_action_desktop_next
652 setup_action_desktop_prev
657 setup_action_desktop_right
662 setup_action_desktop_left
667 setup_action_desktop_up
672 setup_action_desktop_down
676 action_toggle_decorations
,
690 "toggledockautohide",
691 action_toggle_dockautohide
,
696 action_toggle_show_desktop
,
706 action_unshow_desktop
,
732 setup_action_showmenu
736 action_send_to_layer
,
737 setup_action_top_layer
742 setup_action_top_layer
746 action_send_to_layer
,
747 setup_action_normal_layer
751 action_send_to_layer
,
752 setup_action_bottom_layer
755 "togglealwaysonbottom",
757 setup_action_bottom_layer
761 action_cycle_windows
,
762 setup_action_cycle_windows_next
766 action_cycle_windows
,
767 setup_action_cycle_windows_previous
772 setup_action_movetoedge_north
777 setup_action_movetoedge_south
782 setup_action_movetoedge_west
787 setup_action_movetoedge_east
792 setup_action_growtoedge_north
797 setup_action_growtoedge_south
802 setup_action_growtoedge_west
807 setup_action_growtoedge_east
816 /* only key bindings can be interactive. thus saith the xor.
817 because of how the mouse is grabbed, mouse events dont even get
818 read during interactive events, so no dice! >:) */
819 #define INTERACTIVE_LIMIT(a, uact) \
820 if (uact != OB_USER_ACTION_KEYBOARD_KEY) \
821 a->data.any.interactive = FALSE;
823 ObAction
*action_from_string(const gchar
*name
, ObUserAction uact
)
826 gboolean exist
= FALSE
;
829 for (i
= 0; actionstrings
[i
].name
; i
++)
830 if (!g_ascii_strcasecmp(name
, actionstrings
[i
].name
)) {
832 a
= action_new(actionstrings
[i
].func
);
833 if (actionstrings
[i
].setup
)
834 actionstrings
[i
].setup(&a
, uact
);
836 INTERACTIVE_LIMIT(a
, uact
);
840 g_warning("Invalid action '%s' requested. No such action exists.",
843 g_warning("Invalid use of action '%s'. Action will be ignored.", name
);
847 ObAction
*action_parse(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
851 ObAction
*act
= NULL
;
854 if (parse_attr_string("name", node
, &actname
)) {
855 if ((act
= action_from_string(actname
, uact
))) {
856 if (act
->func
== action_execute
|| act
->func
== action_restart
) {
857 if ((n
= parse_find_node("execute", node
->xmlChildrenNode
))) {
858 gchar
*s
= parse_string(doc
, n
);
859 act
->data
.execute
.path
= parse_expand_tilde(s
);
862 } else if (act
->func
== action_showmenu
) {
863 if ((n
= parse_find_node("menu", node
->xmlChildrenNode
)))
864 act
->data
.showmenu
.name
= parse_string(doc
, n
);
865 } else if (act
->func
== action_move_relative_horz
||
866 act
->func
== action_move_relative_vert
||
867 act
->func
== action_resize_relative_horz
||
868 act
->func
== action_resize_relative_vert
) {
869 if ((n
= parse_find_node("delta", node
->xmlChildrenNode
)))
870 act
->data
.relative
.delta
= parse_int(doc
, n
);
871 } else if (act
->func
== action_desktop
) {
872 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
873 act
->data
.desktop
.desk
= parse_int(doc
, n
);
874 if (act
->data
.desktop
.desk
> 0) act
->data
.desktop
.desk
--;
875 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
876 act
->data
.desktop
.inter
.any
.interactive
=
878 } else if (act
->func
== action_send_to_desktop
) {
879 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
880 act
->data
.sendto
.desk
= parse_int(doc
, n
);
881 if (act
->data
.sendto
.desk
> 0) act
->data
.sendto
.desk
--;
882 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
883 act
->data
.sendto
.follow
= parse_bool(doc
, n
);
884 } else if (act
->func
== action_desktop_dir
) {
885 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
886 act
->data
.desktopdir
.wrap
= parse_bool(doc
, n
);
887 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
888 act
->data
.desktopdir
.inter
.any
.interactive
=
890 } else if (act
->func
== action_send_to_desktop_dir
) {
891 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
892 act
->data
.sendtodir
.wrap
= parse_bool(doc
, n
);
893 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
894 act
->data
.sendtodir
.follow
= parse_bool(doc
, n
);
895 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
896 act
->data
.sendtodir
.inter
.any
.interactive
=
898 } else if (act
->func
== action_activate
) {
899 if ((n
= parse_find_node("here", node
->xmlChildrenNode
)))
900 act
->data
.activate
.here
= parse_bool(doc
, n
);
901 } else if (act
->func
== action_cycle_windows
) {
902 if ((n
= parse_find_node("linear", node
->xmlChildrenNode
)))
903 act
->data
.cycle
.linear
= parse_bool(doc
, n
);
904 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
905 act
->data
.cycle
.dialog
= parse_bool(doc
, n
);
906 } else if (act
->func
== action_directional_focus
) {
907 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
908 act
->data
.cycle
.dialog
= parse_bool(doc
, n
);
910 INTERACTIVE_LIMIT(act
, uact
);
917 void action_run_list(GSList
*acts
, ObClient
*c
, ObFrameContext context
,
918 guint state
, guint button
, gint x
, gint y
,
919 gboolean cancel
, gboolean done
)
923 gboolean inter
= FALSE
;
929 screen_pointer_pos(&x
, &y
);
931 if (grab_on_keyboard())
934 for (it
= acts
; it
; it
= g_slist_next(it
)) {
936 if (a
->data
.any
.interactive
) {
943 /* sometimes when we execute another app as an action,
944 it won't work right unless we XUngrabKeyboard first,
945 even though we grabbed the key/button Asychronously.
946 e.g. "gnome-panel-control --main-menu" */
947 XUngrabKeyboard(ob_display
, event_lasttime
);
950 for (it
= acts
; it
; it
= g_slist_next(it
)) {
953 if (!(a
->data
.any
.client_action
== OB_CLIENT_ACTION_ALWAYS
&& !c
)) {
954 a
->data
.any
.c
= a
->data
.any
.client_action
? c
: NULL
;
955 a
->data
.any
.context
= context
;
959 a
->data
.any
.button
= button
;
961 if (a
->data
.any
.interactive
) {
962 a
->data
.inter
.cancel
= cancel
;
963 a
->data
.inter
.final
= done
;
964 if (!(cancel
|| done
))
965 if (!keyboard_interactive_grab(state
, a
->data
.any
.c
, a
))
969 /* XXX UGLY HACK race with motion event starting a move and the
970 button release gettnig processed first. answer: don't queue
971 moveresize starts. UGLY HACK XXX */
972 if (a
->data
.any
.interactive
|| a
->func
== action_moveresize
) {
973 /* interactive actions are not queued */
976 ob_main_loop_queue_action(ob_main_loop
, a
);
981 void action_run_string(const gchar
*name
, struct _ObClient
*c
)
986 a
= action_from_string(name
, OB_USER_ACTION_NONE
);
989 l
= g_slist_append(NULL
, a
);
994 void action_execute(union ActionData
*data
)
997 gchar
*cmd
, **argv
= 0;
998 if (data
->execute
.path
) {
999 cmd
= g_filename_from_utf8(data
->execute
.path
, -1, NULL
, NULL
, NULL
);
1001 if (!g_shell_parse_argv (cmd
, NULL
, &argv
, &e
)) {
1002 g_warning("failed to execute '%s': %s",
1006 if (!g_spawn_async(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
|
1007 G_SPAWN_DO_NOT_REAP_CHILD
,
1008 NULL
, NULL
, NULL
, &e
)) {
1009 g_warning("failed to execute '%s': %s",
1017 g_warning("failed to convert '%s' from utf8", data
->execute
.path
);
1022 void action_activate(union ActionData
*data
)
1024 client_activate(data
->activate
.any
.c
, data
->activate
.here
);
1027 void action_focus(union ActionData
*data
)
1029 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1031 event_halt_focus_delay();
1033 client_focus(data
->client
.any
.c
);
1036 void action_unfocus (union ActionData
*data
)
1038 client_unfocus(data
->client
.any
.c
);
1041 void action_iconify(union ActionData
*data
)
1043 client_action_start(data
);
1044 client_iconify(data
->client
.any
.c
, TRUE
, TRUE
);
1045 client_action_end(data
);
1048 void action_raiselower(union ActionData
*data
)
1050 ObClient
*c
= data
->client
.any
.c
;
1052 gboolean raise
= FALSE
;
1054 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
1055 ObClient
*cit
= it
->data
;
1057 if (cit
== c
) break;
1058 if (client_normal(cit
) == client_normal(c
) &&
1059 cit
->layer
== c
->layer
&&
1060 cit
->frame
->visible
&&
1061 !client_search_transient(c
, cit
))
1063 if (RECT_INTERSECTS_RECT(cit
->frame
->area
, c
->frame
->area
)) {
1076 void action_raise(union ActionData
*data
)
1078 client_action_start(data
);
1079 stacking_raise(CLIENT_AS_WINDOW(data
->client
.any
.c
));
1080 client_action_end(data
);
1083 void action_unshaderaise(union ActionData
*data
)
1085 if (data
->client
.any
.c
->shaded
)
1086 action_unshade(data
);
1091 void action_shadelower(union ActionData
*data
)
1093 if (data
->client
.any
.c
->shaded
)
1099 void action_lower(union ActionData
*data
)
1101 client_action_start(data
);
1102 stacking_lower(CLIENT_AS_WINDOW(data
->client
.any
.c
));
1103 client_action_end(data
);
1106 void action_close(union ActionData
*data
)
1108 client_close(data
->client
.any
.c
);
1111 void action_kill(union ActionData
*data
)
1113 client_kill(data
->client
.any
.c
);
1116 void action_shade(union ActionData
*data
)
1118 client_action_start(data
);
1119 client_shade(data
->client
.any
.c
, TRUE
);
1120 client_action_end(data
);
1123 void action_unshade(union ActionData
*data
)
1125 client_action_start(data
);
1126 client_shade(data
->client
.any
.c
, FALSE
);
1127 client_action_end(data
);
1130 void action_toggle_shade(union ActionData
*data
)
1132 client_action_start(data
);
1133 client_shade(data
->client
.any
.c
, !data
->client
.any
.c
->shaded
);
1134 client_action_end(data
);
1137 void action_toggle_omnipresent(union ActionData
*data
)
1139 client_set_desktop(data
->client
.any
.c
,
1140 data
->client
.any
.c
->desktop
== DESKTOP_ALL
?
1141 screen_desktop
: DESKTOP_ALL
, FALSE
);
1144 void action_move_relative_horz(union ActionData
*data
)
1146 ObClient
*c
= data
->relative
.any
.c
;
1147 client_action_start(data
);
1148 client_move(c
, c
->area
.x
+ data
->relative
.delta
, c
->area
.y
);
1149 client_action_end(data
);
1152 void action_move_relative_vert(union ActionData
*data
)
1154 ObClient
*c
= data
->relative
.any
.c
;
1155 client_action_start(data
);
1156 client_move(c
, c
->area
.x
, c
->area
.y
+ data
->relative
.delta
);
1157 client_action_end(data
);
1160 void action_move_to_center(union ActionData
*data
)
1162 ObClient
*c
= data
->client
.any
.c
;
1164 area
= screen_area_monitor(c
->desktop
, 0);
1165 client_action_start(data
);
1166 client_move(c
, area
->width
/ 2 - c
->area
.width
/ 2,
1167 area
->height
/ 2 - c
->area
.height
/ 2);
1168 client_action_end(data
);
1171 void action_resize_relative_horz(union ActionData
*data
)
1173 ObClient
*c
= data
->relative
.any
.c
;
1174 client_action_start(data
);
1176 c
->area
.width
+ data
->relative
.delta
* c
->size_inc
.width
,
1178 client_action_end(data
);
1181 void action_resize_relative_vert(union ActionData
*data
)
1183 ObClient
*c
= data
->relative
.any
.c
;
1185 client_action_start(data
);
1186 client_resize(c
, c
->area
.width
, c
->area
.height
+
1187 data
->relative
.delta
* c
->size_inc
.height
);
1188 client_action_end(data
);
1192 void action_maximize_full(union ActionData
*data
)
1194 client_action_start(data
);
1195 client_maximize(data
->client
.any
.c
, TRUE
, 0, TRUE
);
1196 client_action_end(data
);
1199 void action_unmaximize_full(union ActionData
*data
)
1201 client_action_start(data
);
1202 client_maximize(data
->client
.any
.c
, FALSE
, 0, TRUE
);
1203 client_action_end(data
);
1206 void action_toggle_maximize_full(union ActionData
*data
)
1208 client_action_start(data
);
1209 client_maximize(data
->client
.any
.c
,
1210 !(data
->client
.any
.c
->max_horz
||
1211 data
->client
.any
.c
->max_vert
),
1213 client_action_end(data
);
1216 void action_maximize_horz(union ActionData
*data
)
1218 client_action_start(data
);
1219 client_maximize(data
->client
.any
.c
, TRUE
, 1, TRUE
);
1220 client_action_end(data
);
1223 void action_unmaximize_horz(union ActionData
*data
)
1225 client_action_start(data
);
1226 client_maximize(data
->client
.any
.c
, FALSE
, 1, TRUE
);
1227 client_action_end(data
);
1230 void action_toggle_maximize_horz(union ActionData
*data
)
1232 client_action_start(data
);
1233 client_maximize(data
->client
.any
.c
,
1234 !data
->client
.any
.c
->max_horz
, 1, TRUE
);
1235 client_action_end(data
);
1238 void action_maximize_vert(union ActionData
*data
)
1240 client_action_start(data
);
1241 client_maximize(data
->client
.any
.c
, TRUE
, 2, TRUE
);
1242 client_action_end(data
);
1245 void action_unmaximize_vert(union ActionData
*data
)
1247 client_action_start(data
);
1248 client_maximize(data
->client
.any
.c
, FALSE
, 2, TRUE
);
1249 client_action_end(data
);
1252 void action_toggle_maximize_vert(union ActionData
*data
)
1254 client_action_start(data
);
1255 client_maximize(data
->client
.any
.c
,
1256 !data
->client
.any
.c
->max_vert
, 2, TRUE
);
1257 client_action_end(data
);
1260 void action_toggle_fullscreen(union ActionData
*data
)
1262 client_action_start(data
);
1263 client_fullscreen(data
->client
.any
.c
,
1264 !(data
->client
.any
.c
->fullscreen
), TRUE
);
1265 client_action_end(data
);
1268 void action_send_to_desktop(union ActionData
*data
)
1270 ObClient
*c
= data
->sendto
.any
.c
;
1272 if (!client_normal(c
)) return;
1274 if (data
->sendto
.desk
< screen_num_desktops
||
1275 data
->sendto
.desk
== DESKTOP_ALL
) {
1276 client_set_desktop(c
, data
->sendto
.desk
, data
->sendto
.follow
);
1277 if (data
->sendto
.follow
)
1278 screen_set_desktop(data
->sendto
.desk
);
1282 void action_desktop(union ActionData
*data
)
1284 static guint first
= (unsigned) -1;
1286 if (data
->inter
.any
.interactive
&& first
== (unsigned) -1)
1287 first
= screen_desktop
;
1289 if (!data
->inter
.any
.interactive
||
1290 (!data
->inter
.cancel
&& !data
->inter
.final
))
1292 if (data
->desktop
.desk
< screen_num_desktops
||
1293 data
->desktop
.desk
== DESKTOP_ALL
)
1295 screen_set_desktop(data
->desktop
.desk
);
1296 if (data
->inter
.any
.interactive
)
1297 screen_desktop_popup(data
->desktop
.desk
, TRUE
);
1299 } else if (data
->inter
.cancel
) {
1300 screen_set_desktop(first
);
1303 if (!data
->inter
.any
.interactive
|| data
->inter
.final
) {
1304 screen_desktop_popup(0, FALSE
);
1305 first
= (unsigned) -1;
1309 void action_desktop_dir(union ActionData
*data
)
1313 d
= screen_cycle_desktop(data
->desktopdir
.dir
,
1314 data
->desktopdir
.wrap
,
1315 data
->desktopdir
.linear
,
1316 data
->desktopdir
.inter
.any
.interactive
,
1317 data
->desktopdir
.inter
.final
,
1318 data
->desktopdir
.inter
.cancel
);
1319 if (!data
->sendtodir
.inter
.any
.interactive
||
1320 !data
->sendtodir
.inter
.final
||
1321 data
->sendtodir
.inter
.cancel
)
1323 screen_set_desktop(d
);
1327 void action_send_to_desktop_dir(union ActionData
*data
)
1329 ObClient
*c
= data
->sendtodir
.inter
.any
.c
;
1332 if (!client_normal(c
)) return;
1334 d
= screen_cycle_desktop(data
->sendtodir
.dir
, data
->sendtodir
.wrap
,
1335 data
->sendtodir
.linear
,
1336 data
->sendtodir
.inter
.any
.interactive
,
1337 data
->sendtodir
.inter
.final
,
1338 data
->sendtodir
.inter
.cancel
);
1339 if (!data
->sendtodir
.inter
.any
.interactive
||
1340 !data
->sendtodir
.inter
.final
||
1341 data
->sendtodir
.inter
.cancel
)
1343 client_set_desktop(c
, d
, data
->sendtodir
.follow
);
1344 if (data
->sendtodir
.follow
)
1345 screen_set_desktop(d
);
1349 void action_desktop_last(union ActionData
*data
)
1351 screen_set_desktop(screen_last_desktop
);
1354 void action_toggle_decorations(union ActionData
*data
)
1356 ObClient
*c
= data
->client
.any
.c
;
1358 client_action_start(data
);
1359 client_set_undecorated(c
, !c
->undecorated
);
1360 client_action_end(data
);
1363 static guint32
pick_corner(gint x
, gint y
, gint cx
, gint cy
, gint cw
, gint ch
)
1365 if (config_resize_four_corners
) {
1366 if (x
- cx
> cw
/ 2) {
1367 if (y
- cy
> ch
/ 2)
1368 return prop_atoms
.net_wm_moveresize_size_bottomright
;
1370 return prop_atoms
.net_wm_moveresize_size_topright
;
1372 if (y
- cy
> ch
/ 2)
1373 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
1375 return prop_atoms
.net_wm_moveresize_size_topleft
;
1378 if (x
- cx
> cw
* 2 / 3) {
1379 if (y
- cy
> ch
* 2 / 3)
1380 return prop_atoms
.net_wm_moveresize_size_bottomright
;
1381 else if (y
- cy
< ch
/ 3)
1382 return prop_atoms
.net_wm_moveresize_size_topright
;
1384 return prop_atoms
.net_wm_moveresize_size_right
;
1385 } else if (x
- cx
< cw
/ 3) {
1386 if (y
- cy
> ch
* 2 / 3)
1387 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
1388 else if (y
- cy
< ch
/ 3)
1389 return prop_atoms
.net_wm_moveresize_size_topleft
;
1391 return prop_atoms
.net_wm_moveresize_size_left
;
1393 if (y
- cy
> ch
* 2 / 3)
1394 return prop_atoms
.net_wm_moveresize_size_bottom
;
1395 else if (y
- cy
< ch
/ 3)
1396 return prop_atoms
.net_wm_moveresize_size_top
;
1398 return prop_atoms
.net_wm_moveresize_move
;
1402 void action_moveresize(union ActionData
*data
)
1404 ObClient
*c
= data
->moveresize
.any
.c
;
1407 if (!client_normal(c
)) return;
1409 if (data
->moveresize
.keyboard
) {
1410 corner
= (data
->moveresize
.move
?
1411 prop_atoms
.net_wm_moveresize_move_keyboard
:
1412 prop_atoms
.net_wm_moveresize_size_keyboard
);
1414 corner
= (data
->moveresize
.move
?
1415 prop_atoms
.net_wm_moveresize_move
:
1416 pick_corner(data
->any
.x
, data
->any
.y
,
1417 c
->frame
->area
.x
, c
->frame
->area
.y
,
1418 /* use the client size because the frame
1419 can be differently sized (shaded
1420 windows) and we want this based on the
1422 c
->area
.width
+ c
->frame
->size
.left
+
1423 c
->frame
->size
.right
,
1424 c
->area
.height
+ c
->frame
->size
.top
+
1425 c
->frame
->size
.bottom
));
1428 moveresize_start(c
, data
->any
.x
, data
->any
.y
, data
->any
.button
, corner
);
1431 void action_reconfigure(union ActionData
*data
)
1436 void action_restart(union ActionData
*data
)
1438 ob_restart_other(data
->execute
.path
);
1441 void action_exit(union ActionData
*data
)
1446 void action_showmenu(union ActionData
*data
)
1448 if (data
->showmenu
.name
) {
1449 menu_show(data
->showmenu
.name
, data
->any
.x
, data
->any
.y
,
1450 data
->showmenu
.any
.c
);
1454 void action_cycle_windows(union ActionData
*data
)
1456 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1458 event_halt_focus_delay();
1460 focus_cycle(data
->cycle
.forward
, data
->cycle
.linear
, data
->any
.interactive
,
1462 data
->cycle
.inter
.final
, data
->cycle
.inter
.cancel
);
1465 void action_directional_focus(union ActionData
*data
)
1467 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1469 event_halt_focus_delay();
1471 focus_directional_cycle(data
->interdiraction
.direction
,
1472 data
->any
.interactive
,
1473 data
->interdiraction
.dialog
,
1474 data
->interdiraction
.inter
.final
,
1475 data
->interdiraction
.inter
.cancel
);
1478 void action_movetoedge(union ActionData
*data
)
1481 ObClient
*c
= data
->diraction
.any
.c
;
1483 x
= c
->frame
->area
.x
;
1484 y
= c
->frame
->area
.y
;
1486 switch(data
->diraction
.direction
) {
1487 case OB_DIRECTION_NORTH
:
1488 y
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
);
1490 case OB_DIRECTION_WEST
:
1491 x
= client_directional_edge_search(c
, OB_DIRECTION_WEST
);
1493 case OB_DIRECTION_SOUTH
:
1494 y
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
) -
1495 c
->frame
->area
.height
;
1497 case OB_DIRECTION_EAST
:
1498 x
= client_directional_edge_search(c
, OB_DIRECTION_EAST
) -
1499 c
->frame
->area
.width
;
1502 g_assert_not_reached();
1504 frame_frame_gravity(c
->frame
, &x
, &y
);
1505 client_action_start(data
);
1506 client_move(c
, x
, y
);
1507 client_action_end(data
);
1510 void action_growtoedge(union ActionData
*data
)
1512 gint x
, y
, width
, height
, dest
;
1513 ObClient
*c
= data
->diraction
.any
.c
;
1516 //FIXME growtoedge resizes shaded windows to 0 height
1520 a
= screen_area(c
->desktop
);
1521 x
= c
->frame
->area
.x
;
1522 y
= c
->frame
->area
.y
;
1523 width
= c
->frame
->area
.width
;
1524 height
= c
->frame
->area
.height
;
1526 switch(data
->diraction
.direction
) {
1527 case OB_DIRECTION_NORTH
:
1528 dest
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
);
1530 height
= c
->frame
->area
.height
/ 2;
1532 height
= c
->frame
->area
.y
+ c
->frame
->area
.height
- dest
;
1536 case OB_DIRECTION_WEST
:
1537 dest
= client_directional_edge_search(c
, OB_DIRECTION_WEST
);
1539 width
= c
->frame
->area
.width
/ 2;
1541 width
= c
->frame
->area
.x
+ c
->frame
->area
.width
- dest
;
1545 case OB_DIRECTION_SOUTH
:
1546 dest
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
);
1547 if (a
->y
+ a
->height
== y
+ c
->frame
->area
.height
) {
1548 height
= c
->frame
->area
.height
/ 2;
1549 y
= a
->y
+ a
->height
- height
;
1551 height
= dest
- c
->frame
->area
.y
;
1552 y
+= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1553 height
-= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1555 case OB_DIRECTION_EAST
:
1556 dest
= client_directional_edge_search(c
, OB_DIRECTION_EAST
);
1557 if (a
->x
+ a
->width
== x
+ c
->frame
->area
.width
) {
1558 width
= c
->frame
->area
.width
/ 2;
1559 x
= a
->x
+ a
->width
- width
;
1561 width
= dest
- c
->frame
->area
.x
;
1562 x
+= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1563 width
-= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1566 g_assert_not_reached();
1568 frame_frame_gravity(c
->frame
, &x
, &y
);
1569 width
-= c
->frame
->size
.left
+ c
->frame
->size
.right
;
1570 height
-= c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
1571 client_action_start(data
);
1572 client_move_resize(c
, x
, y
, width
, height
);
1573 client_action_end(data
);
1576 void action_send_to_layer(union ActionData
*data
)
1578 client_set_layer(data
->layer
.any
.c
, data
->layer
.layer
);
1581 void action_toggle_layer(union ActionData
*data
)
1583 ObClient
*c
= data
->layer
.any
.c
;
1585 client_action_start(data
);
1586 if (data
->layer
.layer
< 0)
1587 client_set_layer(c
, c
->below
? 0 : -1);
1588 else if (data
->layer
.layer
> 0)
1589 client_set_layer(c
, c
->above
? 0 : 1);
1590 client_action_end(data
);
1593 void action_toggle_dockautohide(union ActionData
*data
)
1595 config_dock_hide
= !config_dock_hide
;
1599 void action_toggle_show_desktop(union ActionData
*data
)
1601 screen_show_desktop(!screen_showing_desktop
);
1604 void action_show_desktop(union ActionData
*data
)
1606 screen_show_desktop(TRUE
);
1609 void action_unshow_desktop(union ActionData
*data
)
1611 screen_show_desktop(FALSE
);