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 more