]> Dogcows Code - chaz/openbox/blob - openbox/actions/focus.c
add raise action
[chaz/openbox] / 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 if (data->context == OB_FRAME_CONTEXT_DESKTOP) {
55 /* focus action on the root window. make keybindings work for this
56 openbox instance, but don't focus any specific client */
57 focus_nothing();
58 }
59
60 return FALSE;
61 }
This page took 0.035112 seconds and 4 git commands to generate.