FzzyKeybindSimple

constructor(inputCode: Int, type: ContextInput, ctrl: Boolean, shift: Boolean, alt: Boolean)


constructor(inputCode: Int, type: ContextInput, ctrl: TriState, shift: TriState, alt: TriState)

Parameters

inputCode

Int keycode of the key to test for

ctrl

TriState whether ctrl modifier key is needed or not. Generally if ctrl is TriState.TRUE, the other modifiers should be TriState.FALSE to avoid input relevance ambiguity

shift

TriState whether shift modifier key is needed or not. Generally if shift is TriState.TRUE, the other modifiers should be TriState.FALSE to avoid input relevance ambiguity

alt

TriState whether alt modifier key is needed or not. Generally if alt is TriState.TRUE, the other modifiers should be TriState.FALSE to avoid input relevance ambiguity