1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 action.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
23 #include "moveresize.h"
36 #include "startupnotify.h"
41 inline void client_action_start(union ActionData
*data
)
43 if (config_focus_follow
)
44 if (data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
&& !data
->any
.button
)
45 grab_pointer(TRUE
, FALSE
, OB_CURSOR_NONE
);
48 inline void client_action_end(union ActionData
*data
)
50 if (config_focus_follow
)
51 if (data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
&& !data
->any
.button
)
52 grab_pointer(FALSE
, FALSE
, OB_CURSOR_NONE
);
58 void (*func
)(union ActionData
*);
59 void (*setup
)(ObAction
**, ObUserAction uact
);
62 static ObAction
*action_new(void (*func
)(union ActionData
*data
))
64 ObAction
*a
= g_new0(ObAction
, 1);
71 void action_ref(ObAction
*a
)
76 void action_unref(ObAction
*a
)
78 if (a
== NULL
) return;
80 if (--a
->ref
> 0) return;
82 /* deal with pointers */
83 if (a
->func
== action_execute
|| a
->func
== action_restart
)
84 g_free(a
->data
.execute
.path
);
85 else if (a
->func
== action_showmenu
)
86 g_free(a
->data
.showmenu
.name
);
91 ObAction
* action_copy(const ObAction
*src
)
93 ObAction
*a
= action_new(src
->func
);
97 /* deal with pointers */
98 if (a
->func
== action_execute
|| a
->func
== action_restart
)
99 a
->data
.execute
.path
= g_strdup(a
->data
.execute
.path
);
100 else if (a
->func
== action_showmenu
)
101 a
->data
.showmenu
.name
= g_strdup(a
->data
.showmenu
.name
);
106 void setup_action_directional_focus_north(ObAction
**a
, ObUserAction uact
)
108 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
109 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_NORTH
;
110 (*a
)->data
.interdiraction
.dialog
= TRUE
;
111 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
114 void setup_action_directional_focus_east(ObAction
**a
, ObUserAction uact
)
116 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
117 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_EAST
;
118 (*a
)->data
.interdiraction
.dialog
= TRUE
;
119 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
122 void setup_action_directional_focus_south(ObAction
**a
, ObUserAction uact
)
124 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
125 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTH
;
126 (*a
)->data
.interdiraction
.dialog
= TRUE
;
127 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
130 void setup_action_directional_focus_west(ObAction
**a
, ObUserAction uact
)
132 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
133 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_WEST
;
134 (*a
)->data
.interdiraction
.dialog
= TRUE
;
135 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
138 void setup_action_directional_focus_northeast(ObAction
**a
, ObUserAction uact
)
140 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
141 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_NORTHEAST
;
142 (*a
)->data
.interdiraction
.dialog
= TRUE
;
143 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
146 void setup_action_directional_focus_southeast(ObAction
**a
, ObUserAction uact
)
148 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
149 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTHEAST
;
150 (*a
)->data
.interdiraction
.dialog
= TRUE
;
151 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
154 void setup_action_directional_focus_southwest(ObAction
**a
, ObUserAction uact
)
156 (*a
)->data
.interdiraction
.inter
.any
.interactive
= TRUE
;
157 (*a
)->data
.interdiraction
.direction
= OB_DIRECTION_SOUTHWEST
;
158 (*a
)->data
.interdiraction
.dialog
= TRUE
;
159 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
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
;
167 (*a
)->data
.interdiraction
.dock_windows
= FALSE
;
170 void setup_action_send_to_desktop(ObAction
**a
, ObUserAction uact
)
172 (*a
)->data
.sendto
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
173 (*a
)->data
.sendto
.follow
= TRUE
;
176 void setup_action_send_to_desktop_prev(ObAction
**a
, ObUserAction uact
)
178 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
179 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
180 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_WEST
;
181 (*a
)->data
.sendtodir
.linear
= TRUE
;
182 (*a
)->data
.sendtodir
.wrap
= TRUE
;
183 (*a
)->data
.sendtodir
.follow
= TRUE
;
186 void setup_action_send_to_desktop_next(ObAction
**a
, ObUserAction uact
)
188 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
189 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
190 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_EAST
;
191 (*a
)->data
.sendtodir
.linear
= TRUE
;
192 (*a
)->data
.sendtodir
.wrap
= TRUE
;
193 (*a
)->data
.sendtodir
.follow
= TRUE
;
196 void setup_action_send_to_desktop_left(ObAction
**a
, ObUserAction uact
)
198 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
199 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
200 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_WEST
;
201 (*a
)->data
.sendtodir
.linear
= FALSE
;
202 (*a
)->data
.sendtodir
.wrap
= TRUE
;
203 (*a
)->data
.sendtodir
.follow
= TRUE
;
206 void setup_action_send_to_desktop_right(ObAction
**a
, ObUserAction uact
)
208 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
209 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
210 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_EAST
;
211 (*a
)->data
.sendtodir
.linear
= FALSE
;
212 (*a
)->data
.sendtodir
.wrap
= TRUE
;
213 (*a
)->data
.sendtodir
.follow
= TRUE
;
216 void setup_action_send_to_desktop_up(ObAction
**a
, ObUserAction uact
)
218 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
219 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
220 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_NORTH
;
221 (*a
)->data
.sendtodir
.linear
= FALSE
;
222 (*a
)->data
.sendtodir
.wrap
= TRUE
;
223 (*a
)->data
.sendtodir
.follow
= TRUE
;
226 void setup_action_send_to_desktop_down(ObAction
**a
, ObUserAction uact
)
228 (*a
)->data
.sendtodir
.inter
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
229 (*a
)->data
.sendtodir
.inter
.any
.interactive
= TRUE
;
230 (*a
)->data
.sendtodir
.dir
= OB_DIRECTION_SOUTH
;
231 (*a
)->data
.sendtodir
.linear
= FALSE
;
232 (*a
)->data
.sendtodir
.wrap
= TRUE
;
233 (*a
)->data
.sendtodir
.follow
= TRUE
;
236 void setup_action_desktop(ObAction
**a
, ObUserAction uact
)
238 (*a
)->data
.desktop
.inter
.any
.interactive
= FALSE
;
241 void setup_action_desktop_prev(ObAction
**a
, ObUserAction uact
)
243 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
244 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_WEST
;
245 (*a
)->data
.desktopdir
.linear
= TRUE
;
246 (*a
)->data
.desktopdir
.wrap
= TRUE
;
249 void setup_action_desktop_next(ObAction
**a
, ObUserAction uact
)
251 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
252 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_EAST
;
253 (*a
)->data
.desktopdir
.linear
= TRUE
;
254 (*a
)->data
.desktopdir
.wrap
= TRUE
;
257 void setup_action_desktop_left(ObAction
**a
, ObUserAction uact
)
259 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
260 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_WEST
;
261 (*a
)->data
.desktopdir
.linear
= FALSE
;
262 (*a
)->data
.desktopdir
.wrap
= TRUE
;
265 void setup_action_desktop_right(ObAction
**a
, ObUserAction uact
)
267 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
268 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_EAST
;
269 (*a
)->data
.desktopdir
.linear
= FALSE
;
270 (*a
)->data
.desktopdir
.wrap
= TRUE
;
273 void setup_action_desktop_up(ObAction
**a
, ObUserAction uact
)
275 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
276 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_NORTH
;
277 (*a
)->data
.desktopdir
.linear
= FALSE
;
278 (*a
)->data
.desktopdir
.wrap
= TRUE
;
281 void setup_action_desktop_down(ObAction
**a
, ObUserAction uact
)
283 (*a
)->data
.desktopdir
.inter
.any
.interactive
= TRUE
;
284 (*a
)->data
.desktopdir
.dir
= OB_DIRECTION_SOUTH
;
285 (*a
)->data
.desktopdir
.linear
= FALSE
;
286 (*a
)->data
.desktopdir
.wrap
= TRUE
;
289 void setup_action_cycle_windows_next(ObAction
**a
, ObUserAction uact
)
291 (*a
)->data
.cycle
.inter
.any
.interactive
= TRUE
;
292 (*a
)->data
.cycle
.linear
= FALSE
;
293 (*a
)->data
.cycle
.forward
= TRUE
;
294 (*a
)->data
.cycle
.dialog
= TRUE
;
295 (*a
)->data
.cycle
.dock_windows
= FALSE
;
296 (*a
)->data
.cycle
.all_desktops
= FALSE
;
299 void setup_action_cycle_windows_previous(ObAction
**a
, ObUserAction uact
)
301 (*a
)->data
.cycle
.inter
.any
.interactive
= TRUE
;
302 (*a
)->data
.cycle
.linear
= FALSE
;
303 (*a
)->data
.cycle
.forward
= FALSE
;
304 (*a
)->data
.cycle
.dialog
= TRUE
;
305 (*a
)->data
.cycle
.dock_windows
= FALSE
;
306 (*a
)->data
.cycle
.all_desktops
= FALSE
;
309 void setup_action_movefromedge_north(ObAction
**a
, ObUserAction uact
)
311 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
312 (*a
)->data
.diraction
.direction
= OB_DIRECTION_NORTH
;
313 (*a
)->data
.diraction
.hang
= TRUE
;
316 void setup_action_movefromedge_south(ObAction
**a
, ObUserAction uact
)
318 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
319 (*a
)->data
.diraction
.direction
= OB_DIRECTION_SOUTH
;
320 (*a
)->data
.diraction
.hang
= TRUE
;
323 void setup_action_movefromedge_east(ObAction
**a
, ObUserAction uact
)
325 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
326 (*a
)->data
.diraction
.direction
= OB_DIRECTION_EAST
;
327 (*a
)->data
.diraction
.hang
= TRUE
;
330 void setup_action_movefromedge_west(ObAction
**a
, ObUserAction uact
)
332 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
333 (*a
)->data
.diraction
.direction
= OB_DIRECTION_WEST
;
334 (*a
)->data
.diraction
.hang
= TRUE
;
337 void setup_action_movetoedge_north(ObAction
**a
, ObUserAction uact
)
339 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
340 (*a
)->data
.diraction
.direction
= OB_DIRECTION_NORTH
;
341 (*a
)->data
.diraction
.hang
= FALSE
;
344 void setup_action_movetoedge_south(ObAction
**a
, ObUserAction uact
)
346 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
347 (*a
)->data
.diraction
.direction
= OB_DIRECTION_SOUTH
;
348 (*a
)->data
.diraction
.hang
= FALSE
;
351 void setup_action_movetoedge_east(ObAction
**a
, ObUserAction uact
)
353 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
354 (*a
)->data
.diraction
.direction
= OB_DIRECTION_EAST
;
355 (*a
)->data
.diraction
.hang
= FALSE
;
358 void setup_action_movetoedge_west(ObAction
**a
, ObUserAction uact
)
360 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
361 (*a
)->data
.diraction
.direction
= OB_DIRECTION_WEST
;
362 (*a
)->data
.diraction
.hang
= FALSE
;
365 void setup_action_growtoedge_north(ObAction
**a
, ObUserAction uact
)
367 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
368 (*a
)->data
.diraction
.direction
= OB_DIRECTION_NORTH
;
371 void setup_action_growtoedge_south(ObAction
**a
, ObUserAction uact
)
373 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
374 (*a
)->data
.diraction
.direction
= OB_DIRECTION_SOUTH
;
377 void setup_action_growtoedge_east(ObAction
**a
, ObUserAction uact
)
379 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
380 (*a
)->data
.diraction
.direction
= OB_DIRECTION_EAST
;
383 void setup_action_growtoedge_west(ObAction
**a
, ObUserAction uact
)
385 (*a
)->data
.diraction
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
386 (*a
)->data
.diraction
.direction
= OB_DIRECTION_WEST
;
389 void setup_action_top_layer(ObAction
**a
, ObUserAction uact
)
391 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
392 (*a
)->data
.layer
.layer
= 1;
395 void setup_action_normal_layer(ObAction
**a
, ObUserAction uact
)
397 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
398 (*a
)->data
.layer
.layer
= 0;
401 void setup_action_bottom_layer(ObAction
**a
, ObUserAction uact
)
403 (*a
)->data
.layer
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
404 (*a
)->data
.layer
.layer
= -1;
407 void setup_action_move(ObAction
**a
, ObUserAction uact
)
409 (*a
)->data
.moveresize
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
410 (*a
)->data
.moveresize
.move
= TRUE
;
411 (*a
)->data
.moveresize
.keyboard
=
412 (uact
== OB_USER_ACTION_NONE
||
413 uact
== OB_USER_ACTION_KEYBOARD_KEY
||
414 uact
== OB_USER_ACTION_MENU_SELECTION
);
417 void setup_action_resize(ObAction
**a
, ObUserAction uact
)
419 (*a
)->data
.moveresize
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
420 (*a
)->data
.moveresize
.move
= FALSE
;
421 (*a
)->data
.moveresize
.keyboard
=
422 (uact
== OB_USER_ACTION_NONE
||
423 uact
== OB_USER_ACTION_KEYBOARD_KEY
||
424 uact
== OB_USER_ACTION_MENU_SELECTION
);
427 void setup_action_showmenu(ObAction
**a
, ObUserAction uact
)
429 (*a
)->data
.showmenu
.any
.client_action
= OB_CLIENT_ACTION_OPTIONAL
;
430 /* you cannot call ShowMenu from inside a menu, cuz the menu code makes
431 assumptions that there is only one menu (and submenus) open at
433 if (uact
== OB_USER_ACTION_MENU_SELECTION
) {
439 void setup_action_focus(ObAction
**a
, ObUserAction uact
)
441 (*a
)->data
.any
.client_action
= OB_CLIENT_ACTION_OPTIONAL
;
444 void setup_client_action(ObAction
**a
, ObUserAction uact
)
446 (*a
)->data
.any
.client_action
= OB_CLIENT_ACTION_ALWAYS
;
449 ActionString actionstrings
[] =
457 "directionalfocusnorth",
458 action_directional_focus
,
459 setup_action_directional_focus_north
462 "directionalfocuseast",
463 action_directional_focus
,
464 setup_action_directional_focus_east
467 "directionalfocussouth",
468 action_directional_focus
,
469 setup_action_directional_focus_south
472 "directionalfocuswest",
473 action_directional_focus
,
474 setup_action_directional_focus_west
477 "directionalfocusnortheast",
478 action_directional_focus
,
479 setup_action_directional_focus_northeast
482 "directionalfocussoutheast",
483 action_directional_focus
,
484 setup_action_directional_focus_southeast
487 "directionalfocussouthwest",
488 action_directional_focus
,
489 setup_action_directional_focus_southwest
492 "directionalfocusnorthwest",
493 action_directional_focus
,
494 setup_action_directional_focus_northwest
518 action_focus_order_to_bottom
,
573 action_toggle_omnipresent
,
578 action_move_relative_horz
,
583 action_move_relative_vert
,
588 action_move_to_center
,
592 "resizerelativehorz",
593 action_resize_relative_horz
,
597 "resizerelativevert",
598 action_resize_relative_vert
,
603 action_move_relative
,
608 action_resize_relative
,
613 action_maximize_full
,
618 action_unmaximize_full
,
622 "togglemaximizefull",
623 action_toggle_maximize_full
,
628 action_maximize_horz
,
633 action_unmaximize_horz
,
637 "togglemaximizehorz",
638 action_toggle_maximize_horz
,
643 action_maximize_vert
,
648 action_unmaximize_vert
,
652 "togglemaximizevert",
653 action_toggle_maximize_vert
,
658 action_toggle_fullscreen
,
663 action_send_to_desktop
,
664 setup_action_send_to_desktop
668 action_send_to_desktop_dir
,
669 setup_action_send_to_desktop_next
672 "sendtodesktopprevious",
673 action_send_to_desktop_dir
,
674 setup_action_send_to_desktop_prev
677 "sendtodesktopright",
678 action_send_to_desktop_dir
,
679 setup_action_send_to_desktop_right
683 action_send_to_desktop_dir
,
684 setup_action_send_to_desktop_left
688 action_send_to_desktop_dir
,
689 setup_action_send_to_desktop_up
693 action_send_to_desktop_dir
,
694 setup_action_send_to_desktop_down
704 setup_action_desktop_next
709 setup_action_desktop_prev
714 setup_action_desktop_right
719 setup_action_desktop_left
724 setup_action_desktop_up
729 setup_action_desktop_down
733 action_toggle_decorations
,
747 "toggledockautohide",
748 action_toggle_dockautohide
,
753 action_toggle_show_desktop
,
763 action_unshow_desktop
,
789 setup_action_showmenu
793 action_send_to_layer
,
794 setup_action_top_layer
799 setup_action_top_layer
803 action_send_to_layer
,
804 setup_action_normal_layer
808 action_send_to_layer
,
809 setup_action_bottom_layer
812 "togglealwaysonbottom",
814 setup_action_bottom_layer
818 action_cycle_windows
,
819 setup_action_cycle_windows_next
823 action_cycle_windows
,
824 setup_action_cycle_windows_previous
829 setup_action_movefromedge_north
834 setup_action_movefromedge_south
839 setup_action_movefromedge_west
844 setup_action_movefromedge_east
849 setup_action_movetoedge_north
854 setup_action_movetoedge_south
859 setup_action_movetoedge_west
864 setup_action_movetoedge_east
869 setup_action_growtoedge_north
874 setup_action_growtoedge_south
879 setup_action_growtoedge_west
884 setup_action_growtoedge_east
898 /* only key bindings can be interactive. thus saith the xor.
899 because of how the mouse is grabbed, mouse events dont even get
900 read during interactive events, so no dice! >:) */
901 #define INTERACTIVE_LIMIT(a, uact) \
902 if (uact != OB_USER_ACTION_KEYBOARD_KEY) \
903 a->data.any.interactive = FALSE;
905 ObAction
*action_from_string(const gchar
*name
, ObUserAction uact
)
908 gboolean exist
= FALSE
;
911 for (i
= 0; actionstrings
[i
].name
; i
++)
912 if (!g_ascii_strcasecmp(name
, actionstrings
[i
].name
)) {
914 a
= action_new(actionstrings
[i
].func
);
915 if (actionstrings
[i
].setup
)
916 actionstrings
[i
].setup(&a
, uact
);
918 INTERACTIVE_LIMIT(a
, uact
);
922 g_message(_("Invalid action '%s' requested. No such action exists."),
925 g_message(_("Invalid use of action '%s'. Action will be ignored."),
930 ObAction
*action_parse(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
934 ObAction
*act
= NULL
;
937 if (parse_attr_string("name", node
, &actname
)) {
938 if ((act
= action_from_string(actname
, uact
))) {
939 if (act
->func
== action_execute
|| act
->func
== action_restart
) {
940 if ((n
= parse_find_node("execute", node
->xmlChildrenNode
))) {
941 gchar
*s
= parse_string(doc
, n
);
942 act
->data
.execute
.path
= parse_expand_tilde(s
);
945 if ((n
= parse_find_node("startupnotify", node
->xmlChildrenNode
))) {
947 if ((m
= parse_find_node("enabled", n
->xmlChildrenNode
)))
948 act
->data
.execute
.startupnotify
= parse_bool(doc
, m
);
949 if ((m
= parse_find_node("name", n
->xmlChildrenNode
)))
950 act
->data
.execute
.name
= parse_string(doc
, m
);
951 if ((m
= parse_find_node("icon", n
->xmlChildrenNode
)))
952 act
->data
.execute
.icon_name
= parse_string(doc
, m
);
954 } else if (act
->func
== action_showmenu
) {
955 if ((n
= parse_find_node("menu", node
->xmlChildrenNode
)))
956 act
->data
.showmenu
.name
= parse_string(doc
, n
);
957 } else if (act
->func
== action_move_relative_horz
||
958 act
->func
== action_move_relative_vert
||
959 act
->func
== action_resize_relative_horz
||
960 act
->func
== action_resize_relative_vert
) {
961 if ((n
= parse_find_node("delta", node
->xmlChildrenNode
)))
962 act
->data
.relative
.deltax
= parse_int(doc
, n
);
963 } else if (act
->func
== action_move_relative
) {
964 if ((n
= parse_find_node("x", node
->xmlChildrenNode
)))
965 act
->data
.relative
.deltax
= parse_int(doc
, n
);
966 if ((n
= parse_find_node("y", node
->xmlChildrenNode
)))
967 act
->data
.relative
.deltay
= parse_int(doc
, n
);
968 } else if (act
->func
== action_resize_relative
) {
969 if ((n
= parse_find_node("left", node
->xmlChildrenNode
)))
970 act
->data
.relative
.deltaxl
= parse_int(doc
, n
);
971 if ((n
= parse_find_node("up", node
->xmlChildrenNode
)))
972 act
->data
.relative
.deltayu
= parse_int(doc
, n
);
973 if ((n
= parse_find_node("right", node
->xmlChildrenNode
)))
974 act
->data
.relative
.deltax
= parse_int(doc
, n
);
975 if ((n
= parse_find_node("down", node
->xmlChildrenNode
)))
976 act
->data
.relative
.deltay
= parse_int(doc
, n
);
977 } else if (act
->func
== action_desktop
) {
978 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
979 act
->data
.desktop
.desk
= parse_int(doc
, n
);
980 if (act
->data
.desktop
.desk
> 0) act
->data
.desktop
.desk
--;
981 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
982 act
->data
.desktop
.inter
.any
.interactive
=
984 } else if (act
->func
== action_send_to_desktop
) {
985 if ((n
= parse_find_node("desktop", node
->xmlChildrenNode
)))
986 act
->data
.sendto
.desk
= parse_int(doc
, n
);
987 if (act
->data
.sendto
.desk
> 0) act
->data
.sendto
.desk
--;
988 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
989 act
->data
.sendto
.follow
= parse_bool(doc
, n
);
990 } else if (act
->func
== action_desktop_dir
) {
991 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
992 act
->data
.desktopdir
.wrap
= parse_bool(doc
, n
);
993 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
994 act
->data
.desktopdir
.inter
.any
.interactive
=
996 } else if (act
->func
== action_send_to_desktop_dir
) {
997 if ((n
= parse_find_node("wrap", node
->xmlChildrenNode
)))
998 act
->data
.sendtodir
.wrap
= parse_bool(doc
, n
);
999 if ((n
= parse_find_node("follow", node
->xmlChildrenNode
)))
1000 act
->data
.sendtodir
.follow
= parse_bool(doc
, n
);
1001 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
1002 act
->data
.sendtodir
.inter
.any
.interactive
=
1004 } else if (act
->func
== action_activate
) {
1005 if ((n
= parse_find_node("here", node
->xmlChildrenNode
)))
1006 act
->data
.activate
.here
= parse_bool(doc
, n
);
1007 } else if (act
->func
== action_cycle_windows
) {
1008 if ((n
= parse_find_node("linear", node
->xmlChildrenNode
)))
1009 act
->data
.cycle
.linear
= parse_bool(doc
, n
);
1010 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
1011 act
->data
.cycle
.dialog
= parse_bool(doc
, n
);
1012 if ((n
= parse_find_node("panels", node
->xmlChildrenNode
)))
1013 act
->data
.cycle
.dock_windows
= parse_bool(doc
, n
);
1014 if ((n
= parse_find_node("allDesktops",
1015 node
->xmlChildrenNode
)))
1016 act
->data
.cycle
.all_desktops
= parse_bool(doc
, n
);
1017 } else if (act
->func
== action_directional_focus
) {
1018 if ((n
= parse_find_node("dialog", node
->xmlChildrenNode
)))
1019 act
->data
.interdiraction
.dialog
= parse_bool(doc
, n
);
1020 if ((n
= parse_find_node("panels", node
->xmlChildrenNode
)))
1021 act
->data
.interdiraction
.dock_windows
= parse_bool(doc
, n
);
1022 } else if (act
->func
== action_raise
||
1023 act
->func
== action_lower
||
1024 act
->func
== action_raiselower
||
1025 act
->func
== action_shadelower
||
1026 act
->func
== action_unshaderaise
) {
1028 INTERACTIVE_LIMIT(act
, uact
);
1035 void action_run_list(GSList
*acts
, ObClient
*c
, ObFrameContext context
,
1036 guint state
, guint button
, gint x
, gint y
, Time time
,
1037 gboolean cancel
, gboolean done
)
1041 gboolean inter
= FALSE
;
1047 screen_pointer_pos(&x
, &y
);
1049 if (grab_on_keyboard())
1052 for (it
= acts
; it
; it
= g_slist_next(it
)) {
1054 if (a
->data
.any
.interactive
) {
1061 /* sometimes when we execute another app as an action,
1062 it won't work right unless we XUngrabKeyboard first,
1063 even though we grabbed the key/button Asychronously.
1064 e.g. "gnome-panel-control --main-menu" */
1065 grab_keyboard(FALSE
);
1068 for (it
= acts
; it
; it
= g_slist_next(it
)) {
1071 if (!(a
->data
.any
.client_action
== OB_CLIENT_ACTION_ALWAYS
&& !c
)) {
1072 a
->data
.any
.c
= a
->data
.any
.client_action
? c
: NULL
;
1073 a
->data
.any
.context
= context
;
1077 a
->data
.any
.button
= button
;
1079 a
->data
.any
.time
= time
;
1081 if (a
->data
.any
.interactive
) {
1082 a
->data
.inter
.cancel
= cancel
;
1083 a
->data
.inter
.final
= done
;
1084 if (!(cancel
|| done
))
1085 if (!keyboard_interactive_grab(state
, a
->data
.any
.c
, a
))
1089 /* XXX UGLY HACK race with motion event starting a move and the
1090 button release gettnig processed first. answer: don't queue
1091 moveresize starts. UGLY HACK XXX */
1092 if (a
->data
.any
.interactive
|| a
->func
== action_moveresize
) {
1093 /* interactive actions are not queued */
1095 } else if ((context
== OB_FRAME_CONTEXT_CLIENT
||
1096 (c
&& c
->type
== OB_CLIENT_TYPE_DESKTOP
&&
1097 context
== OB_FRAME_CONTEXT_DESKTOP
)) &&
1098 (a
->func
== action_focus
||
1099 a
->func
== action_activate
||
1100 a
->func
== action_showmenu
))
1102 /* XXX MORE UGLY HACK
1103 actions from clicks on client windows are NOT queued.
1104 this solves the mysterious click-and-drag-doesnt-work
1105 problem. it was because the window gets focused and stuff
1106 after the button event has already been passed through. i
1107 dont really know why it should care but it does and it makes
1110 however this very bogus ! !
1111 we want to send the button press to the window BEFORE
1112 we do the action because the action might move the windows
1113 (eg change desktops) and then the button press ends up on
1114 the completely wrong window !
1115 so, this is just for that bug, and it will only NOT queue it
1116 if it is a focusing action that can be used with the mouse
1119 also with the menus, there is a race going on. if the
1120 desktop wants to pop up a menu, and we do to, we send them
1121 the button before we pop up the menu, so they pop up their
1122 menu first. but not always. if we pop up our menu before
1123 sending them the button press, then the result is
1128 ob_main_loop_queue_action(ob_main_loop
, a
);
1133 void action_run_string(const gchar
*name
, struct _ObClient
*c
, Time time
)
1138 a
= action_from_string(name
, OB_USER_ACTION_NONE
);
1141 l
= g_slist_append(NULL
, a
);
1143 action_run(l
, c
, 0, time
);
1146 void action_execute(union ActionData
*data
)
1149 gchar
*cmd
, **argv
= 0;
1150 if (data
->execute
.path
) {
1151 cmd
= g_filename_from_utf8(data
->execute
.path
, -1, NULL
, NULL
, NULL
);
1153 if (!g_shell_parse_argv (cmd
, NULL
, &argv
, &e
)) {
1154 g_message(_("Failed to execute '%s': %s"),
1157 } else if (data
->execute
.startupnotify
) {
1160 program
= g_path_get_basename(argv
[0]);
1161 /* sets up the environment */
1162 sn_setup_spawn_environment(program
,
1164 data
->execute
.icon_name
,
1165 /* launch it on the current
1168 data
->execute
.any
.time
);
1169 if (!g_spawn_async(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
|
1170 G_SPAWN_DO_NOT_REAP_CHILD
,
1171 NULL
, NULL
, NULL
, &e
)) {
1172 g_message(_("Failed to execute '%s': %s"),
1177 unsetenv("DESKTOP_STARTUP_ID");
1181 if (!g_spawn_async(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
|
1182 G_SPAWN_DO_NOT_REAP_CHILD
,
1183 NULL
, NULL
, NULL
, &e
))
1185 g_message(_("Failed to execute '%s': %s"),
1193 g_message(_("Failed to convert the path '%s' from utf8"),
1194 data
->execute
.path
);
1199 void action_activate(union ActionData
*data
)
1201 if (data
->client
.any
.c
) {
1202 if (!data
->any
.button
|| client_mouse_focusable(data
->client
.any
.c
) ||
1203 data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
)
1205 /* if using focus_delay, stop the timer now so that focus doesn't
1207 event_halt_focus_delay();
1209 client_activate(data
->activate
.any
.c
, data
->activate
.here
, TRUE
);
1212 /* focus action on something other than a client, make keybindings
1213 work for this openbox instance, but don't focus any specific client
1219 void action_focus(union ActionData
*data
)
1221 if (data
->client
.any
.c
) {
1222 if (!data
->any
.button
|| client_mouse_focusable(data
->client
.any
.c
) ||
1223 data
->any
.context
!= OB_FRAME_CONTEXT_CLIENT
)
1225 /* if using focus_delay, stop the timer now so that focus doesn't
1227 event_halt_focus_delay();
1229 client_focus(data
->client
.any
.c
);
1232 /* focus action on something other than a client, make keybindings
1233 work for this openbox instance, but don't focus any specific client
1239 void action_unfocus (union ActionData
*data
)
1241 if (data
->client
.any
.c
== focus_client
)
1242 focus_fallback(FALSE
);
1245 void action_iconify(union ActionData
*data
)
1247 client_action_start(data
);
1248 client_iconify(data
->client
.any
.c
, TRUE
, TRUE
);
1249 client_action_end(data
);
1252 void action_focus_order_to_bottom(union ActionData
*data
)
1254 focus_order_to_bottom(data
->client
.any
.c
);
1257 void action_raiselower(union ActionData
*data
)
1259 ObClient
*c
= data
->client
.any
.c
;
1261 gboolean raise
= FALSE
;
1263 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
1264 if (WINDOW_IS_CLIENT(it
->data
)) {
1265 ObClient
*cit
= it
->data
;
1267 if (cit
== c
) break;
1268 if (client_normal(cit
) == client_normal(c
) &&
1269 cit
->layer
== c
->layer
&&
1270 cit
->frame
->visible
&&
1271 !client_search_transient(c
, cit
))
1273 if (RECT_INTERSECTS_RECT(cit
->frame
->area
, c
->frame
->area
)) {
1287 void action_raise(union ActionData
*data
)
1289 client_action_start(data
);
1290 stacking_raise(CLIENT_AS_WINDOW(data
->client
.any
.c
));
1291 client_action_end(data
);
1294 void action_unshaderaise(union ActionData
*data
)
1296 if (data
->client
.any
.c
->shaded
)
1297 action_unshade(data
);
1302 void action_shadelower(union ActionData
*data
)
1304 if (data
->client
.any
.c
->shaded
)
1310 void action_lower(union ActionData
*data
)
1312 client_action_start(data
);
1313 stacking_lower(CLIENT_AS_WINDOW(data
->client
.any
.c
));
1314 client_action_end(data
);
1317 void action_close(union ActionData
*data
)
1319 client_close(data
->client
.any
.c
);
1322 void action_kill(union ActionData
*data
)
1324 client_kill(data
->client
.any
.c
);
1327 void action_shade(union ActionData
*data
)
1329 client_action_start(data
);
1330 client_shade(data
->client
.any
.c
, TRUE
);
1331 client_action_end(data
);
1334 void action_unshade(union ActionData
*data
)
1336 client_action_start(data
);
1337 client_shade(data
->client
.any
.c
, FALSE
);
1338 client_action_end(data
);
1341 void action_toggle_shade(union ActionData
*data
)
1343 client_action_start(data
);
1344 client_shade(data
->client
.any
.c
, !data
->client
.any
.c
->shaded
);
1345 client_action_end(data
);
1348 void action_toggle_omnipresent(union ActionData
*data
)
1350 client_set_desktop(data
->client
.any
.c
,
1351 data
->client
.any
.c
->desktop
== DESKTOP_ALL
?
1352 screen_desktop
: DESKTOP_ALL
, FALSE
);
1355 void action_move_relative_horz(union ActionData
*data
)
1357 ObClient
*c
= data
->relative
.any
.c
;
1358 client_action_start(data
);
1359 client_move(c
, c
->area
.x
+ data
->relative
.deltax
, c
->area
.y
);
1360 client_action_end(data
);
1363 void action_move_relative_vert(union ActionData
*data
)
1365 ObClient
*c
= data
->relative
.any
.c
;
1366 client_action_start(data
);
1367 client_move(c
, c
->area
.x
, c
->area
.y
+ data
->relative
.deltax
);
1368 client_action_end(data
);
1371 void action_move_to_center(union ActionData
*data
)
1373 ObClient
*c
= data
->client
.any
.c
;
1375 area
= screen_area_monitor(c
->desktop
, 0);
1376 client_action_start(data
);
1377 client_move(c
, area
->width
/ 2 - c
->area
.width
/ 2,
1378 area
->height
/ 2 - c
->area
.height
/ 2);
1379 client_action_end(data
);
1382 void action_resize_relative_horz(union ActionData
*data
)
1384 ObClient
*c
= data
->relative
.any
.c
;
1385 client_action_start(data
);
1387 c
->area
.width
+ data
->relative
.deltax
* c
->size_inc
.width
,
1389 client_action_end(data
);
1392 void action_resize_relative_vert(union ActionData
*data
)
1394 ObClient
*c
= data
->relative
.any
.c
;
1396 client_action_start(data
);
1397 client_resize(c
, c
->area
.width
, c
->area
.height
+
1398 data
->relative
.deltax
* c
->size_inc
.height
);
1399 client_action_end(data
);
1403 void action_move_relative(union ActionData
*data
)
1405 ObClient
*c
= data
->relative
.any
.c
;
1406 client_action_start(data
);
1407 client_move(c
, c
->area
.x
+ data
->relative
.deltax
, c
->area
.y
+
1408 data
->relative
.deltay
);
1409 client_action_end(data
);
1412 void action_resize_relative(union ActionData
*data
)
1414 ObClient
*c
= data
->relative
.any
.c
;
1415 gint x
, y
, ow
, w
, oh
, h
, lw
, lh
;
1417 client_action_start(data
);
1422 w
= ow
+ data
->relative
.deltax
* c
->size_inc
.width
1423 + data
->relative
.deltaxl
* c
->size_inc
.width
;
1424 oh
= c
->area
.height
;
1425 h
= oh
+ data
->relative
.deltay
* c
->size_inc
.height
1426 + data
->relative
.deltayu
* c
->size_inc
.height
;
1428 client_try_configure(c
, &x
, &y
, &w
, &h
, &lw
, &lh
, TRUE
);
1429 client_move_resize(c
, x
+ (ow
- w
), y
+ (oh
- h
), w
, h
);
1430 client_action_end(data
);
1433 void action_maximize_full(union ActionData
*data
)
1435 client_action_start(data
);
1436 client_maximize(data
->client
.any
.c
, TRUE
, 0);
1437 client_action_end(data
);
1440 void action_unmaximize_full(union ActionData
*data
)
1442 client_action_start(data
);
1443 client_maximize(data
->client
.any
.c
, FALSE
, 0);
1444 client_action_end(data
);
1447 void action_toggle_maximize_full(union ActionData
*data
)
1449 client_action_start(data
);
1450 client_maximize(data
->client
.any
.c
,
1451 !(data
->client
.any
.c
->max_horz
||
1452 data
->client
.any
.c
->max_vert
),
1454 client_action_end(data
);
1457 void action_maximize_horz(union ActionData
*data
)
1459 client_action_start(data
);
1460 client_maximize(data
->client
.any
.c
, TRUE
, 1);
1461 client_action_end(data
);
1464 void action_unmaximize_horz(union ActionData
*data
)
1466 client_action_start(data
);
1467 client_maximize(data
->client
.any
.c
, FALSE
, 1);
1468 client_action_end(data
);
1471 void action_toggle_maximize_horz(union ActionData
*data
)
1473 client_action_start(data
);
1474 client_maximize(data
->client
.any
.c
,
1475 !data
->client
.any
.c
->max_horz
, 1);
1476 client_action_end(data
);
1479 void action_maximize_vert(union ActionData
*data
)
1481 client_action_start(data
);
1482 client_maximize(data
->client
.any
.c
, TRUE
, 2);
1483 client_action_end(data
);
1486 void action_unmaximize_vert(union ActionData
*data
)
1488 client_action_start(data
);
1489 client_maximize(data
->client
.any
.c
, FALSE
, 2);
1490 client_action_end(data
);
1493 void action_toggle_maximize_vert(union ActionData
*data
)
1495 client_action_start(data
);
1496 client_maximize(data
->client
.any
.c
,
1497 !data
->client
.any
.c
->max_vert
, 2);
1498 client_action_end(data
);
1501 void action_toggle_fullscreen(union ActionData
*data
)
1503 client_action_start(data
);
1504 client_fullscreen(data
->client
.any
.c
, !(data
->client
.any
.c
->fullscreen
));
1505 client_action_end(data
);
1508 void action_send_to_desktop(union ActionData
*data
)
1510 ObClient
*c
= data
->sendto
.any
.c
;
1512 if (!client_normal(c
)) return;
1514 if (data
->sendto
.desk
< screen_num_desktops
||
1515 data
->sendto
.desk
== DESKTOP_ALL
) {
1516 client_set_desktop(c
, data
->sendto
.desk
, data
->sendto
.follow
);
1517 if (data
->sendto
.follow
)
1518 screen_set_desktop(data
->sendto
.desk
, TRUE
);
1522 void action_desktop(union ActionData
*data
)
1524 if (!data
->inter
.any
.interactive
||
1525 (!data
->inter
.cancel
&& !data
->inter
.final
))
1527 if (data
->desktop
.desk
< screen_num_desktops
||
1528 data
->desktop
.desk
== DESKTOP_ALL
)
1530 screen_set_desktop(data
->desktop
.desk
, TRUE
);
1531 if (data
->inter
.any
.interactive
)
1532 screen_desktop_popup(data
->desktop
.desk
, TRUE
);
1535 screen_desktop_popup(0, FALSE
);
1538 void action_desktop_dir(union ActionData
*data
)
1542 d
= screen_cycle_desktop(data
->desktopdir
.dir
,
1543 data
->desktopdir
.wrap
,
1544 data
->desktopdir
.linear
,
1545 data
->desktopdir
.inter
.any
.interactive
,
1546 data
->desktopdir
.inter
.final
,
1547 data
->desktopdir
.inter
.cancel
);
1548 if (!data
->sendtodir
.inter
.any
.interactive
||
1549 !data
->sendtodir
.inter
.final
||
1550 data
->sendtodir
.inter
.cancel
)
1552 if (d
!= screen_desktop
) screen_set_desktop(d
, TRUE
);
1556 void action_send_to_desktop_dir(union ActionData
*data
)
1558 ObClient
*c
= data
->sendtodir
.inter
.any
.c
;
1561 if (!client_normal(c
)) return;
1563 d
= screen_cycle_desktop(data
->sendtodir
.dir
, data
->sendtodir
.wrap
,
1564 data
->sendtodir
.linear
,
1565 data
->sendtodir
.inter
.any
.interactive
,
1566 data
->sendtodir
.inter
.final
,
1567 data
->sendtodir
.inter
.cancel
);
1568 if (!data
->sendtodir
.inter
.any
.interactive
||
1569 !data
->sendtodir
.inter
.final
||
1570 data
->sendtodir
.inter
.cancel
)
1572 client_set_desktop(c
, d
, data
->sendtodir
.follow
);
1573 if (data
->sendtodir
.follow
&& d
!= screen_desktop
)
1574 screen_set_desktop(d
, TRUE
);
1578 void action_desktop_last(union ActionData
*data
)
1580 screen_set_desktop(screen_last_desktop
, TRUE
);
1583 void action_toggle_decorations(union ActionData
*data
)
1585 ObClient
*c
= data
->client
.any
.c
;
1587 client_action_start(data
);
1588 client_set_undecorated(c
, !c
->undecorated
);
1589 client_action_end(data
);
1592 static guint32
pick_corner(gint x
, gint y
, gint cx
, gint cy
, gint cw
, gint ch
)
1594 /* let's make x and y client relative instead of screen relative */
1596 y
= ch
- (y
- cy
); /* y is inverted, 0 is at the bottom of the window */
1599 #define A -4*X + 7*ch/3
1600 #define B 4*X -15*ch/9
1601 #define C -X/4 + 2*ch/3
1602 #define D X/4 + 5*ch/12
1603 #define E X/4 + ch/3
1604 #define F -X/4 + 7*ch/12
1605 #define G 4*X - 4*ch/3
1606 #define H -4*X + 8*ch/3
1607 #define a (y > 5*ch/9)
1608 #define b (x < 4*cw/9)
1609 #define c (x > 5*cw/9)
1610 #define d (y < 4*ch/9)
1613 Each of these defines (except X which is just there for fun), represents
1614 the equation of a line. The lines they represent are shown in the diagram
1615 below. Checking y against these lines, we are able to choose a region
1616 of the window as shown.
1618 +---------------------A-------|-------|-------B---------------------+
1625 | northwest | A north B | northeast |
1628 C---------------------+----A--+-------+--B----+---------------------D
1629 |CCCCCCC | A B | DDDDDDD|
1630 | CCCCCCCC | A | | B | DDDDDDDD |
1631 | CCCCCCC A B DDDDDDD |
1632 - - - - - - - - - - - +CCCCCCC+aaaaaaa+DDDDDDD+ - - - - - - - - - - -
1634 | west | b move c | east |
1636 - - - - - - - - - - - +EEEEEEE+ddddddd+FFFFFFF+- - - - - - - - - - -
1637 | EEEEEEE G H FFFFFFF |
1638 | EEEEEEEE | G | | H | FFFFFFFF |
1639 |EEEEEEE | G H | FFFFFFF|
1640 E---------------------+----G--+-------+--H----+---------------------F
1643 | southwest | G south H | southeast |
1650 +---------------------G-------|-------|-------H---------------------+
1653 if (y
< A
&& y
>= C
)
1654 return prop_atoms
.net_wm_moveresize_size_topleft
;
1655 else if (y
>= A
&& y
>= B
&& a
)
1656 return prop_atoms
.net_wm_moveresize_size_top
;
1657 else if (y
< B
&& y
>= D
)
1658 return prop_atoms
.net_wm_moveresize_size_topright
;
1659 else if (y
< C
&& y
>= E
&& b
)
1660 return prop_atoms
.net_wm_moveresize_size_left
;
1661 else if (y
< D
&& y
>= F
&& c
)
1662 return prop_atoms
.net_wm_moveresize_size_right
;
1663 else if (y
< E
&& y
>= G
)
1664 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
1665 else if (y
< G
&& y
< H
&& d
)
1666 return prop_atoms
.net_wm_moveresize_size_bottom
;
1667 else if (y
>= H
&& y
< F
)
1668 return prop_atoms
.net_wm_moveresize_size_bottomright
;
1670 return prop_atoms
.net_wm_moveresize_move
;
1687 void action_moveresize(union ActionData
*data
)
1689 ObClient
*c
= data
->moveresize
.any
.c
;
1692 if (data
->moveresize
.keyboard
) {
1693 corner
= (data
->moveresize
.move
?
1694 prop_atoms
.net_wm_moveresize_move_keyboard
:
1695 prop_atoms
.net_wm_moveresize_size_keyboard
);
1697 corner
= (data
->moveresize
.move
?
1698 prop_atoms
.net_wm_moveresize_move
:
1699 pick_corner(data
->any
.x
, data
->any
.y
,
1700 c
->frame
->area
.x
, c
->frame
->area
.y
,
1701 /* use the client size because the frame
1702 can be differently sized (shaded
1703 windows) and we want this based on the
1705 c
->area
.width
+ c
->frame
->size
.left
+
1706 c
->frame
->size
.right
,
1707 c
->area
.height
+ c
->frame
->size
.top
+
1708 c
->frame
->size
.bottom
));
1711 moveresize_start(c
, data
->any
.x
, data
->any
.y
, data
->any
.button
, corner
);
1714 void action_reconfigure(union ActionData
*data
)
1719 void action_restart(union ActionData
*data
)
1721 ob_restart_other(data
->execute
.path
);
1724 void action_exit(union ActionData
*data
)
1729 void action_showmenu(union ActionData
*data
)
1731 if (data
->showmenu
.name
) {
1732 menu_show(data
->showmenu
.name
, data
->any
.x
, data
->any
.y
,
1733 data
->any
.button
, data
->showmenu
.any
.c
);
1737 void action_cycle_windows(union ActionData
*data
)
1739 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1741 event_halt_focus_delay();
1743 focus_cycle(data
->cycle
.forward
,
1744 data
->cycle
.all_desktops
,
1745 data
->cycle
.dock_windows
,
1746 data
->cycle
.linear
, data
->any
.interactive
,
1748 data
->cycle
.inter
.final
, data
->cycle
.inter
.cancel
);
1751 void action_directional_focus(union ActionData
*data
)
1753 /* if using focus_delay, stop the timer now so that focus doesn't go moving
1755 event_halt_focus_delay();
1757 focus_directional_cycle(data
->interdiraction
.direction
,
1758 data
->interdiraction
.dock_windows
,
1759 data
->any
.interactive
,
1760 data
->interdiraction
.dialog
,
1761 data
->interdiraction
.inter
.final
,
1762 data
->interdiraction
.inter
.cancel
);
1765 void action_movetoedge(union ActionData
*data
)
1768 ObClient
*c
= data
->diraction
.any
.c
;
1770 x
= c
->frame
->area
.x
;
1771 y
= c
->frame
->area
.y
;
1773 switch(data
->diraction
.direction
) {
1774 case OB_DIRECTION_NORTH
:
1775 y
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
,
1776 data
->diraction
.hang
)
1777 - (data
->diraction
.hang
? c
->frame
->area
.height
: 0);
1779 case OB_DIRECTION_WEST
:
1780 x
= client_directional_edge_search(c
, OB_DIRECTION_WEST
,
1781 data
->diraction
.hang
)
1782 - (data
->diraction
.hang
? c
->frame
->area
.width
: 0);
1784 case OB_DIRECTION_SOUTH
:
1785 y
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
,
1786 data
->diraction
.hang
)
1787 - (data
->diraction
.hang
? 0 : c
->frame
->area
.height
);
1789 case OB_DIRECTION_EAST
:
1790 x
= client_directional_edge_search(c
, OB_DIRECTION_EAST
,
1791 data
->diraction
.hang
)
1792 - (data
->diraction
.hang
? 0 : c
->frame
->area
.width
);
1795 g_assert_not_reached();
1797 frame_frame_gravity(c
->frame
, &x
, &y
, c
->area
.width
, c
->area
.height
);
1798 client_action_start(data
);
1799 client_move(c
, x
, y
);
1800 client_action_end(data
);
1803 void action_growtoedge(union ActionData
*data
)
1805 gint x
, y
, width
, height
, dest
;
1806 ObClient
*c
= data
->diraction
.any
.c
;
1809 a
= screen_area(c
->desktop
);
1810 x
= c
->frame
->area
.x
;
1811 y
= c
->frame
->area
.y
;
1812 /* get the unshaded frame's dimensions..if it is shaded */
1813 width
= c
->area
.width
+ c
->frame
->size
.left
+ c
->frame
->size
.right
;
1814 height
= c
->area
.height
+ c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
1816 switch(data
->diraction
.direction
) {
1817 case OB_DIRECTION_NORTH
:
1818 if (c
->shaded
) break; /* don't allow vertical resize if shaded */
1820 dest
= client_directional_edge_search(c
, OB_DIRECTION_NORTH
, FALSE
);
1822 height
= height
/ 2;
1824 height
= c
->frame
->area
.y
+ height
- dest
;
1828 case OB_DIRECTION_WEST
:
1829 dest
= client_directional_edge_search(c
, OB_DIRECTION_WEST
, FALSE
);
1833 width
= c
->frame
->area
.x
+ width
- dest
;
1837 case OB_DIRECTION_SOUTH
:
1838 if (c
->shaded
) break; /* don't allow vertical resize if shaded */
1840 dest
= client_directional_edge_search(c
, OB_DIRECTION_SOUTH
, FALSE
);
1841 if (a
->y
+ a
->height
== y
+ c
->frame
->area
.height
) {
1842 height
= c
->frame
->area
.height
/ 2;
1843 y
= a
->y
+ a
->height
- height
;
1845 height
= dest
- c
->frame
->area
.y
;
1846 y
+= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1847 height
-= (height
- c
->frame
->area
.height
) % c
->size_inc
.height
;
1849 case OB_DIRECTION_EAST
:
1850 dest
= client_directional_edge_search(c
, OB_DIRECTION_EAST
, FALSE
);
1851 if (a
->x
+ a
->width
== x
+ c
->frame
->area
.width
) {
1852 width
= c
->frame
->area
.width
/ 2;
1853 x
= a
->x
+ a
->width
- width
;
1855 width
= dest
- c
->frame
->area
.x
;
1856 x
+= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1857 width
-= (width
- c
->frame
->area
.width
) % c
->size_inc
.width
;
1860 g_assert_not_reached();
1862 width
-= c
->frame
->size
.left
+ c
->frame
->size
.right
;
1863 height
-= c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
1864 frame_frame_gravity(c
->frame
, &x
, &y
, width
, height
);
1865 client_action_start(data
);
1866 client_move_resize(c
, x
, y
, width
, height
);
1867 client_action_end(data
);
1870 void action_send_to_layer(union ActionData
*data
)
1872 client_set_layer(data
->layer
.any
.c
, data
->layer
.layer
);
1875 void action_toggle_layer(union ActionData
*data
)
1877 ObClient
*c
= data
->layer
.any
.c
;
1879 client_action_start(data
);
1880 if (data
->layer
.layer
< 0)
1881 client_set_layer(c
, c
->below
? 0 : -1);
1882 else if (data
->layer
.layer
> 0)
1883 client_set_layer(c
, c
->above
? 0 : 1);
1884 client_action_end(data
);
1887 void action_toggle_dockautohide(union ActionData
*data
)
1889 config_dock_hide
= !config_dock_hide
;
1893 void action_toggle_show_desktop(union ActionData
*data
)
1895 screen_show_desktop(!screen_showing_desktop
, TRUE
);
1898 void action_show_desktop(union ActionData
*data
)
1900 screen_show_desktop(TRUE
, TRUE
);
1903 void action_unshow_desktop(union ActionData
*data
)
1905 screen_show_desktop(FALSE
, TRUE
);
1908 void action_break_chroot(union ActionData
*data
)
1910 /* break out of one chroot */
1911 keyboard_reset_chains(1);