Event masks
|
Description
|
KeyPressMask
|
Keyboard key down events
|
KeyReleaseMask
|
Keyboard key up events
|
ButtonPressMask
|
Mouse button down events
|
ButtonReleaseMask
|
Mouse button up events
|
PointerMotionMask
|
All pointer motion events
|
Button1MotionMask
|
Pointer motion events while button 1 is down
|
Button2MotionMask
|
Pointer motion events while button 2 is down
|
Button3MotionMask
|
Pointer motion events while button 3 is down
|
ButtonMotionMask
|
Pointer motion events while any button is down
|
ButtonMenuMask
|
Button menu request events
|
Class hierarchy
|
Responsibility.
|
CwEvent
|
Defines common behavior for event data in event handlers.
|
CwExposeEvent
|
Provides event data for expose events in expose callbacks (see Note below).
|
CwInputEvent
|
Defines common behavior for button, key, and motion event objects.
|
CwButtonEvent
|
Provides event data for mouse button-press/release events.
|
CwKeyEvent
|
Provides event data for key-press/release events.
|
CwMotionEvent
|
Provides event data for mouse motion events.
|
type
|
The type of event that occurred. This has one of the following values: ButtonPress, ButtonRelease, Expose, KeyPress, KeyRelease, and MotionNotify.
|
window
|
The CgWindow associated with the widget for which the event was generated.
|
display
|
The CgDisplay associated with the event.
|
count
|
The number of expose events which remain for the affected CgWindow. A simple application might want to ignore all expose events with a nonzero count, and perform a full redisplay if the count is zero.
|
rectangle
|
A rectangle describing the damaged area, in the coordinate system of the affected CgWindow.
|
x
|
The x-coordinate of the origin of the damaged rectangle.
|
y
|
The y-coordinate of the origin of the damaged rectangle.
|
height
|
The height, in pixels, of the damaged rectangle.
|
width
|
The width, in pixels, of the damaged rectangle.
|
state
|
A bit mask representing the logical state of modifier keys and pointer buttons just prior to the event. Possible bit masks include: ControlMask, ShiftMask, LockMask, Mod1Mask to Mod5Mask, and Button1Mask to Button3Mask.
|
x
|
The x-coordinate of the pointer, relative to the widget in which the event occurred.
|
y
|
The y-coordinate of the pointer, relative to the widget in which the event occurred.
|
point
|
x @ y
|
xRoot
|
A coordinate of the pointer, relative to the screen.
|
yRoot
|
A coordinate of the pointer, relative to the screen.
|
pointRoot
|
xRoot @ yRoot
|
time
|
The time, in milliseconds, at which the event occurred.
|
button
|
The number of the button that was pressed or released (1, 2 or 3).
|
keysym
|
A constant describing the keyboard key that was pressed or released. These constants are found in the e CwConstants pool dictionary, and are prefixed with 'XK.'
|
character
|
The Character describing the keyboard key that was pressed or released, or nil if it does not represent a valid character.
|