Struct GrabKeyboardRequest
pub struct GrabKeyboardRequest {
pub owner_events: bool,
pub grab_window: u32,
pub time: u32,
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: u32
§time: u32
§pointer_mode: GrabMode
§keyboard_mode: GrabMode
Implementations§
Trait Implementations§
§impl Clone for GrabKeyboardRequest
impl Clone for GrabKeyboardRequest
§fn clone(&self) -> GrabKeyboardRequest
fn clone(&self) -> GrabKeyboardRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for GrabKeyboardRequest
impl Debug for GrabKeyboardRequest
§impl Default for GrabKeyboardRequest
impl Default for GrabKeyboardRequest
§fn default() -> GrabKeyboardRequest
fn default() -> GrabKeyboardRequest
Returns the “default value” for a type. Read more
§impl ReplyRequest for GrabKeyboardRequest
impl ReplyRequest for GrabKeyboardRequest
§type Reply = GrabKeyboardReply
type Reply = GrabKeyboardReply
The kind of reply that this request generates.
§impl Request for GrabKeyboardRequest
impl Request for GrabKeyboardRequest
impl Copy for GrabKeyboardRequest
Auto Trait Implementations§
impl Freeze for GrabKeyboardRequest
impl RefUnwindSafe for GrabKeyboardRequest
impl Send for GrabKeyboardRequest
impl Sync for GrabKeyboardRequest
impl Unpin for GrabKeyboardRequest
impl UnwindSafe for GrabKeyboardRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)