Helios-Commands-Core.st 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. Smalltalk current createPackage: 'Helios-Commands-Core'!
  2. Object subclass: #HLCommand
  3. instanceVariableNames: 'input errorBlock'
  4. package: 'Helios-Commands-Core'!
  5. !HLCommand methodsFor: 'accessing'!
  6. documentation
  7. ^ self class documentation
  8. !
  9. errorBlock
  10. ^ errorBlock
  11. !
  12. errorBlock: aBlock
  13. errorBlock := aBlock
  14. !
  15. input
  16. ^ input
  17. !
  18. input: aString
  19. ^ input := aString
  20. !
  21. inputCompletion
  22. ^ #()
  23. !
  24. inputLabel
  25. ^ self label
  26. !
  27. key
  28. ^ self class key
  29. !
  30. label
  31. ^ self class label
  32. ! !
  33. !HLCommand methodsFor: 'converting'!
  34. asActionBinding
  35. ^ (HLBindingAction on: self key labelled: self label)
  36. command: self;
  37. yourself
  38. !
  39. asBinding
  40. ^ self isBindingGroup
  41. ifTrue: [ self asGroupBinding ]
  42. ifFalse: [ self asActionBinding ]
  43. !
  44. asGroupBinding
  45. ^ HLBindingGroup
  46. on: self key
  47. labelled: self label
  48. ! !
  49. !HLCommand methodsFor: 'error handling'!
  50. commandError: aString
  51. self error: aString
  52. ! !
  53. !HLCommand methodsFor: 'executing'!
  54. execute
  55. ! !
  56. !HLCommand methodsFor: 'registration'!
  57. registerOn: aBinding
  58. ^ aBinding add: self asBinding
  59. ! !
  60. !HLCommand methodsFor: 'testing'!
  61. isActive
  62. ^ true
  63. !
  64. isBindingGroup
  65. ^ (self class methodDictionary includesKey: 'execute') not
  66. !
  67. isInputRequired
  68. ^ false
  69. ! !
  70. !HLCommand class methodsFor: 'accessing'!
  71. documentation
  72. ^ ''
  73. !
  74. key
  75. ^ nil
  76. !
  77. label
  78. ^ ''
  79. ! !
  80. !HLCommand class methodsFor: 'registration'!
  81. registerConcreteClassesOn: aBinding
  82. | newBinding |
  83. self isConcrete
  84. ifTrue: [ newBinding := self registerOn: aBinding ]
  85. ifFalse: [ newBinding := aBinding ].
  86. self subclasses do: [ :each | each registerConcreteClassesOn: newBinding ]
  87. !
  88. registerOn: aBinding
  89. ^ self new registerOn: aBinding
  90. ! !
  91. !HLCommand class methodsFor: 'testing'!
  92. isConcrete
  93. ^ self key notNil
  94. ! !
  95. HLCommand subclass: #HLCloseTabCommand
  96. instanceVariableNames: ''
  97. package: 'Helios-Commands-Core'!
  98. !HLCloseTabCommand methodsFor: 'executing'!
  99. execute
  100. HLManager current removeActiveTab
  101. ! !
  102. !HLCloseTabCommand class methodsFor: 'accessing'!
  103. key
  104. ^ 87
  105. !
  106. label
  107. ^ 'Close tab'
  108. ! !
  109. HLCommand subclass: #HLModelCommand
  110. instanceVariableNames: 'model'
  111. package: 'Helios-Commands-Core'!
  112. !HLModelCommand methodsFor: 'accessing'!
  113. model
  114. ^ model
  115. !
  116. model: aModel
  117. model := aModel
  118. ! !
  119. !HLModelCommand class methodsFor: 'instance creation'!
  120. for: aModel
  121. ^ self new
  122. ! !
  123. !HLModelCommand class methodsFor: 'registration'!
  124. registerConcreteClassesOn: aBinding for: aModel
  125. | newBinding |
  126. self isConcrete
  127. ifTrue: [ newBinding := self registerOn: aBinding for: aModel ]
  128. ifFalse: [ newBinding := aBinding ].
  129. self subclasses do: [ :each |
  130. each registerConcreteClassesOn: newBinding for: aModel ]
  131. !
  132. registerOn: aBinding for: aModel
  133. ^ (self for: aModel) registerOn: aBinding
  134. ! !
  135. HLCommand subclass: #HLOpenCommand
  136. instanceVariableNames: ''
  137. package: 'Helios-Commands-Core'!
  138. !HLOpenCommand class methodsFor: 'accessing'!
  139. key
  140. ^ 79
  141. !
  142. label
  143. ^ 'Open'
  144. ! !
  145. HLOpenCommand subclass: #HLOpenBrowserCommand
  146. instanceVariableNames: ''
  147. package: 'Helios-Commands-Core'!
  148. !HLOpenBrowserCommand methodsFor: 'executing'!
  149. execute
  150. ^ HLBrowser openAsTab
  151. ! !
  152. !HLOpenBrowserCommand class methodsFor: 'accessing'!
  153. key
  154. ^ 66
  155. !
  156. label
  157. ^ 'Browser'
  158. ! !
  159. HLOpenCommand subclass: #HLOpenTranscriptCommand
  160. instanceVariableNames: ''
  161. package: 'Helios-Commands-Core'!
  162. !HLOpenTranscriptCommand methodsFor: 'executing'!
  163. execute
  164. ^ HLTranscript openAsTab
  165. ! !
  166. !HLOpenTranscriptCommand class methodsFor: 'accessing'!
  167. key
  168. ^ 84
  169. !
  170. label
  171. ^ 'Transcript'
  172. ! !
  173. HLOpenCommand subclass: #HLOpenWorkspaceCommand
  174. instanceVariableNames: ''
  175. package: 'Helios-Commands-Core'!
  176. !HLOpenWorkspaceCommand methodsFor: 'executing'!
  177. execute
  178. ^ HLCodeWidget openAsTab
  179. ! !
  180. !HLOpenWorkspaceCommand class methodsFor: 'accessing'!
  181. key
  182. ^ 87
  183. !
  184. label
  185. ^ 'Workspace'
  186. ! !
  187. HLCommand subclass: #HLViewCommand
  188. instanceVariableNames: ''
  189. package: 'Helios-Commands-Core'!
  190. !HLViewCommand class methodsFor: 'accessing'!
  191. label
  192. ^ 'View'
  193. ! !