]> icculus.org git repositories - dana/openbox.git/blob - openbox/action.c
save teh client for interactive actions cuz after teh keyboard is grabbed there is...
[dana/openbox.git] / openbox / action.c
1 #include "debug.h"
2 #include "client.h"
3 #include "focus.h"
4 #include "moveresize.h"
5 #include "menu.h"
6 #include "prop.h"
7 #include "stacking.h"
8 #include "screen.h"
9 #include "action.h"
10 #include "openbox.h"
11 #include "grab.h"
12 #include "keyboard.h"
13
14 #include <glib.h>
15
16 typedef struct ActionString {
17     char *name;
18     void (*func)(union ActionData *);
19     void (*setup)(ObAction **, ObUserAction uact);
20 } ActionString;
21
22 static ObAction *action_new(void (*func)(union ActionData *data),
23                             ObUserAction uact)
24 {
25     ObAction *a = g_new0(ObAction, 1);
26     a->func = func;
27
28     return a;
29 }
30
31 void action_free(ObAction *a)
32 {
33     if (a == NULL) return;
34
35     /* deal with pointers */
36     if (a->func == action_execute || a->func == action_restart)
37         g_free(a->data.execute.path);
38     else if (a->func == action_showmenu)
39         g_free(a->data.showmenu.name);
40
41     g_free(a);
42 }
43
44 void setup_action_directional_focus_north(ObAction **a, ObUserAction uact)
45
46     (*a)->data.interdiraction.inter.any.interactive = TRUE;
47     (*a)->data.interdiraction.direction = OB_DIRECTION_NORTH;
48 }
49
50 void setup_action_directional_focus_east(ObAction **a, ObUserAction uact)
51 {
52     (*a)->data.interdiraction.inter.any.interactive = TRUE;
53     (*a)->data.interdiraction.direction = OB_DIRECTION_EAST;
54 }
55
56 void setup_action_directional_focus_south(ObAction **a, ObUserAction uact)
57 {
58     (*a)->data.interdiraction.inter.any.interactive = TRUE;
59     (*a)->data.interdiraction.direction = OB_DIRECTION_SOUTH;
60 }
61
62 void setup_action_directional_focus_west(ObAction **a, ObUserAction uact)
63 {
64     (*a)->data.interdiraction.inter.any.interactive = TRUE;
65     (*a)->data.interdiraction.direction = OB_DIRECTION_WEST;
66 }
67
68 void setup_action_directional_focus_northeast(ObAction **a, ObUserAction uact)
69 {
70     (*a)->data.interdiraction.inter.any.interactive = TRUE;
71     (*a)->data.interdiraction.direction = OB_DIRECTION_NORTHEAST;
72 }
73
74 void setup_action_directional_focus_southeast(ObAction **a, ObUserAction uact)
75 {
76     (*a)->data.interdiraction.inter.any.interactive = TRUE;
77     (*a)->data.interdiraction.direction = OB_DIRECTION_SOUTHEAST;
78 }
79
80 void setup_action_directional_focus_southwest(ObAction **a, ObUserAction uact)
81 {
82     (*a)->data.interdiraction.inter.any.interactive = TRUE;
83     (*a)->data.interdiraction.direction = OB_DIRECTION_SOUTHWEST;
84 }
85
86 void setup_action_directional_focus_northwest(ObAction **a, ObUserAction uact)
87 {
88     (*a)->data.interdiraction.inter.any.interactive = TRUE;
89     (*a)->data.interdiraction.direction = OB_DIRECTION_NORTHWEST;
90 }
91
92 void setup_action_send_to_desktop(ObAction **a, ObUserAction uact)
93 {
94     (*a)->data.sendto.follow = TRUE;
95 }
96
97 void setup_action_send_to_desktop_prev(ObAction **a, ObUserAction uact)
98 {
99     (*a)->data.sendtodir.inter.any.interactive = TRUE;
100     (*a)->data.sendtodir.dir = OB_DIRECTION_WEST;
101     (*a)->data.sendtodir.linear = TRUE;
102     (*a)->data.sendtodir.wrap = TRUE;
103     (*a)->data.sendtodir.follow = TRUE;
104 }
105
106 void setup_action_send_to_desktop_next(ObAction **a, ObUserAction uact)
107 {
108     (*a)->data.sendtodir.inter.any.interactive = TRUE;
109     (*a)->data.sendtodir.dir = OB_DIRECTION_EAST;
110     (*a)->data.sendtodir.linear = TRUE;
111     (*a)->data.sendtodir.wrap = TRUE;
112     (*a)->data.sendtodir.follow = TRUE;
113 }
114
115 void setup_action_send_to_desktop_left(ObAction **a, ObUserAction uact)
116 {
117     (*a)->data.sendtodir.inter.any.interactive = TRUE;
118     (*a)->data.sendtodir.dir = OB_DIRECTION_WEST;
119     (*a)->data.sendtodir.linear = FALSE;
120     (*a)->data.sendtodir.wrap = TRUE;
121     (*a)->data.sendtodir.follow = TRUE;
122 }
123
124 void setup_action_send_to_desktop_right(ObAction **a, ObUserAction uact)
125 {
126     (*a)->data.sendtodir.inter.any.interactive = TRUE;
127     (*a)->data.sendtodir.dir = OB_DIRECTION_EAST;
128     (*a)->data.sendtodir.linear = FALSE;
129     (*a)->data.sendtodir.wrap = TRUE;
130     (*a)->data.sendtodir.follow = TRUE;
131 }
132
133 void setup_action_send_to_desktop_up(ObAction **a, ObUserAction uact)
134 {
135     (*a)->data.sendtodir.inter.any.interactive = TRUE;
136     (*a)->data.sendtodir.dir = OB_DIRECTION_NORTH;
137     (*a)->data.sendtodir.linear = FALSE;
138     (*a)->data.sendtodir.wrap = TRUE;
139     (*a)->data.sendtodir.follow = TRUE;
140 }
141
142 void setup_action_send_to_desktop_down(ObAction **a, ObUserAction uact)
143 {
144     (*a)->data.sendtodir.inter.any.interactive = TRUE;
145     (*a)->data.sendtodir.dir = OB_DIRECTION_SOUTH;
146     (*a)->data.sendtodir.linear = FALSE;
147     (*a)->data.sendtodir.wrap = TRUE;
148     (*a)->data.sendtodir.follow = TRUE;
149 }
150
151 void setup_action_desktop_prev(ObAction **a, ObUserAction uact)
152 {
153     (*a)->data.desktopdir.inter.any.interactive = TRUE;
154     (*a)->data.desktopdir.dir = OB_DIRECTION_WEST;
155     (*a)->data.desktopdir.linear = TRUE;
156     (*a)->data.desktopdir.wrap = TRUE;
157 }
158
159 void setup_action_desktop_next(ObAction **a, ObUserAction uact)
160 {
161     (*a)->data.desktopdir.inter.any.interactive = TRUE;
162     (*a)->data.desktopdir.dir = OB_DIRECTION_EAST;
163     (*a)->data.desktopdir.linear = TRUE;
164     (*a)->data.desktopdir.wrap = TRUE;
165 }
166
167 void setup_action_desktop_left(ObAction **a, ObUserAction uact)
168 {
169     (*a)->data.desktopdir.inter.any.interactive = TRUE;
170     (*a)->data.desktopdir.dir = OB_DIRECTION_WEST;
171     (*a)->data.desktopdir.linear = FALSE;
172     (*a)->data.desktopdir.wrap = TRUE;
173 }
174
175 void setup_action_desktop_right(ObAction **a, ObUserAction uact)
176 {
177     (*a)->data.desktopdir.inter.any.interactive = TRUE;
178     (*a)->data.desktopdir.dir = OB_DIRECTION_EAST;
179     (*a)->data.desktopdir.linear = FALSE;
180     (*a)->data.desktopdir.wrap = TRUE;
181 }
182
183 void setup_action_desktop_up(ObAction **a, ObUserAction uact)
184 {
185     (*a)->data.desktopdir.inter.any.interactive = TRUE;
186     (*a)->data.desktopdir.dir = OB_DIRECTION_NORTH;
187     (*a)->data.desktopdir.linear = FALSE;
188     (*a)->data.desktopdir.wrap = TRUE;
189 }
190
191 void setup_action_desktop_down(ObAction **a, ObUserAction uact)
192 {
193     (*a)->data.desktopdir.inter.any.interactive = TRUE;
194     (*a)->data.desktopdir.dir = OB_DIRECTION_SOUTH;
195     (*a)->data.desktopdir.linear = FALSE;
196     (*a)->data.desktopdir.wrap = TRUE;
197 }
198
199 void setup_action_cycle_windows_next(ObAction **a, ObUserAction uact)
200 {
201     (*a)->data.cycle.inter.any.interactive = TRUE;
202     (*a)->data.cycle.linear = FALSE;
203     (*a)->data.cycle.forward = TRUE;
204 }
205
206 void setup_action_cycle_windows_previous(ObAction **a, ObUserAction uact)
207 {
208     (*a)->data.cycle.inter.any.interactive = TRUE;
209     (*a)->data.cycle.linear = FALSE;
210     (*a)->data.cycle.forward = FALSE;
211 }
212
213 void setup_action_movetoedge_north(ObAction **a, ObUserAction uact)
214 {
215     (*a)->data.diraction.direction = OB_DIRECTION_NORTH;
216 }
217
218 void setup_action_movetoedge_south(ObAction **a, ObUserAction uact)
219 {
220     (*a)->data.diraction.direction = OB_DIRECTION_SOUTH;
221 }
222
223 void setup_action_movetoedge_east(ObAction **a, ObUserAction uact)
224 {
225     (*a)->data.diraction.direction = OB_DIRECTION_EAST;
226 }
227
228 void setup_action_movetoedge_west(ObAction **a, ObUserAction uact)
229 {
230     (*a)->data.diraction.direction = OB_DIRECTION_WEST;
231 }
232
233 void setup_action_growtoedge_north(ObAction **a, ObUserAction uact)
234 {
235     (*a)->data.diraction.direction = OB_DIRECTION_NORTH;
236 }
237
238 void setup_action_growtoedge_south(ObAction **a, ObUserAction uact)
239 {
240     (*a)->data.diraction.direction = OB_DIRECTION_SOUTH;
241 }
242
243 void setup_action_growtoedge_east(ObAction **a, ObUserAction uact)
244 {
245     (*a)->data.diraction.direction = OB_DIRECTION_EAST;
246 }
247
248 void setup_action_growtoedge_west(ObAction **a, ObUserAction uact)
249 {
250     (*a)->data.diraction.direction = OB_DIRECTION_WEST;
251 }
252
253 void setup_action_top_layer(ObAction **a, ObUserAction uact)
254 {
255     (*a)->data.layer.layer = 1;
256 }
257
258 void setup_action_normal_layer(ObAction **a, ObUserAction uact)
259 {
260     (*a)->data.layer.layer = 0;
261 }
262
263 void setup_action_bottom_layer(ObAction **a, ObUserAction uact)
264 {
265     (*a)->data.layer.layer = -1;
266 }
267
268 void setup_action_move(ObAction **a, ObUserAction uact)
269 {
270     (*a)->data.moveresize.move = TRUE;
271     (*a)->data.moveresize.keyboard =
272         (uact == OB_USER_ACTION_KEYBOARD_KEY ||
273          uact == OB_USER_ACTION_MENU_SELECTION);
274 }
275
276 void setup_action_resize(ObAction **a, ObUserAction uact)
277 {
278     (*a)->data.moveresize.move = FALSE;
279     (*a)->data.moveresize.keyboard =
280         (uact == OB_USER_ACTION_KEYBOARD_KEY ||
281          uact == OB_USER_ACTION_MENU_SELECTION);
282 }
283
284 void setup_action_showmenu(ObAction **a, ObUserAction uact)
285 {
286     /* you cannot call ShowMenu from inside a menu, cuz the menu code makes
287        assumptions that there is only one menu (and submenus) open at
288        a time! */
289     if (uact == OB_USER_ACTION_MENU_SELECTION) {
290         action_free(*a);
291         a = NULL;
292     }
293 }
294
295 ActionString actionstrings[] =
296 {
297     {
298         "execute", 
299         action_execute, 
300         NULL
301     },
302     {
303         "directionalfocusnorth", 
304         action_directional_focus, 
305         setup_action_directional_focus_north
306     },
307     {
308         "directionalfocuseast", 
309         action_directional_focus, 
310         setup_action_directional_focus_east
311     },
312     {
313         "directionalfocussouth", 
314         action_directional_focus, 
315         setup_action_directional_focus_south
316     },
317     {
318         "directionalfocuswest",
319         action_directional_focus,
320         setup_action_directional_focus_west
321     },
322     {
323         "directionalfocusnortheast",
324         action_directional_focus,
325         setup_action_directional_focus_northeast
326     },
327     {
328         "directionalfocussoutheast",
329         action_directional_focus,
330         setup_action_directional_focus_southeast
331     },
332     {
333         "directionalfocussouthwest",
334         action_directional_focus,
335         setup_action_directional_focus_southwest
336     },
337     {
338         "directionalfocusnorthwest",
339         action_directional_focus,
340         setup_action_directional_focus_northwest
341     },
342     {
343         "activate",
344         action_activate,
345         NULL
346     },
347     {
348         "focus",
349         action_focus,
350         NULL
351     },
352     {
353         "unfocus",
354         action_unfocus,
355         NULL
356     },
357     {
358         "iconify",
359         action_iconify,
360         NULL
361     },
362     {
363         "raiselower",
364         action_raiselower,
365         NULL
366     },
367     {
368         "raise",
369         action_raise,
370         NULL
371     },
372     {
373         "lower",
374         action_lower,
375         NULL
376     },
377     {
378         "close",
379         action_close,
380         NULL
381     },
382     {
383         "kill",
384         action_kill,
385         NULL
386     },
387     {
388         "shadelower",
389         action_shadelower,
390         NULL
391     },
392     {
393         "unshaderaise",
394         action_unshaderaise,
395         NULL
396     },
397     {
398         "shade",
399         action_shade,
400         NULL
401     },
402     {
403         "unshade",
404         action_unshade,
405         NULL
406     },
407     {
408         "toggleshade",
409         action_toggle_shade,
410         NULL
411     },
412     {
413         "toggleomnipresent",
414         action_toggle_omnipresent,
415         NULL
416     },
417     {
418         "moverelativehorz",
419         action_move_relative_horz,
420         NULL
421     },
422     {
423         "moverelativevert",
424         action_move_relative_vert,
425         NULL
426     },
427     {
428         "resizerelativehorz",
429         action_resize_relative_horz,
430         NULL
431     },
432     {
433         "resizerelativevert",
434         action_resize_relative_vert,
435         NULL
436     },
437     {
438         "maximizefull",
439         action_maximize_full,
440         NULL
441     },
442     {
443         "unmaximizefull",
444         action_unmaximize_full,
445         NULL
446     },
447     {
448         "togglemaximizefull",
449         action_toggle_maximize_full,
450         NULL
451     },
452     {
453         "maximizehorz",
454         action_maximize_horz,
455         NULL
456     },
457     {
458         "unmaximizehorz",
459         action_unmaximize_horz,
460         NULL
461     },
462     {
463         "togglemaximizehorz",
464         action_toggle_maximize_horz,
465         NULL
466     },
467     {
468         "maximizevert",
469         action_maximize_vert,
470         NULL
471     },
472     {
473         "unmaximizevert",
474         action_unmaximize_vert,
475         NULL
476     },
477     {
478         "togglemaximizevert",
479         action_toggle_maximize_vert,
480         NULL
481     },
482     {
483         "sendtodesktop",
484         action_send_to_desktop,
485         setup_action_send_to_desktop
486     },
487     {
488         "sendtodesktopnext",
489         action_send_to_desktop_dir,
490         setup_action_send_to_desktop_next
491     },
492     {
493         "sendtodesktopprevious",
494         action_send_to_desktop_dir,
495         setup_action_send_to_desktop_prev
496     },
497     {
498         "sendtodesktopright",
499         action_send_to_desktop_dir,
500         setup_action_send_to_desktop_right
501     },
502     {
503         "sendtodesktopleft",
504         action_send_to_desktop_dir,
505         setup_action_send_to_desktop_left
506     },
507     {
508         "sendtodesktopup",
509         action_send_to_desktop_dir,
510         setup_action_send_to_desktop_up
511     },
512     {
513         "sendtodesktopdown",
514         action_send_to_desktop_dir,
515         setup_action_send_to_desktop_down
516     },
517     {
518         "desktop",
519         action_desktop,
520         NULL
521     },
522     {
523         "desktopnext",
524         action_desktop_dir,
525         setup_action_desktop_next
526     },
527     {
528         "desktopprevious",
529         action_desktop_dir,
530         setup_action_desktop_prev
531     },
532     {
533         "desktopright",
534         action_desktop_dir,
535         setup_action_desktop_right
536     },
537     {
538         "desktopleft",
539         action_desktop_dir,
540         setup_action_desktop_left
541     },
542     {
543         "desktopup",
544         action_desktop_dir,
545         setup_action_desktop_up
546     },
547     {
548         "desktopdown",
549         action_desktop_dir,
550         setup_action_desktop_down
551     },
552     {
553         "toggledecorations",
554         action_toggle_decorations,
555         NULL
556     },
557     {
558         "move",
559         action_moveresize,
560         setup_action_move
561     },
562     {
563         "resize",
564         action_moveresize,
565         setup_action_resize
566     },
567     {
568         "toggleshowdesktop",
569         action_toggle_show_desktop,
570         NULL
571     },
572     {
573         "showdesktop",
574         action_show_desktop,
575         NULL
576     },
577     {
578         "unshowdesktop",
579         action_unshow_desktop,
580         NULL
581     },
582     {
583         "desktoplast",
584         action_desktop_last,
585         NULL
586     },
587     {
588         "reconfigure",
589         action_reconfigure,
590         NULL
591     },
592     {
593         "restart",
594         action_restart,
595         NULL
596     },
597     {
598         "exit",
599         action_exit,
600         NULL
601     },
602     {
603         "showmenu",
604         action_showmenu,
605         setup_action_showmenu
606     },
607     {
608         "sendtotoplayer",
609         action_send_to_layer,
610         setup_action_top_layer
611     },
612     {
613         "togglealwaysontop",
614         action_toggle_layer,
615         setup_action_top_layer
616     },
617     {
618         "sendtonormallayer",
619         action_send_to_layer,
620         setup_action_normal_layer
621     },
622     {
623         "sendtobottomlayer",
624         action_send_to_layer,
625         setup_action_bottom_layer
626     },
627     {
628         "togglealwaysonbottom",
629         action_toggle_layer,
630         setup_action_bottom_layer
631     },
632     {
633         "nextwindow",
634         action_cycle_windows,
635         setup_action_cycle_windows_next
636     },
637     {
638         "previouswindow",
639         action_cycle_windows,
640         setup_action_cycle_windows_previous
641     },
642     {
643         "movetoedgenorth",
644         action_movetoedge,
645         setup_action_movetoedge_north
646     },
647     {
648         "movetoedgesouth",
649         action_movetoedge,
650         setup_action_movetoedge_south
651     },
652     {
653         "movetoedgewest",
654         action_movetoedge,
655         setup_action_movetoedge_west
656     },
657     {
658         "movetoedgeeast",
659         action_movetoedge,
660         setup_action_movetoedge_east
661     },
662     {
663         "growtoedgenorth",
664         action_growtoedge,
665         setup_action_growtoedge_north
666     },
667     {
668         "growtoedgesouth",
669         action_growtoedge,
670         setup_action_growtoedge_south
671     },
672     {
673         "growtoedgewest",
674         action_growtoedge,
675         setup_action_growtoedge_west
676     },
677     {
678         "growtoedgeeast",
679         action_growtoedge,
680         setup_action_growtoedge_east
681     },
682     {
683         NULL,
684         NULL,
685         NULL
686     }
687 };
688
689 ObAction *action_from_string(char *name, ObUserAction uact)
690 {
691     ObAction *a = NULL;
692     gboolean exist = FALSE;
693     int i;
694
695     for (i = 0; actionstrings[i].name; i++)
696         if (!g_ascii_strcasecmp(name, actionstrings[i].name)) {
697             exist = TRUE;
698             a = action_new(actionstrings[i].func, uact);
699             if (actionstrings[i].setup)
700                 actionstrings[i].setup(&a, uact);
701             /* only key bindings can be interactive. thus saith the xor. */
702             if (uact != OB_USER_ACTION_KEYBOARD_KEY)
703                 a->data.any.interactive = FALSE;
704             break;
705         }
706     if (!exist)
707         g_warning("Invalid action '%s' requested. No such action exists.",
708                   name);
709     if (!a)
710         g_warning("Invalid use of action '%s'. Action will be ignored.", name);
711     return a;
712 }
713
714 ObAction *action_parse(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
715                        ObUserAction uact)
716 {
717     char *actname;
718     ObAction *act = NULL;
719     xmlNodePtr n;
720
721     if (parse_attr_string("name", node, &actname)) {
722         if ((act = action_from_string(actname, uact))) {
723             if (act->func == action_execute || act->func == action_restart) {
724                 if ((n = parse_find_node("execute", node->xmlChildrenNode))) {
725                     gchar *s = parse_string(doc, n);
726                     act->data.execute.path = ob_expand_tilde(s);
727                     g_free(s);
728                 }
729             } else if (act->func == action_showmenu) {
730                 if ((n = parse_find_node("menu", node->xmlChildrenNode)))
731                     act->data.showmenu.name = parse_string(doc, n);
732             } else if (act->func == action_move_relative_horz ||
733                        act->func == action_move_relative_vert ||
734                        act->func == action_resize_relative_horz ||
735                        act->func == action_resize_relative_vert) {
736                 if ((n = parse_find_node("delta", node->xmlChildrenNode)))
737                     act->data.relative.delta = parse_int(doc, n);
738             } else if (act->func == action_desktop) {
739                 if ((n = parse_find_node("desktop", node->xmlChildrenNode)))
740                     act->data.desktop.desk = parse_int(doc, n);
741                 if (act->data.desktop.desk > 0) act->data.desktop.desk--;
742            } else if (act->func == action_send_to_desktop) {
743                 if ((n = parse_find_node("desktop", node->xmlChildrenNode)))
744                     act->data.sendto.desk = parse_int(doc, n);
745                 if (act->data.sendto.desk > 0) act->data.sendto.desk--;
746                 if ((n = parse_find_node("follow", node->xmlChildrenNode)))
747                     act->data.sendto.follow = parse_bool(doc, n);
748             } else if (act->func == action_desktop_dir) {
749                 if ((n = parse_find_node("wrap", node->xmlChildrenNode)))
750                     act->data.desktopdir.wrap = parse_bool(doc, n); 
751             } else if (act->func == action_send_to_desktop_dir) {
752                 if ((n = parse_find_node("wrap", node->xmlChildrenNode)))
753                     act->data.sendtodir.wrap = parse_bool(doc, n);
754                 if ((n = parse_find_node("follow", node->xmlChildrenNode)))
755                     act->data.sendtodir.follow = parse_bool(doc, n);
756             } else if (act->func == action_activate) {
757                 if ((n = parse_find_node("here", node->xmlChildrenNode)))
758                     act->data.activate.here = parse_bool(doc, n);
759             } else if (act->func == action_cycle_windows) {
760                 if ((n = parse_find_node("linear", node->xmlChildrenNode)))
761                     act->data.cycle.linear = parse_bool(doc, n);
762             }
763         }
764         g_free(actname);
765     }
766     return act;
767 }
768
769 void action_run_full(ObAction *a, struct _ObClient *c,
770                      guint state, guint button, gint x, gint y,
771                      gboolean cancel, gboolean done)
772 {
773     if (x < 0 && y < 0)
774         screen_pointer_pos(&x, &y);
775
776     a->data.any.c = c;
777     a->data.any.x = x;
778     a->data.any.y = y;
779
780     a->data.any.button = button;
781
782     if (a->data.any.interactive) {
783         a->data.inter.cancel = cancel;
784         a->data.inter.final = done;
785         if (!(cancel || done))
786             keyboard_interactive_grab(state, c, a);
787     }
788
789     a->func(&a->data);
790 }
791
792 void action_execute(union ActionData *data)
793 {
794     GError *e = NULL;
795     char *cmd;
796     if (data->execute.path) {
797         cmd = g_filename_from_utf8(data->execute.path, -1, NULL, NULL, NULL);
798         if (cmd) {
799             if (!g_spawn_command_line_async(cmd, &e)) {
800                 g_warning("failed to execute '%s': %s",
801                           cmd, e->message);
802             }
803         } else {
804             g_warning("failed to convert '%s' from utf8", data->execute.path);
805         }
806     }
807 }
808
809 void action_activate(union ActionData *data)
810 {
811     if (data->activate.any.c)
812         client_activate(data->activate.any.c, data->activate.here);
813 }
814
815 void action_focus(union ActionData *data)
816 {
817     if (data->client.any.c)
818         client_focus(data->client.any.c);
819 }
820
821 void action_unfocus (union ActionData *data)
822 {
823     if (data->client.any.c)
824         client_unfocus(data->client.any.c);
825 }
826
827 void action_iconify(union ActionData *data)
828 {
829     if (data->client.any.c)
830         client_iconify(data->client.any.c, TRUE, TRUE);
831 }
832
833 void action_raiselower(union ActionData *data)
834 {
835     ObClient *c = data->client.any.c;
836     GList *it;
837     gboolean raise = FALSE;
838
839     if (!c) return;
840
841     for (it = stacking_list; it; it = g_list_next(it)) {
842         ObClient *cit = it->data;
843
844         if (cit == c) break;
845         if (client_normal(cit) == client_normal(c) &&
846             cit->layer == c->layer &&
847             cit->frame->visible)
848         {
849             if (RECT_INTERSECTS_RECT(cit->frame->area, c->frame->area)) {
850                 raise = TRUE;
851                 break;
852             }
853         }
854     }
855
856     if (raise)
857         stacking_raise(CLIENT_AS_WINDOW(c));
858     else
859         stacking_lower(CLIENT_AS_WINDOW(c));
860 }
861
862 void action_raise(union ActionData *data)
863 {
864     if (data->client.any.c)
865         stacking_raise(CLIENT_AS_WINDOW(data->client.any.c));
866 }
867
868 void action_unshaderaise(union ActionData *data)
869 {
870     if (data->client.any.c) {
871         if (data->client.any.c->shaded) {
872             grab_pointer(TRUE, OB_CURSOR_NONE);
873             client_shade(data->client.any.c, FALSE);
874             grab_pointer(FALSE, OB_CURSOR_NONE);
875         } else
876             stacking_raise(CLIENT_AS_WINDOW(data->client.any.c));
877     }
878 }
879
880 void action_shadelower(union ActionData *data)
881 {
882     if (data->client.any.c) {
883         if (data->client.any.c->shaded)
884             stacking_lower(CLIENT_AS_WINDOW(data->client.any.c));
885         else {
886             grab_pointer(TRUE, OB_CURSOR_NONE);
887             client_shade(data->client.any.c, TRUE);
888             grab_pointer(FALSE, OB_CURSOR_NONE);
889         }
890     }
891 }
892
893 void action_lower(union ActionData *data)
894 {
895     if (data->client.any.c)
896         stacking_lower(CLIENT_AS_WINDOW(data->client.any.c));
897 }
898
899 void action_close(union ActionData *data)
900 {
901     if (data->client.any.c)
902         client_close(data->client.any.c);
903 }
904
905 void action_kill(union ActionData *data)
906 {
907     if (data->client.any.c)
908         client_kill(data->client.any.c);
909 }
910
911 void action_shade(union ActionData *data)
912 {
913     if (data->client.any.c) { 
914         grab_pointer(TRUE, OB_CURSOR_NONE);
915         client_shade(data->client.any.c, TRUE);
916         grab_pointer(FALSE, OB_CURSOR_NONE);
917     }
918 }
919
920 void action_unshade(union ActionData *data)
921 {
922     if (data->client.any.c) {
923         grab_pointer(TRUE, OB_CURSOR_NONE);
924         client_shade(data->client.any.c, FALSE);
925         grab_pointer(FALSE, OB_CURSOR_NONE);
926     }
927 }
928
929 void action_toggle_shade(union ActionData *data)
930 {
931     if (data->client.any.c) {
932         grab_pointer(TRUE, OB_CURSOR_NONE);
933         client_shade(data->client.any.c, !data->client.any.c->shaded);
934         grab_pointer(FALSE, OB_CURSOR_NONE);
935     }
936 }
937
938 void action_toggle_omnipresent(union ActionData *data)
939
940     if (data->client.any.c)
941         client_set_desktop(data->client.any.c,
942                            data->client.any.c->desktop == DESKTOP_ALL ?
943                            screen_desktop : DESKTOP_ALL, FALSE);
944 }
945
946 void action_move_relative_horz(union ActionData *data)
947 {
948     ObClient *c = data->relative.any.c;
949     if (c) {
950         grab_pointer(TRUE, OB_CURSOR_NONE);
951         client_move(c, c->area.x + data->relative.delta, c->area.y);
952         grab_pointer(FALSE, OB_CURSOR_NONE);
953     }
954 }
955
956 void action_move_relative_vert(union ActionData *data)
957 {
958     ObClient *c = data->relative.any.c;
959     if (c) {
960         grab_pointer(TRUE, OB_CURSOR_NONE);
961         client_move(c, c->area.x, c->area.y + data->relative.delta);
962         grab_pointer(FALSE, OB_CURSOR_NONE);
963     }
964 }
965
966 void action_resize_relative_horz(union ActionData *data)
967 {
968     ObClient *c = data->relative.any.c;
969     if (c) {
970         grab_pointer(TRUE, OB_CURSOR_NONE);
971         client_resize(c,
972                       c->area.width + data->relative.delta * c->size_inc.width,
973                       c->area.height);
974         grab_pointer(FALSE, OB_CURSOR_NONE);
975     }
976 }
977
978 void action_resize_relative_vert(union ActionData *data)
979 {
980     ObClient *c = data->relative.any.c;
981     if (c && !c->shaded) {
982         grab_pointer(TRUE, OB_CURSOR_NONE);
983         client_resize(c, c->area.width, c->area.height +
984                       data->relative.delta * c->size_inc.height);
985         grab_pointer(FALSE, OB_CURSOR_NONE);
986     }
987 }
988
989 void action_maximize_full(union ActionData *data)
990 {
991     if (data->client.any.c)
992         client_maximize(data->client.any.c, TRUE, 0, TRUE);
993 }
994
995 void action_unmaximize_full(union ActionData *data)
996 {
997     if (data->client.any.c)
998         client_maximize(data->client.any.c, FALSE, 0, TRUE);
999 }
1000
1001 void action_toggle_maximize_full(union ActionData *data)
1002 {
1003     if (data->client.any.c)
1004         client_maximize(data->client.any.c,
1005                         !(data->client.any.c->max_horz ||
1006                           data->client.any.c->max_vert),
1007                         0, TRUE);
1008 }
1009
1010 void action_maximize_horz(union ActionData *data)
1011 {
1012     if (data->client.any.c)
1013         client_maximize(data->client.any.c, TRUE, 1, TRUE);
1014 }
1015
1016 void action_unmaximize_horz(union ActionData *data)
1017 {
1018     if (data->client.any.c)
1019         client_maximize(data->client.any.c, FALSE, 1, TRUE);
1020 }
1021
1022 void action_toggle_maximize_horz(union ActionData *data)
1023 {
1024     if (data->client.any.c)
1025         client_maximize(data->client.any.c,
1026                         !data->client.any.c->max_horz, 1, TRUE);
1027 }
1028
1029 void action_maximize_vert(union ActionData *data)
1030 {
1031     if (data->client.any.c)
1032         client_maximize(data->client.any.c, TRUE, 2, TRUE);
1033 }
1034
1035 void action_unmaximize_vert(union ActionData *data)
1036 {
1037     if (data->client.any.c)
1038         client_maximize(data->client.any.c, FALSE, 2, TRUE);
1039 }
1040
1041 void action_toggle_maximize_vert(union ActionData *data)
1042 {
1043     if (data->client.any.c)
1044         client_maximize(data->client.any.c, !data->client.any.c->max_vert, 2, TRUE);
1045 }
1046
1047 void action_send_to_desktop(union ActionData *data)
1048 {
1049     ObClient *c = data->sendto.any.c;
1050
1051     if (!c || !client_normal(c)) return;
1052
1053     if (data->sendto.desk < screen_num_desktops ||
1054         data->sendto.desk == DESKTOP_ALL) {
1055         client_set_desktop(c, data->sendto.desk, data->sendto.follow);
1056         if (data->sendto.follow)
1057             screen_set_desktop(data->sendto.desk);
1058     }
1059 }
1060
1061 void action_desktop(union ActionData *data)
1062 {
1063     if (data->desktop.desk < screen_num_desktops ||
1064         data->desktop.desk == DESKTOP_ALL)
1065         screen_set_desktop(data->desktop.desk);
1066 }
1067
1068 void action_desktop_dir(union ActionData *data)
1069 {
1070     guint d;
1071
1072     d = screen_cycle_desktop(data->desktopdir.dir,
1073                              data->desktopdir.wrap,
1074                              data->sendtodir.linear,
1075                              data->desktopdir.inter.any.interactive,
1076                              data->desktopdir.inter.final,
1077                              data->desktopdir.inter.cancel);
1078     screen_set_desktop(d);
1079 }
1080
1081 void action_send_to_desktop_dir(union ActionData *data)
1082 {
1083     ObClient *c = data->sendtodir.inter.any.c;
1084     guint d;
1085
1086     if (!c || !client_normal(c)) return;
1087
1088     d = screen_cycle_desktop(data->sendtodir.dir, data->sendtodir.wrap,
1089                              data->sendtodir.linear,
1090                              data->sendtodir.inter.any.interactive,
1091                              data->sendtodir.inter.final,
1092                              data->sendtodir.inter.cancel);
1093     client_set_desktop(c, d, data->sendtodir.follow);
1094     if (data->sendtodir.follow)
1095         screen_set_desktop(d);
1096 }
1097
1098 void action_desktop_last(union ActionData *data)
1099 {
1100     screen_set_desktop(screen_last_desktop);
1101 }
1102
1103 void action_toggle_decorations(union ActionData *data)
1104 {
1105     ObClient *c = data->client.any.c;
1106
1107     if (!c) return;
1108
1109     c->decorate = !c->decorate;
1110     client_setup_decor_and_functions(c);
1111 }
1112
1113 static guint32 pick_corner(int x, int y, int cx, int cy, int cw, int ch)
1114 {
1115     if (x - cx > cw / 2) {
1116         if (y - cy > ch / 2)
1117             return prop_atoms.net_wm_moveresize_size_bottomright;
1118         else
1119             return prop_atoms.net_wm_moveresize_size_topright;
1120     } else {
1121         if (y - cy > ch / 2)
1122             return prop_atoms.net_wm_moveresize_size_bottomleft;
1123         else
1124             return prop_atoms.net_wm_moveresize_size_topleft;
1125     }
1126 }
1127
1128 void action_moveresize(union ActionData *data)
1129 {
1130     ObClient *c = data->moveresize.any.c;
1131     guint32 corner;
1132
1133     if (!c || !client_normal(c)) return;
1134
1135     if (data->moveresize.keyboard) {
1136         corner = (data->moveresize.move ?
1137                   prop_atoms.net_wm_moveresize_move_keyboard :
1138                   prop_atoms.net_wm_moveresize_size_keyboard);
1139     } else {
1140         corner = (data->moveresize.move ?
1141                   prop_atoms.net_wm_moveresize_move :
1142                   pick_corner(data->any.x, data->any.y,
1143                               c->frame->area.x, c->frame->area.y,
1144                               /* use the client size because the frame
1145                                  can be differently sized (shaded
1146                                  windows) and we want this based on the
1147                                  clients size */
1148                               c->area.width + c->frame->size.left +
1149                               c->frame->size.right,
1150                               c->area.height + c->frame->size.top +
1151                               c->frame->size.bottom));
1152     }
1153
1154     moveresize_start(c, data->any.x, data->any.y, data->any.button, corner);
1155 }
1156
1157 void action_reconfigure(union ActionData *data)
1158 {
1159     ob_reconfigure();
1160 }
1161
1162 void action_restart(union ActionData *data)
1163 {
1164     ob_restart_other(data->execute.path);
1165 }
1166
1167 void action_exit(union ActionData *data)
1168 {
1169     ob_exit();
1170 }
1171
1172 void action_showmenu(union ActionData *data)
1173 {
1174     if (data->showmenu.name) {
1175         menu_show(data->showmenu.name, data->any.x, data->any.y,
1176                   data->showmenu.any.c);
1177     }
1178 }
1179
1180 void action_cycle_windows(union ActionData *data)
1181 {
1182     focus_cycle(data->cycle.forward, data->cycle.linear,
1183                 data->cycle.inter.any.interactive,
1184                 data->cycle.inter.final, data->cycle.inter.cancel);
1185 }
1186
1187 void action_directional_focus(union ActionData *data)
1188 {
1189     focus_directional_cycle(data->interdiraction.direction,
1190                             data->interdiraction.inter.any.interactive,
1191                             data->interdiraction.inter.final,
1192                             data->interdiraction.inter.cancel);
1193 }
1194
1195 void action_movetoedge(union ActionData *data)
1196 {
1197     int x, y;
1198     ObClient *c = data->diraction.any.c;
1199
1200     if (!c)
1201         return;
1202     x = c->frame->area.x;
1203     y = c->frame->area.y;
1204     
1205     switch(data->diraction.direction) {
1206     case OB_DIRECTION_NORTH:
1207         y = client_directional_edge_search(c, OB_DIRECTION_NORTH);
1208         break;
1209     case OB_DIRECTION_WEST:
1210         x = client_directional_edge_search(c, OB_DIRECTION_WEST);
1211         break;
1212     case OB_DIRECTION_SOUTH:
1213         y = client_directional_edge_search(c, OB_DIRECTION_SOUTH) -
1214             c->frame->area.height;
1215         break;
1216     case OB_DIRECTION_EAST:
1217         x = client_directional_edge_search(c, OB_DIRECTION_EAST) -
1218             c->frame->area.width;
1219         break;
1220     default:
1221         g_assert_not_reached();
1222     }
1223     frame_frame_gravity(c->frame, &x, &y);
1224     grab_pointer(TRUE, OB_CURSOR_NONE);
1225     client_move(c, x, y);
1226     grab_pointer(FALSE, OB_CURSOR_NONE);
1227
1228 }
1229
1230 void action_growtoedge(union ActionData *data)
1231 {
1232     int x, y, width, height, dest;
1233     ObClient *c = data->diraction.any.c;
1234     Rect *a = screen_area(c->desktop);
1235
1236     if (!c)
1237         return;
1238     
1239     x = c->frame->area.x;
1240     y = c->frame->area.y;
1241     width = c->frame->area.width;
1242     height = c->frame->area.height;
1243
1244     switch(data->diraction.direction) {
1245     case OB_DIRECTION_NORTH:
1246         dest = client_directional_edge_search(c, OB_DIRECTION_NORTH);
1247         if (a->y == y)
1248             height = c->frame->area.height / 2;
1249         else {
1250             height = c->frame->area.y + c->frame->area.height - dest;
1251             y = dest;
1252         }
1253         break;
1254     case OB_DIRECTION_WEST:
1255         dest = client_directional_edge_search(c, OB_DIRECTION_WEST);
1256         if (a->x == x)
1257             width = c->frame->area.width / 2;
1258         else {
1259             width = c->frame->area.x + c->frame->area.width - dest;
1260             x = dest;
1261         }
1262         break;
1263     case OB_DIRECTION_SOUTH:
1264         dest = client_directional_edge_search(c, OB_DIRECTION_SOUTH);
1265         if (a->y + a->height == y + c->frame->area.height) {
1266             height = c->frame->area.height / 2;
1267             y = a->y + a->height - height;
1268         } else
1269             height = dest - c->frame->area.y;
1270         y += (height - c->frame->area.height) % c->size_inc.height;
1271         height -= (height - c->frame->area.height) % c->size_inc.height;
1272         break;
1273     case OB_DIRECTION_EAST:
1274         dest = client_directional_edge_search(c, OB_DIRECTION_EAST);
1275         if (a->x + a->width == x + c->frame->area.width) {
1276             width = c->frame->area.width / 2;
1277             x = a->x + a->width - width;
1278         } else
1279             width = dest - c->frame->area.x;
1280         x += (width - c->frame->area.width) % c->size_inc.width;
1281         width -= (width - c->frame->area.width) % c->size_inc.width;
1282         break;
1283     default:
1284         g_assert_not_reached();
1285     }
1286     frame_frame_gravity(c->frame, &x, &y);
1287     width -= c->frame->size.left + c->frame->size.right;
1288     height -= c->frame->size.top + c->frame->size.bottom;
1289     grab_pointer(TRUE, OB_CURSOR_NONE);
1290     client_move_resize(c, x, y, width, height);
1291     grab_pointer(FALSE, OB_CURSOR_NONE);
1292 }
1293
1294 void action_send_to_layer(union ActionData *data)
1295 {
1296     if (data->layer.any.c)
1297         client_set_layer(data->layer.any.c, data->layer.layer);
1298 }
1299
1300 void action_toggle_layer(union ActionData *data)
1301 {
1302     ObClient *c = data->layer.any.c;
1303
1304     if (c) {
1305         if (data->layer.layer < 0)
1306             client_set_layer(c, c->below ? 0 : -1);
1307         else if (data->layer.layer > 0)
1308             client_set_layer(c, c->above ? 0 : 1);
1309     }
1310 }
1311
1312 void action_toggle_show_desktop(union ActionData *data)
1313 {
1314     screen_show_desktop(!screen_showing_desktop);
1315 }
1316
1317 void action_show_desktop(union ActionData *data)
1318 {
1319     screen_show_desktop(TRUE);
1320 }
1321
1322 void action_unshow_desktop(union ActionData *data)
1323 {
1324     screen_show_desktop(FALSE);
1325 }