| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 | 
							- Smalltalk current createPackage: 'Helios-Commands'!
 
- Object subclass: #HLCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLCommand methodsFor: 'accessing'!
 
- documentation
 
- 	^ self class documentation
 
- !
 
- key
 
- 	^ self class key
 
- !
 
- label
 
- 	^ self class label
 
- ! !
 
- !HLCommand methodsFor: 'converting'!
 
- asActionBinding
 
- 	^ (HLBindingAction on: self key labelled: self label)
 
-     	callback: [ self execute ]
 
- !
 
- asBinding
 
- 	^ self isBindingGroup
 
- 		ifTrue: [ self asGroupBinding ]
 
- 		ifFalse: [ self asActionBinding ]
 
- !
 
- asGroupBinding
 
- 	^ HLBindingGroup 
 
- 		on: self key 
 
- 		labelled: self label
 
- ! !
 
- !HLCommand methodsFor: 'executing'!
 
- execute
 
- ! !
 
- !HLCommand methodsFor: 'registration'!
 
- registerOn: aBinding
 
- 	^ aBinding add: self asBinding
 
- ! !
 
- !HLCommand methodsFor: 'testing'!
 
- isBindingGroup
 
- 	^ (self class methodDictionary includesKey: 'execute') not
 
- ! !
 
- !HLCommand class methodsFor: 'accessing'!
 
- concreteSubclasses
 
- 	^ self subclasses select: [ :each |
 
- 		each isConcrete ]
 
- !
 
- documentation
 
- 	^ ''
 
- !
 
- key
 
- 	^ nil
 
- !
 
- label
 
- 	^ ''
 
- ! !
 
- !HLCommand class methodsFor: 'registration'!
 
- registerConcreteClassesOn: aBinding
 
- 	self concreteSubclasses do: [ :each | | binding |
 
- 		binding := each registerOn: aBinding.
 
- 		binding isBindingGroup ifTrue: [
 
- 			each registerConcreteClassesOn: binding ] ]
 
- !
 
- registerOn: aBinding
 
- 	^ self new registerOn: aBinding
 
- ! !
 
- !HLCommand class methodsFor: 'testing'!
 
- isConcrete
 
- 	^ self key notNil
 
- ! !
 
- HLCommand subclass: #HLCloseTabCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLCloseTabCommand methodsFor: 'executing'!
 
- execute
 
- 	HLManager current removeActiveTab
 
- ! !
 
- !HLCloseTabCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 87
 
- !
 
- label
 
- 	^ 'Close tab'
 
- ! !
 
- HLCommand subclass: #HLModelCommand
 
-  instanceVariableNames: 'model'
 
-  package: 'Helios-Commands'!
 
- !HLModelCommand methodsFor: 'accessing'!
 
- model
 
- 	^ model
 
- !
 
- model: aModel
 
- 	model := aModel
 
- ! !
 
- !HLModelCommand class methodsFor: 'instance creation'!
 
- for: aModel
 
- 	^ self new
 
- ! !
 
- !HLModelCommand class methodsFor: 'registration'!
 
- registerConcreteClassesOn: aBinding for: aModel
 
- 	self concreteSubclasses do: [ :each | | binding |
 
- 		binding := each registerOn: aBinding for: aModel.
 
- 		binding isBindingGroup ifTrue: [
 
- 			each registerConcreteClassesOn: binding for: aModel ] ]
 
- !
 
- registerOn: aBinding for: aModel
 
- 	^ (self for: aModel) registerOn: aBinding
 
- ! !
 
- HLModelCommand subclass: #HLBrowserCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLBrowserCommand class methodsFor: 'instance creation'!
 
- for: aBrowserModel
 
- 	^ self new
 
-     	model: aBrowserModel;
 
-         yourself
 
- ! !
 
- HLBrowserCommand subclass: #HLGoToCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 71
 
- !
 
- label
 
- 	^ 'Go to'
 
- ! !
 
- HLGoToCommand subclass: #HLGoToClassesCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToClassesCommand methodsFor: 'executing'!
 
- execute
 
- 	self model focusOnClasses
 
- ! !
 
- !HLGoToClassesCommand class methodsFor: 'accessing'!
 
- key
 
- 	"c"
 
-     
 
- 	^ 67
 
- !
 
- label
 
- 	^ 'Classes'
 
- ! !
 
- HLGoToCommand subclass: #HLGoToMethodsCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToMethodsCommand methodsFor: 'executing'!
 
- execute
 
- 	self model focusOnMethods
 
- ! !
 
- !HLGoToMethodsCommand class methodsFor: 'accessing'!
 
- key
 
- 	"m"
 
-     
 
- 	^ 77
 
- !
 
- label
 
- 	^ 'Methods'
 
- ! !
 
- HLGoToCommand subclass: #HLGoToPackagesCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToPackagesCommand methodsFor: 'executing'!
 
- execute
 
- 	self model focusOnPackages
 
- ! !
 
- !HLGoToPackagesCommand class methodsFor: 'accessing'!
 
- key
 
- 	"p"
 
-     
 
- 	^ 80
 
- !
 
- label
 
- 	^ 'Packages'
 
- ! !
 
- HLGoToCommand subclass: #HLGoToProtocolsCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToProtocolsCommand methodsFor: 'executing'!
 
- execute
 
- 	self model focusOnProtocols
 
- ! !
 
- !HLGoToProtocolsCommand class methodsFor: 'accessing'!
 
- key
 
- 	"p"
 
-     
 
- 	^ 84
 
- !
 
- label
 
- 	^ 'Protocols'
 
- ! !
 
- HLGoToCommand subclass: #HLGoToSourceCodeCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLGoToSourceCodeCommand methodsFor: 'executing'!
 
- execute
 
- 	self model focusOnSourceCode
 
- ! !
 
- !HLGoToSourceCodeCommand class methodsFor: 'accessing'!
 
- key
 
- 	"s"
 
-     
 
- 	^ 83
 
- !
 
- label
 
- 	^ 'Source code'
 
- ! !
 
- HLBrowserCommand subclass: #HLMoveToCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLMoveToCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 77
 
- !
 
- label
 
- 	^ 'Move'
 
- ! !
 
- HLMoveToCommand subclass: #HLMoveMethodToCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLMoveMethodToCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 77
 
- !
 
- label
 
- 	^ 'Method'
 
- ! !
 
- HLMoveMethodToCommand subclass: #HLMoveMethodToClassCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLMoveMethodToClassCommand methodsFor: 'executing'!
 
- execute
 
- ! !
 
- !HLMoveMethodToClassCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 67
 
- !
 
- label	
 
- 	^ 'to class'
 
- ! !
 
- HLMoveMethodToCommand subclass: #HLMoveMethodToProtocolCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLMoveMethodToProtocolCommand methodsFor: 'executing'!
 
- execute
 
- ! !
 
- !HLMoveMethodToProtocolCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 84
 
- !
 
- label
 
- 	^ 'to protocol'
 
- ! !
 
- HLBrowserCommand subclass: #HLToggleCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLToggleCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 84
 
- !
 
- label
 
- 	^ 'Toggle'
 
- ! !
 
- HLToggleCommand subclass: #HLToggleClassSideCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLToggleClassSideCommand methodsFor: 'executing'!
 
- execute
 
- 	self model showInstance: false
 
- ! !
 
- !HLToggleClassSideCommand class methodsFor: 'accessing'!
 
- key
 
- 	"c"
 
-     
 
- 	^ 67
 
- !
 
- label
 
- 	^ 'Class side'
 
- ! !
 
- HLToggleCommand subclass: #HLToggleInstanceSideCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLToggleInstanceSideCommand methodsFor: 'executing'!
 
- execute
 
- 	self model showInstance: true
 
- ! !
 
- !HLToggleInstanceSideCommand class methodsFor: 'accessing'!
 
- key
 
- 	"i"
 
-     
 
- 	^ 73
 
- !
 
- label
 
- 	^ 'Instance side'
 
- ! !
 
- HLCommand subclass: #HLOpenCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLOpenCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 79
 
- !
 
- label
 
- 	^ 'Open'
 
- ! !
 
- HLOpenCommand subclass: #HLOpenBrowserCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLOpenBrowserCommand methodsFor: 'executing'!
 
- execute
 
- 	^ HLBrowser openAsTab
 
- ! !
 
- !HLOpenBrowserCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 66
 
- !
 
- label
 
- 	^ 'Browser'
 
- ! !
 
- HLOpenCommand subclass: #HLOpenTranscriptCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLOpenTranscriptCommand methodsFor: 'executing'!
 
- execute
 
- 	^ HLTranscript openAsTab
 
- ! !
 
- !HLOpenTranscriptCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 84
 
- !
 
- label
 
- 	^ 'Transcript'
 
- ! !
 
- HLOpenCommand subclass: #HLOpenWorkspaceCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLOpenWorkspaceCommand methodsFor: 'executing'!
 
- execute
 
- 	^ HLCodeWidget openAsTab
 
- ! !
 
- !HLOpenWorkspaceCommand class methodsFor: 'accessing'!
 
- key
 
- 	^ 87
 
- !
 
- label
 
- 	^ 'Workspace'
 
- ! !
 
- HLCommand subclass: #HLViewCommand
 
-  instanceVariableNames: ''
 
-  package: 'Helios-Commands'!
 
- !HLViewCommand class methodsFor: 'accessing'!
 
- label
 
- 	^ 'View'
 
- ! !
 
 
  |