Xinqi Bao's Git
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * See LICENSE file for license details.
7 #include <X11/keysym.h>
15 void (*func
)(Arg
*arg
);
21 #define CLEANMASK(mask) (mask & ~(NUMLOCKMASK | LockMask))
26 int x1
, y1
, ocx
, ocy
, di
;
33 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
34 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
36 XQueryPointer(dpy
, root
, &dummy
, &dummy
, &x1
, &y1
, &di
, &di
, &dui
);
38 XMaskEvent(dpy
, MOUSEMASK
| ExposureMask
, &ev
);
46 c
->x
= ocx
+ (ev
.xmotion
.x
- x1
);
47 c
->y
= ocy
+ (ev
.xmotion
.y
- y1
);
48 resize(c
, False
, TopLeft
);
51 XUngrabPointer(dpy
, CurrentTime
);
58 resizemouse(Client
*c
)
66 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
67 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
69 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
, c
->h
);
71 XMaskEvent(dpy
, MOUSEMASK
| ExposureMask
, &ev
);
79 c
->w
= abs(ocx
- ev
.xmotion
.x
);
80 c
->h
= abs(ocy
- ev
.xmotion
.y
);
81 c
->x
= (ocx
<= ev
.xmotion
.x
) ? ocx
: ocx
- c
->w
;
82 c
->y
= (ocy
<= ev
.xmotion
.y
) ? ocy
: ocy
- c
->h
;
83 if(ocx
<= ev
.xmotion
.x
)
84 sticky
= (ocy
<= ev
.xmotion
.y
) ? TopLeft
: BotLeft
;
86 sticky
= (ocy
<= ev
.xmotion
.y
) ? TopRight
: BotRight
;
87 resize(c
, True
, sticky
);
90 XUngrabPointer(dpy
, CurrentTime
);
97 buttonpress(XEvent
*e
)
102 XButtonPressedEvent
*ev
= &e
->xbutton
;
104 if(barwin
== ev
->window
) {
108 for(a
.i
= 0; a
.i
< ntags
; a
.i
++) {
109 x
+= textw(tags
[a
.i
]);
124 else if((c
= getclient(ev
->window
))) {
131 if(!c
->ismax
&& (arrange
== dofloat
|| c
->isfloat
))
135 if(!c
->ismax
&& arrange
!= dofloat
&& !c
->isfloat
)
139 if(!c
->ismax
&& (arrange
== dofloat
|| c
->isfloat
))
147 configurerequest(XEvent
*e
)
150 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
153 unsigned long newmask
;
155 if((c
= getclient(ev
->window
))) {
157 if(ev
->value_mask
& CWX
)
159 if(ev
->value_mask
& CWY
)
161 if(ev
->value_mask
& CWWidth
)
163 if(ev
->value_mask
& CWHeight
)
165 if(ev
->value_mask
& CWBorderWidth
)
166 c
->border
= ev
->border_width
;
172 newmask
= ev
->value_mask
& (~(CWSibling
| CWStackMode
| CWBorderWidth
));
174 XConfigureWindow(dpy
, c
->win
, newmask
, &wc
);
176 synev
.type
= ConfigureNotify
;
177 synev
.xconfigure
.display
= dpy
;
178 synev
.xconfigure
.event
= c
->win
;
179 synev
.xconfigure
.window
= c
->win
;
180 synev
.xconfigure
.x
= c
->x
;
181 synev
.xconfigure
.y
= c
->y
;
182 synev
.xconfigure
.width
= c
->w
;
183 synev
.xconfigure
.height
= c
->h
;
184 synev
.xconfigure
.border_width
= c
->border
;
185 synev
.xconfigure
.above
= None
;
186 /* Send synthetic ConfigureNotify */
187 XSendEvent(dpy
, c
->win
, True
, NoEventMask
, &synev
);
191 resize(c
, False
, TopLeft
);
198 wc
.width
= ev
->width
;
199 wc
.height
= ev
->height
;
200 wc
.border_width
= ev
->border_width
;
201 wc
.sibling
= ev
->above
;
202 wc
.stack_mode
= ev
->detail
;
203 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
209 destroynotify(XEvent
*e
)
212 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
214 if((c
= getclient(ev
->window
)))
219 enternotify(XEvent
*e
)
222 XCrossingEvent
*ev
= &e
->xcrossing
;
224 if(ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
)
227 if((c
= getclient(ev
->window
)) || (c
= getctitle(ev
->window
)))
229 else if(ev
->window
== root
) {
231 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
240 XExposeEvent
*ev
= &e
->xexpose
;
243 if(barwin
== ev
->window
)
245 else if((c
= getctitle(ev
->window
)))
253 static unsigned int len
= sizeof(key
) / sizeof(key
[0]);
256 XKeyEvent
*ev
= &e
->xkey
;
258 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
259 for(i
= 0; i
< len
; i
++)
260 if(keysym
== key
[i
].keysym
&&
261 CLEANMASK(key
[i
].mod
) == CLEANMASK(ev
->state
)) {
263 key
[i
].func(&key
[i
].arg
);
269 leavenotify(XEvent
*e
)
271 XCrossingEvent
*ev
= &e
->xcrossing
;
273 if((ev
->window
== root
) && !ev
->same_screen
) {
280 maprequest(XEvent
*e
)
282 static XWindowAttributes wa
;
283 XMapRequestEvent
*ev
= &e
->xmaprequest
;
285 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
288 if(wa
.override_redirect
) {
289 XSelectInput(dpy
, ev
->window
,
290 (StructureNotifyMask
| PropertyChangeMask
));
294 if(!getclient(ev
->window
))
295 manage(ev
->window
, &wa
);
299 propertynotify(XEvent
*e
)
303 XPropertyEvent
*ev
= &e
->xproperty
;
305 if(ev
->state
== PropertyDelete
)
308 if((c
= getclient(ev
->window
))) {
309 if(ev
->atom
== wmatom
[WMProtocols
]) {
310 c
->proto
= getproto(c
->win
);
315 case XA_WM_TRANSIENT_FOR
:
316 XGetTransientForHint(dpy
, c
->win
, &trans
);
317 if(!c
->isfloat
&& (c
->isfloat
= (trans
!= 0)))
320 case XA_WM_NORMAL_HINTS
:
324 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
332 unmapnotify(XEvent
*e
)
335 XUnmapEvent
*ev
= &e
->xunmap
;
337 if((c
= getclient(ev
->window
)))
343 void (*handler
[LASTEvent
]) (XEvent
*) = {
344 [ButtonPress
] = buttonpress
,
345 [ConfigureRequest
] = configurerequest
,
346 [DestroyNotify
] = destroynotify
,
347 [EnterNotify
] = enternotify
,
348 [LeaveNotify
] = leavenotify
,
350 [KeyPress
] = keypress
,
351 [MapRequest
] = maprequest
,
352 [PropertyNotify
] = propertynotify
,
353 [UnmapNotify
] = unmapnotify
359 static unsigned int len
= sizeof(key
) / sizeof(key
[0]);
363 for(i
= 0; i
< len
; i
++) {
364 code
= XKeysymToKeycode(dpy
, key
[i
].keysym
);
365 XGrabKey(dpy
, code
, key
[i
].mod
, root
, True
,
366 GrabModeAsync
, GrabModeAsync
);
367 XGrabKey(dpy
, code
, key
[i
].mod
| LockMask
, root
, True
,
368 GrabModeAsync
, GrabModeAsync
);
369 XGrabKey(dpy
, code
, key
[i
].mod
| NUMLOCKMASK
, root
, True
,
370 GrabModeAsync
, GrabModeAsync
);
371 XGrabKey(dpy
, code
, key
[i
].mod
| NUMLOCKMASK
| LockMask
, root
, True
,
372 GrabModeAsync
, GrabModeAsync
);