tiny.sys.x11.protocol.event_mask
Defined in x11.protocol.
API (11)
Values and defaults
Public values and defaults.
button_pressbutton_releaseenter_windowexposurefocus_changekey_presskey_releaseleave_windowpointer_motionproperty_changestructure_notify
Source
Source: lib/sys/src/x11/protocol.zig:53
zig
pub const event_mask = struct { pub const key_press: u32 = 0x0000_0001; pub const key_release: u32 = 0x0000_0002; pub const button_press: u32 = 0x0000_0004; pub const button_release: u32 = 0x0000_0008; pub const enter_window: u32 = 0x0000_0010; pub const leave_window: u32 = 0x0000_0020; pub const pointer_motion: u32 = 0x0000_0040; pub const exposure: u32 = 0x0000_8000; pub const structure_notify: u32 = 0x0002_0000; pub const focus_change: u32 = 0x0020_0000; pub const property_change: u32 = 0x0040_0000;};Audit
| Definitions | 12 |
|---|---|
| Public names | 12 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |