]>
Dogcows Code - chaz/openbox/blob - plugins/focus.c
1 #include "../kernel/dispatch.h"
2 #include "../kernel/screen.h"
3 #include "../kernel/client.h"
4 #include "../kernel/focus.h"
5 #include "../kernel/stacking.h"
6 #include "../kernel/openbox.h"
8 static int skip_enter
= 0;
10 static void focus_fallback(guint desk
, gboolean warp
)
14 for (it
= focus_order
[desk
]; it
!= NULL
; it
= it
->next
)
15 if (client_focus(it
->data
)) {
16 if (warp
) { /* XXX make this configurable */
20 /* skip the next enter event from the desktop switch so focus
21 doesn't skip briefly to what was under the pointer */
22 if (XCheckTypedEvent(ob_display
, EnterNotify
, &e
)) {
23 XPutBackEvent(ob_display
, &e
);
27 XWarpPointer(ob_display
, None
, c
->window
, 0, 0, 0, 0,
28 c
->area
.width
/ 2, c
->area
.height
/ 2);
29 XWarpPointer(ob_display
, None
, c
->window
, 0, 0, 0, 0,
30 c
->area
.width
/ 2, c
->area
.height
/ 2);
36 static void events(ObEvent
*e
, void *foo
)
39 case Event_Client_Mapped
:
40 /* focus new normal windows */
41 if (client_normal(e
->data
.c
.client
))
42 client_focus(e
->data
.c
.client
);
45 case Event_Ob_Desktop
:
46 g_message("Desktop Switch");
47 /* focus the next available target */
48 focus_fallback(e
->data
.o
.num
[0], TRUE
);
51 case Event_Client_Unfocus
:
52 /* dont do this shit with sloppy focus... */
54 /\* nothing is left with focus! *\/
55 if (focus_client == NULL)
56 /\* focus the next available target *\/
57 focus_fallback(screen_desktop, FALSE);
61 case Event_X_LeaveNotify
:
62 g_message("Leave: %lx", e
->data
.x
.client
? e
->data
.x
.client
->window
: 0);
65 case Event_X_EnterNotify
:
66 g_message("Enter: %lx", e
->data
.x
.client
? e
->data
.x
.client
->window
: 0);
69 else if (e
->data
.x
.client
&& client_normal(e
->data
.x
.client
))
70 client_focus(e
->data
.x
.client
);
74 g_assert_not_reached();
80 dispatch_register(Event_Client_Mapped
|
82 Event_Client_Unfocus
|
85 (EventHandler
)events
, NULL
);
88 void plugin_shutdown()
90 dispatch_register(0, (EventHandler
)events
, NULL
);
This page took 0.040831 seconds and 5 git commands to generate.