xcb::x

Type Alias KeyReleaseEvent

source
pub type KeyReleaseEvent = KeyPressEvent;
Expand description

a key was pressed/released

Aliased Type§

struct KeyReleaseEvent { /* private fields */ }

Implementations

source§

impl KeyPressEvent

source

pub fn new( detail: Keycode, time: Timestamp, root: Window, event: Window, child: Window, root_x: i16, root_y: i16, event_x: i16, event_y: i16, state: KeyButMask, same_screen: bool, ) -> KeyPressEvent

source

pub fn response_type(&self) -> u8

source

pub fn detail(&self) -> Keycode

The keycode (a number representing a physical key on the keyboard) of the key which was pressed.

source

pub fn sequence(&self) -> u16

source

pub fn time(&self) -> Timestamp

Time when the event was generated (in milliseconds).

source

pub fn root(&self) -> Window

The root window of child.

source

pub fn event(&self) -> Window

source

pub fn child(&self) -> Window

source

pub fn root_x(&self) -> i16

The X coordinate of the pointer relative to the root window at the time of the event.

source

pub fn root_y(&self) -> i16

The Y coordinate of the pointer relative to the root window at the time of the event.

source

pub fn event_x(&self) -> i16

If same_screen is true, this is the X coordinate relative to the event window’s origin. Otherwise, event_x will be set to zero.

source

pub fn event_y(&self) -> i16

If same_screen is true, this is the Y coordinate relative to the event window’s origin. Otherwise, event_y will be set to zero.

source

pub fn state(&self) -> KeyButMask

The logical state of the pointer buttons and modifier keys just prior to the event.

source

pub fn same_screen(&self) -> bool

Whether the event window is on the same screen as the root window.

Trait Implementations

source§

impl BaseEvent for KeyPressEvent

source§

const EXTENSION: Option<Extension> = None

The extension associated to this event, or None for the main protocol
source§

const NUMBER: u32 = 2u32

The number associated to this event
source§

fn is_from_send_event(&self) -> bool

Check whether this event was emitted by the SendEvent request See [crate::x::SendEvent].
source§

impl Debug for KeyPressEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for KeyPressEvent

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Raw<xcb_generic_event_t> for KeyPressEvent

source§

unsafe fn from_raw(raw: *mut xcb_generic_event_t) -> Self

Build Self from a raw pointer Read more
source§

fn as_raw(&self) -> *mut xcb_generic_event_t

Obtain the raw pointer representation
source§

fn into_raw(self) -> *mut T

Convert self into a raw pointer Read more
source§

impl Send for KeyPressEvent

source§

impl Sync for KeyPressEvent