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
sourceimpl GrabKeyboardRequest
impl GrabKeyboardRequest
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 GrabKeyboardRequest
impl Clone for GrabKeyboardRequest
sourcefn clone(&self) -> GrabKeyboardRequest
fn clone(&self) -> GrabKeyboardRequest
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 GrabKeyboardRequest
impl Debug for GrabKeyboardRequest
sourceimpl Default for GrabKeyboardRequest
impl Default for GrabKeyboardRequest
sourcefn default() -> GrabKeyboardRequest
fn default() -> GrabKeyboardRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for GrabKeyboardRequest
impl Hash for GrabKeyboardRequest
sourceimpl Ord for GrabKeyboardRequest
impl Ord for GrabKeyboardRequest
sourceimpl PartialEq<GrabKeyboardRequest> for GrabKeyboardRequest
impl PartialEq<GrabKeyboardRequest> for GrabKeyboardRequest
sourcefn eq(&self, other: &GrabKeyboardRequest) -> bool
fn eq(&self, other: &GrabKeyboardRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GrabKeyboardRequest) -> bool
fn ne(&self, other: &GrabKeyboardRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<GrabKeyboardRequest> for GrabKeyboardRequest
impl PartialOrd<GrabKeyboardRequest> for GrabKeyboardRequest
sourcefn partial_cmp(&self, other: &GrabKeyboardRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GrabKeyboardRequest) -> 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 ReplyRequest for GrabKeyboardRequest
impl ReplyRequest for GrabKeyboardRequest
type Reply = GrabKeyboardReply
type Reply = GrabKeyboardReply
The kind of reply that this request generates.
sourceimpl Request for GrabKeyboardRequest
impl Request for GrabKeyboardRequest
impl Copy for GrabKeyboardRequest
impl Eq for GrabKeyboardRequest
impl StructuralEq for GrabKeyboardRequest
impl StructuralPartialEq for GrabKeyboardRequest
Auto Trait Implementations
impl RefUnwindSafe for GrabKeyboardRequest
impl Send for GrabKeyboardRequest
impl Sync for GrabKeyboardRequest
impl Unpin for GrabKeyboardRequest
impl UnwindSafe for GrabKeyboardRequest
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