xkb_state_match

Match flags for xkb_state_mod_indices_are_active() and xkb_state_mod_names_are_active(), specifying the conditions for a successful match. XKB_STATE_MATCH_NON_EXCLUSIVE is bitmaskable with the other modes.

Values

ValueMeaning
XKB_STATE_MATCH_ANY(1 << 0)

Returns true if any of the modifiers are active.

XKB_STATE_MATCH_ALL(1 << 1)

Returns true if all of the modifiers are active.

XKB_STATE_MATCH_NON_EXCLUSIVE(1 << 16)

Makes matching non-exclusive, i.e. will not return false if a * modifier not specified in the arguments is active.

Meta