add the move action
[dana/openbox-history.git] / openbox / actions / focus.c
1 #include "openbox/actions.h"
2 #include "openbox/event.h"
3 #include "openbox/client.h"
4 #include "openbox/focus.h"
5
6 typedef struct {
7     gboolean here;
8 } Options;
9
10 static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node);
11 static void     free_func(gpointer options);
12 static gboolean run_func(ObActionsData *data, gpointer options);
13
14 void action_focus_startup()
15 {
16     actions_register("Focus",
17                      setup_func,
18                      free_func,
19                      run_func,
20                      NULL, NULL);
21 }
22
23 static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
24 {
25     xmlNodePtr n;
26     Options *o;
27
28     o = g_new0(Options, 1);
29
30     if ((n = parse_find_node("here", node)))
31         o->here = parse_bool(doc, n);
32     return o;
33 }
34
35 static void free_func(gpointer options)
36 {
37     Options *o = options;
38
39     g_free(o);
40 }
41
42 /* Always return FALSE because its not interactive */
43 static gboolean run_func(ObActionsData *data, gpointer options)
44 {
45     Options *o = options;
46
47     if (data->client) {
48         if (data->button == 0 || client_mouse_focusable(data->client) ||
49             data->context != OB_FRAME_CONTEXT_CLIENT ||
50             data->context != OB_FRAME_CONTEXT_FRAME)
51         {
52             client_activate(data->client, o->here, FALSE, FALSE, TRUE);
53         }
54     } else {
55         /* focus action on something other than a client, make keybindings
56            work for this openbox instance, but don't focus any specific client
57         */
58         focus_nothing();
59     }
60
61     return FALSE;
62 }