xkb_group_index_t
xkb_key_num_groups(struct xkb_keymap *keymap, xkb_keycode_t key);
+/**
+ * Returns 1 if the key should repeat, or 0 otherwise.
+ */
+int
+xkb_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t key);
+
/**
* Returns the number of LEDs in the given map.
*/
*syms_out = NULL;
return 0;
}
+
+/**
+ * Simple boolean specifying whether or not the key should repeat.
+ */
+_X_EXPORT int
+xkb_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t key)
+{
+ return !!(keymap->ctrls->per_key_repeat[key / 8] & (1 << (key % 8)));
+}
xkb_state_unref(state);
}
+static void
+test_repeat(struct xkb_keymap *keymap)
+{
+ xkb_keycode_t key;
+ fprintf(stderr, "%s\n", xkb_map_get_as_string(keymap));
+ for (key = keymap->min_key_code; key < keymap->max_key_code; key++)
+ if (xkb_key_repeats(keymap, key))
+ fprintf(stderr, "%d repeats!\n", key);
+ assert(!xkb_key_repeats(keymap, KEY_LEFTSHIFT + 8));
+ assert(xkb_key_repeats(keymap, KEY_A + 8));
+}
+
int
main(void)
{
test_update_key(keymap);
test_serialisation(keymap);
+ test_repeat(keymap);
xkb_map_unref(keymap);
xkb_context_unref(context);