Interface IKeyConflictContext
-
- All Known Implementing Classes:
KeyConflictContext
public interface IKeyConflictContextDefines the context that aKeyBindingis used. Key conflicts occur when aKeyBindinghas the sameIKeyConflictContextand has conflicting modifiers and keyCodes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanconflicts(IKeyConflictContext other)booleanisActive()
-
-
-
Method Detail
-
isActive
boolean isActive()
- Returns:
- true if conditions are met to activate
KeyBindings with this context
-
conflicts
boolean conflicts(IKeyConflictContext other)
- Returns:
- true if the other context can have
KeyBindingconflicts with this one. This will be called on both contexts to check for conflicts.
-
-