Struct x11rb_protocol::protocol::xproto::GrabKeyRequest
source · [−]pub struct GrabKeyRequest {
pub owner_events: bool,
pub grab_window: Window,
pub modifiers: u16,
pub key: Keycode,
pub pointer_mode: GrabMode,
pub keyboard_mode: GrabMode,
}
Expand description
Grab keyboard key(s).
Establishes a passive grab on the keyboard. In the future, the keyboard is
actively grabbed (as for GrabKeyboard
), the last-keyboard-grab time is set to
the time at which the key was pressed (as transmitted in the KeyPress event),
and the KeyPress event is reported if all of the following conditions are true:
The keyboard is not grabbed and the specified key (which can itself be a modifier key) is logically pressed when the specified modifier keys are logically down, and no other modifier keys are logically down.
Either the grab_window is an ancestor of (or is) the focus window, or the grab_window is a descendant of the focus window and contains the pointer.
A passive grab on the same key combination does not exist on any ancestor of grab_window.
The interpretation of the remaining arguments is as for XGrabKeyboard. The active grab is terminated automatically when the logical state of the keyboard has the specified key released (independent of the logical state of the modifier keys), at which point a KeyRelease event is reported to the grabbing window.
Note that the logical state of a device (as seen by client applications) may lag the physical state if device event processing is frozen.
A modifiers argument of AnyModifier is equivalent to issuing the request for all possible modifier combinations (including the combination of no modifiers). It is not required that all modifiers specified have currently assigned KeyCodes. A keycode argument of AnyKey is equivalent to issuing the request for all possible KeyCodes. Otherwise, the specified keycode must be in the range specified by min_keycode and max_keycode in the connection setup, or a BadValue error results.
If some other client has issued a XGrabKey with the same key combination on the same window, a BadAccess error results. When using AnyModifier or AnyKey, the request fails completely, and a BadAccess error results (no grabs are established) if there is a conflicting grab for any combination.
Fields
owner_events
- If 1, thegrab_window
will still get the pointer events. If 0, events are not reported to thegrab_window
.grab_window
- Specifies the window on which the pointer should be grabbed.key
- The keycode of the key to grab.
The special value XCB_GRAB_ANY
means grab any key.
cursor
- Specifies the cursor that should be displayed orXCB_NONE
to not change the cursor.modifiers
- The modifiers to grab.
Using the special value XCB_MOD_MASK_ANY
means grab the pointer with all
possible modifier combinations.
pointer_mode
-keyboard_mode
-
Errors
Access
- Another client has already issued a GrabKey with the same button/key combination on the same window.Value
- TODO: reasons?Window
- The specifiedwindow
does not exist.
See
GrabKeyboard
: request
Fields
owner_events: bool
grab_window: Window
modifiers: u16
key: Keycode
pointer_mode: GrabMode
keyboard_mode: GrabMode
Implementations
sourceimpl GrabKeyRequest
impl GrabKeyRequest
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations
sourceimpl Clone for GrabKeyRequest
impl Clone for GrabKeyRequest
sourcefn clone(&self) -> GrabKeyRequest
fn clone(&self) -> GrabKeyRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GrabKeyRequest
impl Debug for GrabKeyRequest
sourceimpl Default for GrabKeyRequest
impl Default for GrabKeyRequest
sourcefn default() -> GrabKeyRequest
fn default() -> GrabKeyRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for GrabKeyRequest
impl Hash for GrabKeyRequest
sourceimpl Ord for GrabKeyRequest
impl Ord for GrabKeyRequest
sourceimpl PartialEq<GrabKeyRequest> for GrabKeyRequest
impl PartialEq<GrabKeyRequest> for GrabKeyRequest
sourcefn eq(&self, other: &GrabKeyRequest) -> bool
fn eq(&self, other: &GrabKeyRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GrabKeyRequest) -> bool
fn ne(&self, other: &GrabKeyRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<GrabKeyRequest> for GrabKeyRequest
impl PartialOrd<GrabKeyRequest> for GrabKeyRequest
sourcefn partial_cmp(&self, other: &GrabKeyRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GrabKeyRequest) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Request for GrabKeyRequest
impl Request for GrabKeyRequest
impl Copy for GrabKeyRequest
impl Eq for GrabKeyRequest
impl StructuralEq for GrabKeyRequest
impl StructuralPartialEq for GrabKeyRequest
impl VoidRequest for GrabKeyRequest
Auto Trait Implementations
impl RefUnwindSafe for GrabKeyRequest
impl Send for GrabKeyRequest
impl Sync for GrabKeyRequest
impl Unpin for GrabKeyRequest
impl UnwindSafe for GrabKeyRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more