1XkbKeyNumGroups(3) XKB FUNCTIONS XkbKeyNumGroups(3)
2
3
4
6 XkbKeyNumGroups - Returns the number of groups of symbols bound to the
7 key corresponding to keycode
8
10 int XkbKeyNumGroups (XkbDescPtr xkb, KeyCode keycode);
11
13 - xkb Xkb description of interest
14
15 - keycode
16 keycode of interest
17
19 The group_info field of an XkbSymMapRec is an encoded value containing
20 the number of groups of symbols bound to the key as well as the speci‐
21 fication of the treatment of out-of-range groups. It is legal for a key
22 to have zero groups, in which case it also has zero symbols and all
23 events from that key yield NoSymbol. To obtain the number of groups of
24 symbols bound to the key, use XkbKeyNumGroups. To change the number of
25 groups bound to a key, use XkbChangeTypesOfKey. To obtain a mask that
26 determines the treatment of out-of-range groups, use XkbKeyGroupInfo
27 and XkbOutOfRangeGroupInfo.
28
29 The keyboard controls contain a groups_wrap field specifying the han‐
30 dling of illegal groups on a global basis. That is, when the user per‐
31 forms an action causing the effective group to go out of the legal
32 range, the groups_wrap field specifies how to normalize the effective
33 keyboard group to a group that is legal for the keyboard as a whole,
34 but there is no guarantee that the normalized group will be within the
35 range of legal groups for any individual key. The per-key group_info
36 field specifies how a key treats a legal effective group if the key
37 does not have a type specified for the group of concern. For example,
38 the Enter key usually has just one group defined. If the user performs
39 an action causing the global keyboard group to change to Group2, the
40 group_info field for the Enter key describes how to handle this situa‐
41 tion.
42
43 Out-of-range groups for individual keys are mapped to a legal group us‐
44 ing the same options as are used for the overall keyboard group. The
45 particular type of mapping used is controlled by the bits set in the
46 group_info flag, as shown in Table 1.
47
48 Table 1 group_info Range Normalization
49 ──────────────────────────────────────────────
50 Bits set in group_info Normalization method
51 ──────────────────────────────────────────────
52 XkbRedirectIntoRange XkbRedirectIntoRange
53 XkbClampIntoRange XkbClampIntoRange
54 none of the above XkbWrapIntoRange
55
56 The Xkb extension is composed of two parts: a server extension, and a
57 client-side X library extension. This chapter discusses functions used
58 to modify controls effecting the behavior of the server portion of the
59 Xkb extension. X Library Controls discusses functions used to modify
60 controls that affect only the behavior of the client portion of the ex‐
61 tension; those controls are known as Library Controls.
62
63 Xkb contains control features that affect the entire keyboard, known as
64 global keyboard controls. Some of the controls may be selectively en‐
65 abled and disabled; these controls are known as the Boolean Controls.
66 Boolean Controls can be turned on or off under program control and can
67 also be automatically set to an on or off condition when a client pro‐
68 gram exits. The remaining controls, known as the Non-Boolean Controls,
69 are always active. The XkbControlsRec structure describes the current
70 state of most of the global controls and the attributes effecting the
71 behavior of each of these Xkb features. This chapter describes the Xkb
72 controls and how to manipulate them.
73
74 There are two possible components for each of the Boolean Controls: at‐
75 tributes describing how the control should work, and a state describing
76 whether the behavior as a whole is enabled or disabled. The attributes
77 and state for most of these controls are held in the XkbControlsRec
78 structure.
79
80 You can manipulate the Xkb controls individually, via convenience func‐
81 tions, or as a whole. To treat them as a group, modify an XkbControl‐
82 sRec structure to describe all of the changes to be made, and then pass
83 that structure and appropriate flags to an Xkb library function, or use
84 a XkbControlsChangesRec to reduce network traffic. When using a conve‐
85 nience function to manipulate one control individually, you do not use
86 an XkbControlsRec structure directly.
87
88 The Xkb controls are grouped as shown in Table 2.
89
90 Table 2 Xkb Keyboard Controls
91 ───────────────────────────────────────────────────────────────
92
93 Type of Control Control Name Boolean Control?
94 ───────────────────────────────────────────────────────────────
95 Controls for en‐ EnabledControls No
96 abling and disabling AutoReset No
97 other controls
98 ───────────────────────────────────────────────────────────────
99 Control for bell be‐ AudibleBell Boolean
100 havior
101 ───────────────────────────────────────────────────────────────
102 Controls for repeat PerKeyRepeat No
103 key behavior RepeatKeys Boolean
104 DetectableAutorepeat Boolean
105 ───────────────────────────────────────────────────────────────
106 Controls for Overlay1 Boolean
107 keyboard overlays Overlay2 Boolean
108 ───────────────────────────────────────────────────────────────
109 Controls for using MouseKeys Boolean
110 the mouse from the MouseKeysAccel Boolean
111 keyboard
112 ───────────────────────────────────────────────────────────────
113 AccessXFeedback Boolean
114 Controls for better AccessXKeys Boolean
115 keyboard access by AccessXTimeout Boolean
116 physically impaired BounceKeys Boolean
117 persons SlowKeys Boolean
118 StickyKeys Boolean
119 ───────────────────────────────────────────────────────────────
120 GroupsWrap No
121 Controls for general IgnoreGroupLock Boolean
122 keyboard mapping IgnoreLockMods No
123 InternalMods No
124 ───────────────────────────────────────────────────────────────
125
126
127 The individual categories and controls are described first, together
128 with functions for manipulating them.
129
131 The KeySymMapRec structure is defined as follows:
132
133 #define XkbNumKbdGroups 4
134 #define XkbMaxKbdGroup (XkbNumKbdGroups-1)
135
136 typedef struct { /* map to keysyms for a single keycode
137 */
138 unsigned char kt_index[XkbNumKbdGroups]; /* key type index for
139 each group */
140 unsigned char group_info; /* # of groups and out of range group
141 handling */
142 unsigned char width; /* max # of shift levels for key */
143 unsigned short offset; /* index to keysym table in syms array
144 */
145 } XkbSymMapRec, *XkbSymMapPtr;
146
147
148 The XkbControlsRec structure is defined as follows:
149
150 #define XkbMaxLegalKeyCode 255
151 #define XkbPerKeyBitArraySize ((XkbMaxLegalKeyCode+1)/8)
152
153
154 typedef struct {
155 unsigned char mk_dflt_btn; /* default button for keyboard driven
156 mouse */
157 unsigned char num_groups; /* number of keyboard groups */
158 unsigned char groups_wrap; /* how to wrap out-of-bounds groups */
159 XkbModsRec internal; /* defines server internal modifiers
160 */
161 XkbModsRec ignore_lock; /* modifiers to ignore when checking
162 for grab */
163 unsigned int enabled_ctrls; /* 1 bit => corresponding boolean
164 control enabled */
165 unsigned short repeat_delay; /* ms delay until first repeat */
166 unsigned short repeat_interval; /* ms delay between repeats */
167 unsigned short slow_keys_delay; /* ms minimum time key must be down to
168 be ok */
169 unsigned short debounce_delay; /* ms delay before key reactivated */
170 unsigned short mk_delay; /* ms delay to second mouse motion
171 event */
172 unsigned short mk_interval; /* ms delay between repeat mouse
173 events */
174 unsigned short mk_time_to_max; /* # intervals until constant mouse
175 move */
176 unsigned short mk_max_speed; /* multiplier for maximum mouse speed
177 */
178 short mk_curve; /* determines mouse move curve type */
179 unsigned short ax_options; /* 1 bit => Access X option enabled */
180 unsigned short ax_timeout; /* seconds until Access X disabled */
181 unsigned short axt_opts_mask; /* 1 bit => options to reset on Access
182 X timeout */
183 unsigned short axt_opts_values; /* 1 bit => turn option on, 0=> off */
184 unsigned int axt_ctrls_mask; /* which bits in enabled_ctrls to
185 modify */
186 unsigned int axt_ctrls_values; /* values for new bits in
187 enabled_ctrls */
188 unsigned char per_key_repeat[XkbPerKeyBitArraySize]; /* per key auto
189 repeat */
190 } XkbControlsRec, *XkbControlsPtr;
191
192 The XkbControlsRec structure is defined as follows:
193
194 #define XkbMaxLegalKeyCode 255
195 #define XkbPerKeyBitArraySize ((XkbMaxLegalKeyCode+1)/8)
196
197
198 typedef struct {
199 unsigned char mk_dflt_btn; /* default button for keyboard driven
200 mouse */
201 unsigned char num_groups; /* number of keyboard groups */
202 unsigned char groups_wrap; /* how to wrap out-of-bounds groups */
203 XkbModsRec internal; /* defines server internal modifiers
204 */
205 XkbModsRec ignore_lock; /* modifiers to ignore when checking
206 for grab */
207 unsigned int enabled_ctrls; /* 1 bit => corresponding boolean
208 control enabled */
209 unsigned short repeat_delay; /* ms delay until first repeat */
210 unsigned short repeat_interval; /* ms delay between repeats */
211 unsigned short slow_keys_delay; /* ms minimum time key must be down to
212 be ok */
213 unsigned short debounce_delay; /* ms delay before key reactivated */
214 unsigned short mk_delay; /* ms delay to second mouse motion
215 event */
216 unsigned short mk_interval; /* ms delay between repeat mouse
217 events */
218 unsigned short mk_time_to_max; /* # intervals until constant mouse
219 move */
220 unsigned short mk_max_speed; /* multiplier for maximum mouse speed
221 */
222 short mk_curve; /* determines mouse move curve type */
223 unsigned short ax_options; /* 1 bit => Access X option enabled */
224 unsigned short ax_timeout; /* seconds until Access X disabled */
225 unsigned short axt_opts_mask; /* 1 bit => options to reset on Access
226 X timeout */
227 unsigned short axt_opts_values; /* 1 bit => turn option on, 0=> off */
228 unsigned int axt_ctrls_mask; /* which bits in enabled_ctrls to
229 modify */
230 unsigned int axt_ctrls_values; /* values for new bits in
231 enabled_ctrls */
232 unsigned char per_key_repeat[XkbPerKeyBitArraySize]; /* per key auto
233 repeat */
234 } XkbControlsRec, *XkbControlsPtr;
235
237 XkbChangeTypesOfKey(3), XkbKeyGroupInfo(3), XkbOutOfRangeGroupInfo.(3)
238
239
240
241X Version 11 libX11 1.7.3.1 XkbKeyNumGroups(3)