Skip to documentation
SLOP

tiny.sys.x11.protocol.event_mask

Reference tiny.sys x11 protocol event_mask

Defined in x11.protocol.

API (11)

Values and defaults

Public values and defaults.

No direct callersNo direct callsx11.protocolevent mask
Static calls · unresolved targets: unknown · external targets: unknown.

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

Definitions12
Public names12
Members0
Version26.7.0
Revisiondaab053ee433