Struct x11rb_protocol::protocol::xproto::GrabKeyboardRequest
source · pub struct GrabKeyboardRequest {
pub owner_events: bool,
pub grab_window: Window,
pub time: Timestamp,
pub pointer_mode: GrabMode,
pub keyboard_mode: GrabMode,
}
Expand description
Grab the keyboard.
Actively grabs control of the keyboard and generates FocusIn and FocusOut events. Further key events are reported only to the grabbing client.
Any active keyboard grab by this client is overridden. If the keyboard is
actively grabbed by some other client, AlreadyGrabbed
is returned. If
grab_window
is not viewable, GrabNotViewable
is returned. If the keyboard
is frozen by an active grab of another client, GrabFrozen
is returned. If the
specified time
is earlier than the last-keyboard-grab time or later than the
current X server time, GrabInvalidTime
is returned. Otherwise, the
last-keyboard-grab time is set to the specified time.
§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.time
- Timestamp to avoid race conditions when running X over the network.
The special value XCB_CURRENT_TIME
will be replaced with the current server
time.
pointer_mode
-keyboard_mode
-
§Errors
Value
- TODO: reasons?Window
- The specifiedwindow
does not exist.
§See
GrabPointer
: request
§Example
/*
* Grabs the keyboard actively
*
*/
void my_example(xcb_connection_t *conn, xcb_screen_t *screen) {
xcb_grab_keyboard_cookie_t cookie;
xcb_grab_keyboard_reply_t *reply;
cookie = xcb_grab_keyboard(
conn,
true, /* report events */
screen->root, /* grab the root window */
XCB_CURRENT_TIME,
XCB_GRAB_MODE_ASYNC, /* process events as normal, do not require sync */
XCB_GRAB_MODE_ASYNC
);
if ((reply = xcb_grab_keyboard_reply(conn, cookie, NULL))) {
if (reply->status == XCB_GRAB_STATUS_SUCCESS)
printf("successfully grabbed the keyboard\\n");
free(reply);
}
}
Fields§
§owner_events: bool
§grab_window: Window
§time: Timestamp
§pointer_mode: GrabMode
§keyboard_mode: GrabMode
Implementations§
source§impl GrabKeyboardRequest
impl GrabKeyboardRequest
sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
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§
source§impl Clone for GrabKeyboardRequest
impl Clone for GrabKeyboardRequest
source§fn clone(&self) -> GrabKeyboardRequest
fn clone(&self) -> GrabKeyboardRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GrabKeyboardRequest
impl Debug for GrabKeyboardRequest
source§impl Default for GrabKeyboardRequest
impl Default for GrabKeyboardRequest
source§fn default() -> GrabKeyboardRequest
fn default() -> GrabKeyboardRequest
source§impl<'de> Deserialize<'de> for GrabKeyboardRequest
impl<'de> Deserialize<'de> for GrabKeyboardRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Hash for GrabKeyboardRequest
impl Hash for GrabKeyboardRequest
source§impl Ord for GrabKeyboardRequest
impl Ord for GrabKeyboardRequest
source§fn cmp(&self, other: &GrabKeyboardRequest) -> Ordering
fn cmp(&self, other: &GrabKeyboardRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for GrabKeyboardRequest
impl PartialEq for GrabKeyboardRequest
source§fn eq(&self, other: &GrabKeyboardRequest) -> bool
fn eq(&self, other: &GrabKeyboardRequest) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for GrabKeyboardRequest
impl PartialOrd for GrabKeyboardRequest
source§fn partial_cmp(&self, other: &GrabKeyboardRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GrabKeyboardRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more