1 #include "kernel/openbox.h"
2 #include "kernel/dispatch.h"
3 #include "kernel/action.h"
4 #include "kernel/event.h"
5 #include "kernel/client.h"
6 #include "kernel/prop.h"
7 #include "kernel/grab.h"
8 #include "kernel/frame.h"
9 #include "parser/parse.h"
10 #include "translate.h"
15 static int dclicktime
;
18 <context name="Titlebar">
19 <mousebind button="Left" action="Press">
20 <action name="Raise"></action>
26 static void parse_xml(xmlDocPtr doc
, xmlNodePtr node
, void *d
)
28 xmlNodePtr n
, nbut
, nact
;
34 if ((n
= parse_find_node("dragThreshold", node
)))
35 threshold
= parse_int(doc
, n
);
36 if ((n
= parse_find_node("doubleClickTime", node
)))
37 dclicktime
= parse_int(doc
, n
);
39 n
= parse_find_node("context", node
);
41 if (!parse_attr_string("name", n
, &contextstr
))
43 nbut
= parse_find_node("mousebind", n
->xmlChildrenNode
);
45 if (!parse_attr_string("button", nbut
, &buttonstr
))
47 if (parse_attr_contains("press", nbut
, "action"))
48 mact
= MouseAction_Press
;
49 else if (parse_attr_contains("release", nbut
, "action"))
50 mact
= MouseAction_Release
;
51 else if (parse_attr_contains("click", nbut
, "action"))
52 mact
= MouseAction_Click
;
53 else if (parse_attr_contains("doubleclick", nbut
,"action"))
54 mact
= MouseAction_DClick
;
55 else if (parse_attr_contains("drag", nbut
, "action"))
56 mact
= MouseAction_Motion
;
59 nact
= parse_find_node("action", nbut
->xmlChildrenNode
);
61 if ((action
= action_parse(doc
, nact
))) {
62 /* validate that its okay for a mouse binding*/
63 if (mact
== MouseAction_Motion
) {
64 if (action
->func
!= action_moveresize
||
65 action
->data
.moveresize
.corner
==
66 prop_atoms
.net_wm_moveresize_move_keyboard
||
67 action
->data
.moveresize
.corner
==
68 prop_atoms
.net_wm_moveresize_size_keyboard
) {
73 if (action
->func
== action_moveresize
&&
74 action
->data
.moveresize
.corner
!=
75 prop_atoms
.net_wm_moveresize_move_keyboard
&&
76 action
->data
.moveresize
.corner
!=
77 prop_atoms
.net_wm_moveresize_size_keyboard
) {
83 mbind(buttonstr
, contextstr
, mact
, action
);
85 nact
= parse_find_node("action", nact
->next
);
89 nbut
= parse_find_node("mousebind", nbut
->next
);
93 n
= parse_find_node("context", n
->next
);
97 void plugin_setup_config()
101 parse_register("mouse", parse_xml
, NULL
);
104 /* Array of GSList*s of PointerBinding*s. */
105 static GSList
*bound_contexts
[OB_FRAME_NUM_CONTEXTS
];
107 static void grab_for_client(ObClient
*client
, gboolean grab
)
112 for (i
= 0; i
< OB_FRAME_NUM_CONTEXTS
; ++i
)
113 for (it
= bound_contexts
[i
]; it
!= NULL
; it
= it
->next
) {
114 /* grab/ungrab the button */
115 MouseBinding
*b
= it
->data
;
120 if (i
== OB_FRAME_CONTEXT_FRAME
) {
121 win
= client
->frame
->window
;
122 mode
= GrabModeAsync
;
123 mask
= ButtonPressMask
| ButtonMotionMask
| ButtonReleaseMask
;
124 } else if (i
== OB_FRAME_CONTEXT_CLIENT
) {
125 win
= client
->frame
->plate
;
126 mode
= GrabModeSync
; /* this is handled in event */
127 mask
= ButtonPressMask
; /* can't catch more than this with Sync
128 mode the release event is
129 manufactured in event() */
133 grab_button_full(b
->button
, b
->state
, win
, mask
, mode
, None
);
135 ungrab_button(b
->button
, b
->state
, win
);
139 static void grab_all_clients(gboolean grab
)
143 for (it
= client_list
; it
!= NULL
; it
= it
->next
)
144 grab_for_client(it
->data
, grab
);
147 static void clearall()
152 for(i
= 0; i
< OB_FRAME_NUM_CONTEXTS
; ++i
) {
153 for (it
= bound_contexts
[i
]; it
!= NULL
; it
= it
->next
) {
156 MouseBinding
*b
= it
->data
;
157 for (j
= 0; j
< NUM_MOUSEACTION
; ++j
) {
159 for (it
= b
->actions
[j
]; it
; it
= it
->next
) {
160 action_free(it
->data
);
162 g_slist_free(b
->actions
[j
]);
166 g_slist_free(bound_contexts
[i
]);
170 static void fire_button(MouseAction a
, ObFrameContext context
,
171 ObClient
*c
, guint state
,
172 guint button
, int x
, int y
)
177 for (it
= bound_contexts
[context
]; it
!= NULL
; it
= it
->next
) {
179 if (b
->state
== state
&& b
->button
== button
)
182 /* if not bound, then nothing to do! */
183 if (it
== NULL
) return;
185 for (it
= b
->actions
[a
]; it
; it
= it
->next
) {
186 Action
*act
= it
->data
;
187 if (act
->func
!= NULL
) {
190 g_assert(act
->func
!= action_moveresize
);
192 if (act
->func
== action_showmenu
) {
193 act
->data
.showmenu
.x
= x
;
194 act
->data
.showmenu
.y
= y
;
197 act
->func(&act
->data
);
202 static void fire_motion(MouseAction a
, ObFrameContext context
, ObClient
*c
,
203 guint state
, guint button
, int x_root
, int y_root
,
209 for (it
= bound_contexts
[context
]; it
!= NULL
; it
= it
->next
) {
211 if (b
->state
== state
&& b
->button
== button
)
214 /* if not bound, then nothing to do! */
215 if (it
== NULL
) return;
217 for (it
= b
->actions
[a
]; it
; it
= it
->next
) {
218 Action
*act
= it
->data
;
219 if (act
->func
!= NULL
) {
222 if (act
->func
== action_moveresize
) {
223 act
->data
.moveresize
.x
= x_root
;
224 act
->data
.moveresize
.y
= y_root
;
225 act
->data
.moveresize
.button
= button
;
226 if (!(act
->data
.moveresize
.corner
==
227 prop_atoms
.net_wm_moveresize_move
||
228 act
->data
.moveresize
.corner
==
229 prop_atoms
.net_wm_moveresize_move_keyboard
||
230 act
->data
.moveresize
.corner
==
231 prop_atoms
.net_wm_moveresize_size_keyboard
))
232 act
->data
.moveresize
.corner
= corner
;
234 g_assert_not_reached();
236 act
->func(&act
->data
);
241 static guint32
pick_corner(int x
, int y
, int cx
, int cy
, int cw
, int ch
)
243 if (x
- cx
< cw
/ 2) {
245 return prop_atoms
.net_wm_moveresize_size_topleft
;
247 return prop_atoms
.net_wm_moveresize_size_bottomleft
;
250 return prop_atoms
.net_wm_moveresize_size_topright
;
252 return prop_atoms
.net_wm_moveresize_size_bottomright
;
256 static void event(ObEvent
*e
, void *foo
)
259 static guint button
= 0, state
= 0, lbutton
= 0;
261 gboolean click
= FALSE
;
262 gboolean dclick
= FALSE
;
263 ObFrameContext context
;
266 case Event_Client_Mapped
:
267 grab_for_client(e
->data
.c
.client
, TRUE
);
270 case Event_Client_Destroy
:
271 grab_for_client(e
->data
.c
.client
, FALSE
);
274 case Event_X_ButtonPress
:
275 context
= frame_context(e
->data
.x
.client
,
276 e
->data
.x
.e
->xbutton
.window
);
278 px
= e
->data
.x
.e
->xbutton
.x_root
;
279 py
= e
->data
.x
.e
->xbutton
.y_root
;
280 button
= e
->data
.x
.e
->xbutton
.button
;
281 state
= e
->data
.x
.e
->xbutton
.state
;
283 fire_button(MouseAction_Press
, context
,
284 e
->data
.x
.client
, e
->data
.x
.e
->xbutton
.state
,
285 e
->data
.x
.e
->xbutton
.button
,
286 e
->data
.x
.e
->xbutton
.x_root
, e
->data
.x
.e
->xbutton
.y_root
);
288 if (context
== OB_FRAME_CONTEXT_CLIENT
) {
289 /* Replay the event, so it goes to the client*/
290 XAllowEvents(ob_display
, ReplayPointer
, event_lasttime
);
291 /* Fall through to the release case! */
295 case Event_X_ButtonRelease
:
296 context
= frame_context(e
->data
.x
.client
,
297 e
->data
.x
.e
->xbutton
.window
);
298 if (e
->data
.x
.e
->xbutton
.button
== button
) {
299 /* clicks are only valid if its released over the window */
302 guint ujunk
, b
, w
, h
;
303 XGetGeometry(ob_display
, e
->data
.x
.e
->xbutton
.window
,
304 &wjunk
, &junk1
, &junk2
, &w
, &h
, &b
, &ujunk
);
305 if (e
->data
.x
.e
->xbutton
.x
>= (signed)-b
&&
306 e
->data
.x
.e
->xbutton
.y
>= (signed)-b
&&
307 e
->data
.x
.e
->xbutton
.x
< (signed)(w
+b
) &&
308 e
->data
.x
.e
->xbutton
.y
< (signed)(h
+b
)) {
310 /* double clicks happen if there were 2 in a row! */
311 if (lbutton
== button
&&
312 e
->data
.x
.e
->xbutton
.time
- dclicktime
<= ltime
) {
322 ltime
= e
->data
.x
.e
->xbutton
.time
;
324 fire_button(MouseAction_Release
, context
,
325 e
->data
.x
.client
, e
->data
.x
.e
->xbutton
.state
,
326 e
->data
.x
.e
->xbutton
.button
,
327 e
->data
.x
.e
->xbutton
.x_root
, e
->data
.x
.e
->xbutton
.y_root
);
329 fire_button(MouseAction_Click
, context
,
330 e
->data
.x
.client
, e
->data
.x
.e
->xbutton
.state
,
331 e
->data
.x
.e
->xbutton
.button
,
332 e
->data
.x
.e
->xbutton
.x_root
,
333 e
->data
.x
.e
->xbutton
.y_root
);
335 fire_button(MouseAction_DClick
, context
,
336 e
->data
.x
.client
, e
->data
.x
.e
->xbutton
.state
,
337 e
->data
.x
.e
->xbutton
.button
,
338 e
->data
.x
.e
->xbutton
.x_root
,
339 e
->data
.x
.e
->xbutton
.y_root
);
342 case Event_X_MotionNotify
:
344 if (ABS(e
->data
.x
.e
->xmotion
.x_root
- px
) >= threshold
||
345 ABS(e
->data
.x
.e
->xmotion
.y_root
- py
) >= threshold
) {
348 context
= frame_context(e
->data
.x
.client
,
349 e
->data
.x
.e
->xmotion
.window
);
351 /* You can't drag on buttons */
352 if (context
== OB_FRAME_CONTEXT_MAXIMIZE
||
353 context
== OB_FRAME_CONTEXT_ALLDESKTOPS
||
354 context
== OB_FRAME_CONTEXT_SHADE
||
355 context
== OB_FRAME_CONTEXT_ICONIFY
||
356 context
== OB_FRAME_CONTEXT_ICON
||
357 context
== OB_FRAME_CONTEXT_CLOSE
)
360 if (!e
->data
.x
.client
)
361 corner
= prop_atoms
.net_wm_moveresize_size_bottomright
;
364 pick_corner(e
->data
.x
.e
->xmotion
.x_root
,
365 e
->data
.x
.e
->xmotion
.y_root
,
366 e
->data
.x
.client
->frame
->area
.x
,
367 e
->data
.x
.client
->frame
->area
.y
,
368 /* use the client size because the frame
369 can be differently sized (shaded
370 windows) and we want this based on the
372 e
->data
.x
.client
->area
.width
+
373 e
->data
.x
.client
->frame
->size
.left
+
374 e
->data
.x
.client
->frame
->size
.right
,
375 e
->data
.x
.client
->area
.height
+
376 e
->data
.x
.client
->frame
->size
.top
+
377 e
->data
.x
.client
->frame
->size
.bottom
);
378 fire_motion(MouseAction_Motion
, context
,
379 e
->data
.x
.client
, state
, button
,
380 e
->data
.x
.e
->xmotion
.x_root
,
381 e
->data
.x
.e
->xmotion
.y_root
, corner
);
389 g_assert_not_reached();
393 gboolean
mbind(char *buttonstr
, char *contextstr
, MouseAction mact
,
397 ObFrameContext context
;
401 if (!translate_button(buttonstr
, &state
, &button
)) {
402 g_warning("invalid button '%s'", buttonstr
);
406 contextstr
= g_ascii_strdown(contextstr
, -1);
407 context
= frame_context_from_string(contextstr
);
409 g_warning("invalid context '%s'", contextstr
);
415 for (it
= bound_contexts
[context
]; it
!= NULL
; it
= it
->next
){
417 if (b
->state
== state
&& b
->button
== button
) {
418 b
->actions
[mact
] = g_slist_append(b
->actions
[mact
], action
);
423 grab_all_clients(FALSE
);
425 /* add the binding */
426 b
= g_new0(MouseBinding
, 1);
429 b
->actions
[mact
] = g_slist_append(NULL
, action
);
430 bound_contexts
[context
] = g_slist_append(bound_contexts
[context
], b
);
432 grab_all_clients(TRUE
);
437 void plugin_startup()
439 dispatch_register(Event_Client_Mapped
| Event_Client_Destroy
|
440 Event_X_ButtonPress
| Event_X_ButtonRelease
|
441 Event_X_MotionNotify
, (EventHandler
)event
, NULL
);
444 void plugin_shutdown()
446 dispatch_register(0, (EventHandler
)event
, NULL
);
448 grab_all_clients(FALSE
);