Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/man/man3xcb/xcb_grab_key.3xcb
Real path: /usr/share/man/man3xcb/xcb_grab_key.3xcb
Zurück
'\" te .TH xcb_grab_key 3xcb "libxcb 1.15" "X Version 11" "XCB Requests" .ad l .SH NAME xcb_grab_key \- Grab keyboard key(s) .SH SYNOPSIS .hy 0 .B #include <xcb/xproto.h> .SS Request function .HP xcb_void_cookie_t \fBxcb_grab_key\fP(xcb_connection_t\ *\fIconn\fP, uint8_t\ \fIowner_events\fP, xcb_window_t\ \fIgrab_window\fP, uint16_t\ \fImodifiers\fP, xcb_keycode_t\ \fIkey\fP, uint8_t\ \fIpointer_mode\fP, uint8_t\ \fIkeyboard_mode\fP); .br .hy 1 .SH REQUEST ARGUMENTS .IP \fIconn\fP 1i The XCB connection to X11. .IP \fIowner_events\fP 1i If 1, the \fIgrab_window\fP will still get the key events. If 0, events are not reported to the \fIgrab_window\fP. .IP \fIgrab_window\fP 1i Specifies the window on which the key should be grabbed. .IP \fImodifiers\fP 1i The modifiers to grab. Using the special value \fIXCB_MOD_MASK_ANY\fP means grab the key with all possible modifier combinations. .IP \fIkey\fP 1i The keycode of the key to grab. The special value \fIXCB_GRAB_ANY\fP means grab any key. .IP \fIpointer_mode\fP 1i One of the following values: .RS 1i .IP \fIXCB_GRAB_MODE_SYNC\fP 1i The state of the keyboard appears to freeze: No further keyboard events are generated by the server until the grabbing client issues a releasing \fIAllowEvents\fP request or until the keyboard grab is released. .IP \fIXCB_GRAB_MODE_ASYNC\fP 1i Keyboard event processing continues normally. .RE .RS 1i .RE .IP \fIkeyboard_mode\fP 1i One of the following values: .RS 1i .IP \fIXCB_GRAB_MODE_SYNC\fP 1i The state of the keyboard appears to freeze: No further keyboard events are generated by the server until the grabbing client issues a releasing \fIAllowEvents\fP request or until the keyboard grab is released. .IP \fIXCB_GRAB_MODE_ASYNC\fP 1i Keyboard event processing continues normally. .RE .RS 1i .RE .SH DESCRIPTION Establishes a passive grab on the keyboard. In the future, the keyboard is actively grabbed (as for \fIGrabKeyboard\fP), 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. .SH RETURN VALUE Returns an \fIxcb_void_cookie_t\fP. Errors (if any) have to be handled in the event loop. If you want to handle errors directly with \fIxcb_request_check\fP instead, use \fIxcb_grab_key_checked\fP. See \fBxcb-requests(3xcb)\fP for details. .SH ERRORS .IP \fIxcb_access_error_t\fP 1i Another client has already issued a GrabKey with the same button/key combination on the same window. .IP \fIxcb_value_error_t\fP 1i The key is not \fIXCB_GRAB_ANY\fP and not in the range specified by \fImin_keycode\fP and \fImax_keycode\fP in the connection setup. .IP \fIxcb_window_error_t\fP 1i The specified \fIwindow\fP does not exist. .\" Oracle has added the ARC stability level to this manual page .SH ATTRIBUTES See .BR attributes (7) for descriptions of the following attributes: .sp .TS box; cbp-1 | cbp-1 l | l . ATTRIBUTE TYPE ATTRIBUTE VALUE = Availability x11/library/libxcb = Stability Volatile .TE .PP .SH SEE ALSO .BR xcb-requests (3xcb), .BR xcb_grab_keyboard (3xcb) .SH AUTHOR Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements. .SH NOTES .\" Oracle has added source availability information to this manual page Source code for open source software components in Oracle Solaris can be found at https://www.oracle.com/downloads/opensource/solaris-source-code-downloads.html. This software was built from source available at https://github.com/oracle/solaris-userland. The original community source was downloaded from ['https://www.x.org/releases/individual/xcb/libxcb-1.15.tar.xz', 'https://xcb.freedesktop.org//dist/xcb-proto-1.15.2.tar.xz']. Further information about this software can be found on the open source community website at http://xcb.freedesktop.org/.