]> Dogcows Code - chaz/openbox/blob - plugins/focus.c
d5774aedddf69d44d78cb9604d08d4067610ef2d
[chaz/openbox] / plugins / focus.c
1 #include "../kernel/dispatch.h"
2 #include "../kernel/screen.h"
3 #include "../kernel/client.h"
4 #include "../kernel/frame.h"
5 #include "../kernel/focus.h"
6 #include "../kernel/stacking.h"
7 #include "../kernel/openbox.h"
8
9 /* config options */
10 static gboolean follow_mouse = TRUE;
11 static gboolean warp_on_desk_switch = TRUE;
12 static gboolean focus_new = FALSE;
13
14 static int skip_enter = 0;
15
16 static gboolean focus_under_pointer()
17 {
18 Window w;
19 int i, x, y;
20 guint u;
21 GList *it;
22
23 if (XQueryPointer(ob_display, ob_root, &w, &w, &x, &y, &i, &i, &u))
24 {
25 for (it = stacking_list; it != NULL; it = it->next) {
26 Client *c = it->data;
27 if (c->desktop == screen_desktop &&
28 RECT_CONTAINS(c->frame->area, x, y))
29 break;
30 }
31 if (it != NULL) {
32 client_focus(it->data);
33 return TRUE;
34 }
35 }
36 return FALSE;
37 }
38
39 static void focus_fallback(gboolean switching_desks)
40 {
41 GList *it;
42
43 for (it = focus_order[screen_desktop]; it != NULL; it = it->next)
44 if (client_normal(it->data) && client_focus(it->data)) {
45 if (switching_desks && warp_on_desk_switch) {
46 XEvent e;
47 Client *c = it->data;
48
49 /* skip the next enter event from the desktop switch so focus
50 doesn't skip briefly to what was under the pointer */
51 while (XCheckTypedEvent(ob_display, EnterNotify, &e));
52 /*
53 XPutBackEvent(ob_display, &e);
54 /\* XXX WERE NOT SKIPPING THEM ALL@&*)! *\/
55 g_message("Skip");
56 ++skip_enter;
57 }
58 */
59
60 /* I have to do this warp twice! Otherwise windows dont get
61 Enter/Leave events when i warp on a desktop switch! */
62 XWarpPointer(ob_display, None, c->window, 0, 0, 0, 0,
63 c->area.width / 2, c->area.height / 2);
64 XWarpPointer(ob_display, None, c->window, 0, 0, 0, 0,
65 c->area.width / 2, c->area.height / 2);
66 }
67 break;
68 }
69 }
70
71 static void events(ObEvent *e, void *foo)
72 {
73 switch (e->type) {
74 case Event_Client_Mapped:
75 if (focus_new && client_normal(e->data.c.client))
76 client_focus(e->data.c.client);
77 break;
78
79 case Event_Client_Unmapped:
80 if (ob_state == State_Exiting) break;
81
82 if (e->data.c.client->focused)
83 if (!follow_mouse || !focus_under_pointer())
84 focus_fallback(FALSE);
85 break;
86
87 case Event_Client_Desktop:
88 /* focus the next available target if moving from the current
89 desktop. */
90 if ((unsigned)e->data.c.num[1] == screen_desktop)
91 if (!follow_mouse || !focus_under_pointer())
92 focus_fallback(FALSE);
93
94 case Event_Ob_Desktop:
95 focus_fallback(TRUE);
96 break;
97
98 case Event_X_EnterNotify:
99 if (skip_enter)
100 --skip_enter;
101 else if (e->data.x.client && client_normal(e->data.x.client))
102 client_focus(e->data.x.client);
103 break;
104
105 default:
106 g_assert_not_reached();
107 }
108 }
109
110 void plugin_startup()
111 {
112 dispatch_register(Event_Client_Mapped |
113 Event_Ob_Desktop |
114 Event_Client_Unmapped |
115 Event_X_EnterNotify,
116 (EventHandler)events, NULL);
117 }
118
119 void plugin_shutdown()
120 {
121 dispatch_register(0, (EventHandler)events, NULL);
122 }
This page took 0.042824 seconds and 4 git commands to generate.