Unix and Linux Discussions Tagged with shift |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
1,888 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,794 |
Shell Programming and Scripting |
|
|
|
4 |
4,816 |
Shell Programming and Scripting |
|
|
|
3 |
3,676 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,798 |
Homework & Coursework Questions |
|
|
|
2 |
8,142 |
Shell Programming and Scripting |
|
|
|
8 |
66,352 |
UNIX for Dummies Questions & Answers |
|
|
|
14 |
66,019 |
Solaris |
|
|
|
8 |
109,344 |
Shell Programming and Scripting |
|
|
|
10 |
29,364 |
Shell Programming and Scripting |
|
|
|
30 |
31,771 |
Shell Programming and Scripting |
|
|
|
10 |
9,279 |
UNIX for Dummies Questions & Answers |
|
|
|
13 |
126,396 |
Solaris |
|
|
|
23 |
12,965 |
Shell Programming and Scripting |
|
|
|
4 |
10,290 |
Shell Programming and Scripting |
|
|
|
4 |
5,944 |
Shell Programming and Scripting |
|
|
|
2 |
6,359 |
Shell Programming and Scripting |
|
|
|
10 |
10,513 |
Shell Programming and Scripting |
|
|
|
0 |
1,828 |
Complex Event Processing RSS News |
|
|
|
12 |
38,190 |
Shell Programming and Scripting |
|
|
|
9 |
7,027 |
Solaris |
|
|
|
2 |
7,035 |
Shell Programming and Scripting |
|
|
|
21 |
27,237 |
Shell Programming and Scripting |
|
|
|
5 |
3,557 |
Shell Programming and Scripting |
|
|
|
3 |
6,022 |
Shell Programming and Scripting |
|
|
|
1 |
4,431 |
Shell Programming and Scripting |
|
|
|
10 |
10,979 |
Shell Programming and Scripting |
|
|
|
4 |
3,548 |
Shell Programming and Scripting |
|
|
|
4 |
28,439 |
Shell Programming and Scripting |
|
|
|
38 |
47,366 |
Shell Programming and Scripting |
|
|
|
3 |
4,074 |
Shell Programming and Scripting |
|
|
|
4 |
16,691 |
Shell Programming and Scripting |
|
|
|
4 |
14,763 |
Shell Programming and Scripting |
|
|
|
9 |
7,171 |
Shell Programming and Scripting |
|
|
|
3 |
7,376 |
Shell Programming and Scripting |
|
|
|
4 |
7,651 |
Shell Programming and Scripting |
|
|
|
5 |
7,865 |
Shell Programming and Scripting |
|
|
|
5 |
6,359 |
Shell Programming and Scripting |
|
|
|
5 |
3,220 |
Shell Programming and Scripting |
|
|
|
4 |
22,309 |
UNIX for Dummies Questions & Answers |
XkbKeySymEntry(3) XKB FUNCTIONS XkbKeySymEntry(3)
NAME
XkbKeySymEntry - Returns the keysym corresponding to shift level shift and group grp from the two-dimensional array of keysyms for the key
corresponding to keycode
SYNOPSIS
KeySym XkbKeySymEntry macro ( xkb, keycode, shift, grp )
XkbDescPtr xkb;
KeyCode keycode;
int shift;
int grp;
ARGUMENTS
- xkb Xkb description of interest
- keycode
keycode of interest
- shift
shift level of interest
- grp group of interest
DESCRIPTION
The key width and number of groups associated with a key are used to form a small two-dimensional array of KeySyms for a key. This array
may be different sizes for different keys. The array for a single key is stored as a linear list, in row-major order. The arrays for all of
the keys are stored in the syms field of the client map. There is one row for each group associated with a key and one column for each
level. The index corresponding to a given group and shift level is computed as:
idx = group_index * key_width + shift_level
The offset field of the key_sym_map entry for a key is used to access the beginning of the array.
XkbKeySymEntry returns the keysym corresponding to shift level shift and group grp from the two-dimensional array of keysyms for the key
corresponding to keycode.
X Version 11 libX11 1.2.1 XkbKeySymEntry(3)