Lines Matching refs:XConstants

59     private static final int ROOT_EVENT_MASK = (int)XConstants.ButtonMotionMask |
60 (int)XConstants.KeyPressMask | (int)XConstants.KeyReleaseMask;
62 private static final int GRAB_EVENT_MASK = (int)XConstants.ButtonPressMask |
63 (int)XConstants.ButtonMotionMask | (int)XConstants.ButtonReleaseMask;
200 XConstants.GrabModeAsync, in startDrag()
201 XConstants.GrabModeAsync, in startDrag()
202 XConstants.None, xcursor, timeStamp); in startDrag()
204 if (status != XConstants.GrabSuccess) { in startDrag()
212 XConstants.GrabModeAsync, in startDrag()
213 XConstants.GrabModeAsync, in startDrag()
216 if (status != XConstants.GrabSuccess) { in startDrag()
280 XConstants.CurrentTime); in setNativeCursor()
291 case XConstants.GrabNotViewable: msgCause = "not viewable"; break; in throwGrabFailureException()
292 case XConstants.AlreadyGrabbed: msgCause = "already grabbed"; break; in throwGrabFailureException()
293 case XConstants.GrabInvalidTime: msgCause = "invalid time"; break; in throwGrabFailureException()
294 case XConstants.GrabFrozen: msgCause = "grab frozen"; break; in throwGrabFailureException()
541 if (ev.get_type() != (int)XConstants.ClientMessage) { in processProxyModeEvent()
583 case XConstants.ClientMessage: { in doProcessEvent()
587 case XConstants.DestroyNotify: { in doProcessEvent()
594 cleanup(XConstants.CurrentTime); in doProcessEvent()
608 case XConstants.KeyRelease: in doProcessEvent()
609 case XConstants.KeyPress: { in doProcessEvent()
615 if (ev.get_type() == (int)XConstants.KeyRelease) { in doProcessEvent()
635 xmotion.set_type(XConstants.MotionNotify); in doProcessEvent()
662 case XConstants.ButtonPress: in doProcessEvent()
664 case XConstants.MotionNotify: in doProcessEvent()
667 case XConstants.ButtonRelease: { in doProcessEvent()
685 xmotion.set_type(XConstants.MotionNotify); in doProcessEvent()
707 if (xbutton.get_button() == XConstants.buttons[0] in doProcessEvent()
708 || xbutton.get_button() == XConstants.buttons[1]) { in doProcessEvent()
802 cleanup(XConstants.CurrentTime); in handleDragFinished()