123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- Smalltalk current createPackage: 'Helios-KeyBindings' properties: #{}!
- Object subclass: #HLBinding
- instanceVariableNames: 'key label'
- package: 'Helios-KeyBindings'!
- !HLBinding methodsFor: 'accessing'!
- key
- ^ key
- !
- key: anInteger
- key := anInteger
- !
- label
- ^ label
- !
- label: aString
- label := aString
- !
- shortcut
- ^ String fromCharCode: self key
- ! !
- !HLBinding methodsFor: 'actions'!
- applyOn: aKeyBinder
- self subclassResponsibility
- ! !
- !HLBinding methodsFor: 'rendering'!
- renderOn: aBindingHelper html: html
- ! !
- !HLBinding methodsFor: 'testing'!
- isBindingAction
- ^ false
- !
- isBindingGroup
- ^ false
- ! !
- !HLBinding class methodsFor: 'instance creation'!
- on: anInteger labelled: aString
- ^ self new
- key: anInteger;
- label: aString;
- yourself
- ! !
- HLBinding subclass: #HLBindingAction
- instanceVariableNames: 'callback'
- package: 'Helios-KeyBindings'!
- !HLBindingAction methodsFor: 'accessing'!
- callback
- ^ callback
- !
- callback: aBlock
- callback := aBlock
- ! !
- !HLBindingAction methodsFor: 'actions'!
- applyOn: aKeyBinder
- aKeyBinder applyBindingAction: self
- ! !
- !HLBindingAction methodsFor: 'testing'!
- isBindingAction
- ^ true
- ! !
- HLBinding subclass: #HLBindingGroup
- instanceVariableNames: 'bindings'
- package: 'Helios-KeyBindings'!
- !HLBindingGroup methodsFor: 'accessing'!
- add: aBinding
- ^ self bindings add: aBinding
- !
- addActionKey: anInteger labelled: aString callback: aBlock
- self add: ((HLBindingAction on: anInteger labelled: aString)
- callback: aBlock;
- yourself)
- !
- addActionKey: anInteger labelled: aString command: aCommand
- self add: ((HLBindingAction on: anInteger labelled: aString)
- command: aCommand;
- yourself)
- !
- addGroupKey: anInteger labelled: aString
- self add: (HLBindingGroup on: anInteger labelled: aString)
- !
- at: aString
- ^ self bindings
- detect: [ :each | each label = aString ]
- ifNone: [ nil ]
- !
- atKey: anInteger
- ^ self bindings
- detect: [ :each | each key = anInteger ]
- ifNone: [ nil ]
- !
- bindings
- ^ bindings ifNil: [ bindings := OrderedCollection new ]
- ! !
- !HLBindingGroup methodsFor: 'actions'!
- applyOn: aKeyBinder
- aKeyBinder applyBindingGroup: self
- ! !
- !HLBindingGroup methodsFor: 'rendering'!
- renderOn: aBindingHelper html: html
- aBindingHelper renderBindingGroup: self on: html
- ! !
- !HLBindingGroup methodsFor: 'testing'!
- isBindingGroup
- ^ true
- ! !
- Object subclass: #HLKeyBinder
- instanceVariableNames: 'modifierKey active helper bindings selectedBinding'
- package: 'Helios-KeyBindings'!
- !HLKeyBinder methodsFor: 'accessing'!
- activationKey
- "SPACE"
- ^ 32
- !
- bindings
- ^ bindings ifNil: [ bindings := HLBindingGroup new ]
- !
- escapeKey
- "ESC"
- ^ 27
- !
- helper
- ^ helper ifNil: [ helper := HLKeyBinderHelper on: self ]
- !
- selectedBinding
- ^ selectedBinding ifNil: [ self bindings ]
- ! !
- !HLKeyBinder methodsFor: 'actions'!
- activate
- active := true.
- self helper show
- !
- applyBinding: aBinding
- aBinding applyOn: self
- !
- applyBindingAction: aBinding
- aBinding callback value.
- self deactivate
- !
- applyBindingGroup: aBinding
- selectedBinding := aBinding.
- self helper refresh
- !
- deactivate
- active := false.
- selectedBinding := nil.
- self helper hide
- !
- flushBindings
- bindings := nil.
- helper := nil
- ! !
- !HLKeyBinder methodsFor: 'events'!
- handleActiveKeyDown: event
- "ESC or ctrl+g deactivate the keyBinder"
- (event which = self escapeKey or: [
- event which = 71 and: [ event ctrlKey ] ])
- ifTrue: [
- self deactivate.
- event preventDefault.
- ^ false ].
-
- "Handle the keybinding"
- ^ self handleBindingFor: event
- !
- handleBindingFor: anEvent
- | binding |
- binding := self selectedBinding atKey: anEvent which.
-
- binding ifNotNil: [
- self applyBinding: binding.
- anEvent preventDefault.
- ^ false ]
- !
- handleInactiveKeyDown: event
- event which = self activationKey ifTrue: [
- event ctrlKey ifTrue: [
- self activate.
- event preventDefault.
- ^ false ] ]
- !
- handleKeyDown: event
- ^ self isActive
- ifTrue: [ self handleActiveKeyDown: event ]
- ifFalse: [ self handleInactiveKeyDown: event ]
- !
- setupEvents
- (window jQuery: 'body') keydown: [ :event | self handleKeyDown: event ]
- ! !
- !HLKeyBinder methodsFor: 'initialization'!
- initialize
- super initialize.
- active := false
- ! !
- !HLKeyBinder methodsFor: 'testing'!
- isActive
- ^ active ifNil: [ false ]
- !
- systemIsMac
- ^ navigator platform match: 'Mac'
- ! !
- HLWidget subclass: #HLKeyBinderHelper
- instanceVariableNames: 'keyBinder'
- package: 'Helios-KeyBindings'!
- !HLKeyBinderHelper methodsFor: 'accessing'!
- keyBinder
- ^ keyBinder
- !
- keyBinder: aKeyBinder
- keyBinder := aKeyBinder
- !
- selectedBinding
- ^ self keyBinder selectedBinding
- ! !
- !HLKeyBinderHelper methodsFor: 'actions'!
- hide
- rootDiv asJQuery remove
- !
- show
- self appendToJQuery: 'body' asJQuery
- ! !
- !HLKeyBinderHelper methodsFor: 'keyBindings'!
- registerBindings
- "Do nothing"
- ! !
- !HLKeyBinderHelper methodsFor: 'rendering'!
- renderBindingGroup: aBindingGroup on: html
- (aBindingGroup bindings
- sorted: [ :a :b | a key < b key ])
- do: [ :each |
- html span class: 'command'; with: [
- html span class: 'label'; with: each shortcut asLowercase.
- html a
- class: 'action';
- with: each label;
- onClick: [ self keyBinder applyBinding: each ] ] ]
- !
- renderBindingOn: html
- self selectedBinding renderOn: self html: html
- !
- renderContentOn: html
- html div class: 'key_helper'; with: [
- self
- renderSelectionOn:html;
- renderBindingOn: html ]
- !
- renderSelectionOn: html
- html span
- class: 'selected';
- with: (self selectedBinding label ifNil: [ 'Action' ])
- ! !
- !HLKeyBinderHelper class methodsFor: 'instance creation'!
- on: aKeyBinder
- ^ self new
- keyBinder: aKeyBinder;
- yourself
- ! !
|