Helios-Core.st 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719
  1. Smalltalk current createPackage: 'Helios-Core'!
  2. Object subclass: #HLModel
  3. instanceVariableNames: 'announcer environment'
  4. package: 'Helios-Core'!
  5. !HLModel commentStamp!
  6. I am the abstract superclass of all models of Helios.
  7. I am the "Model" part of the MVC pattern implementation in Helios.
  8. I provide access to an `Environment` object and both a local (model-specific) and global (system-specific) announcer.
  9. The `#withChangesDo:` method is handy for performing model changes ensuring that all widgets are aware of the change and can prevent it from happening.
  10. Modifications of the system should be done via commands (see `HLCommand` and subclasses).!
  11. !HLModel methodsFor: 'accessing'!
  12. announcer
  13. ^ announcer ifNil: [ announcer := Announcer new ]
  14. !
  15. environment
  16. ^ environment ifNil: [ self manager environment ]
  17. !
  18. environment: anEnvironment
  19. environment := anEnvironment
  20. !
  21. manager
  22. ^ HLManager current
  23. !
  24. systemAnnouncer
  25. ^ self environment systemAnnouncer
  26. ! !
  27. !HLModel methodsFor: 'error handling'!
  28. withChangesDo: aBlock
  29. [
  30. self announcer announce: (HLAboutToChange new
  31. actionBlock: aBlock).
  32. aBlock value.
  33. ]
  34. on: HLChangeForbidden
  35. do: [ :ex | ]
  36. ! !
  37. !HLModel methodsFor: 'testing'!
  38. isBrowserModel
  39. ^ false
  40. !
  41. isReferencesModel
  42. ^ false
  43. !
  44. isToolModel
  45. ^ false
  46. ! !
  47. HLModel subclass: #HLToolModel
  48. instanceVariableNames: 'selectedClass selectedPackage selectedProtocol selectedSelector'
  49. package: 'Helios-Core'!
  50. !HLToolModel commentStamp!
  51. I am a model specific to package and class manipulation. All browsers should either use me or a subclass as their model.
  52. I provide methods for package, class, protocol and method manipulation and access, forwarding to my environment.
  53. I also handle compilation of classes and methods as well as compilation and parsing errors.!
  54. !HLToolModel methodsFor: 'accessing'!
  55. allSelectors
  56. ^ self environment allSelectors
  57. !
  58. availableClassNames
  59. ^ self environment availableClassNames
  60. !
  61. availablePackageNames
  62. ^ self environment availablePackageNames
  63. !
  64. availablePackages
  65. ^ self environment availablePackageNames
  66. !
  67. availableProtocols
  68. ^ self environment availableProtocolsFor: self selectedClass
  69. !
  70. packages
  71. ^ self environment packages
  72. !
  73. selectedClass
  74. ^ selectedClass
  75. !
  76. selectedClass: aClass
  77. (self selectedClass = aClass and: [ aClass isNil ])
  78. ifTrue: [ ^ self ].
  79. self withChangesDo: [
  80. selectedClass = aClass ifTrue: [
  81. self selectedProtocol: nil ].
  82. aClass
  83. ifNil: [ selectedClass := nil ]
  84. ifNotNil: [
  85. self selectedPackage: aClass theNonMetaClass package.
  86. self showInstance
  87. ifTrue: [ selectedClass := aClass theNonMetaClass ]
  88. ifFalse: [ selectedClass := aClass theMetaClass ] ].
  89. self selectedProtocol: nil.
  90. self announcer announce: (HLClassSelected on: self selectedClass) ]
  91. !
  92. selectedMethod
  93. ^ self selectedClass ifNotNil: [
  94. self selectedClass methodDictionary
  95. at: selectedSelector
  96. ifAbsent: [ nil ] ]
  97. !
  98. selectedMethod: aCompiledMethod
  99. selectedSelector = aCompiledMethod ifTrue: [ ^ self ].
  100. self withChangesDo: [
  101. aCompiledMethod
  102. ifNil: [ selectedSelector := nil ]
  103. ifNotNil: [
  104. selectedClass := aCompiledMethod methodClass.
  105. selectedPackage := selectedClass theNonMetaClass package.
  106. selectedSelector := aCompiledMethod selector ].
  107. self announcer announce: (HLMethodSelected on: aCompiledMethod) ]
  108. !
  109. selectedPackage
  110. ^ selectedPackage
  111. !
  112. selectedPackage: aPackage
  113. selectedPackage = aPackage ifTrue: [ ^ self ].
  114. self withChangesDo: [
  115. selectedPackage := aPackage.
  116. self selectedClass: nil.
  117. self announcer announce: (HLPackageSelected on: aPackage) ]
  118. !
  119. selectedProtocol
  120. ^ selectedProtocol
  121. !
  122. selectedProtocol: aString
  123. selectedProtocol = aString ifTrue: [ ^ self ].
  124. self withChangesDo: [
  125. selectedProtocol := aString.
  126. self selectedMethod: nil.
  127. self announcer announce: (HLProtocolSelected on: aString) ]
  128. ! !
  129. !HLToolModel methodsFor: 'actions'!
  130. addInstVarNamed: aString
  131. self environment addInstVarNamed: aString to: self selectedClass.
  132. self announcer announce: (HLInstVarAdded new
  133. theClass: self selectedClass;
  134. variableName: aString;
  135. yourself)
  136. !
  137. save: aString
  138. self announcer announce: HLSourceCodeSaved new.
  139. (self shouldCompileClassDefinition: aString)
  140. ifTrue: [ self compileClassDefinition: aString ]
  141. ifFalse: [ self compileMethod: aString ]
  142. !
  143. saveSourceCode
  144. self announcer announce: HLSaveSourceCode new
  145. ! !
  146. !HLToolModel methodsFor: 'commands actions'!
  147. commitPackage
  148. "self
  149. withHelperLabelled: 'Committing package ', self selectedPackage name, '...'
  150. do: [ "self environment commitPackage: self selectedPackage" ]"
  151. !
  152. copyClassTo: aClassName
  153. self withChangesDo: [
  154. self environment
  155. copyClass: self selectedClass theNonMetaClass
  156. to: aClassName ]
  157. !
  158. moveClassToPackage: aPackageName
  159. self withChangesDo: [
  160. self environment
  161. moveClass: self selectedClass theNonMetaClass
  162. toPackage: aPackageName ]
  163. !
  164. moveMethodToClass: aClassName
  165. self withChangesDo: [
  166. self environment
  167. moveMethod: self selectedMethod
  168. toClass: aClassName ]
  169. !
  170. moveMethodToProtocol: aProtocol
  171. self withChangesDo: [
  172. self environment
  173. moveMethod: self selectedMethod
  174. toProtocol: aProtocol ]
  175. !
  176. openClassNamed: aString
  177. | class |
  178. self withChangesDo: [
  179. class := self environment classNamed: aString.
  180. self selectedPackage: class package.
  181. self selectedClass: class ]
  182. !
  183. removeClass
  184. self withChangesDo: [
  185. self manager
  186. confirm: 'Do you REALLY want to remove class ', self selectedClass name
  187. ifTrue: [ self environment removeClass: self selectedClass ] ]
  188. !
  189. removeMethod
  190. self withChangesDo: [
  191. self manager
  192. confirm: 'Do you REALLY want to remove method ', self selectedMethod methodClass name,' >> #', self selectedMethod selector
  193. ifTrue: [ self environment removeMethod: self selectedMethod ] ]
  194. !
  195. removeProtocol
  196. self withChangesDo: [
  197. self manager
  198. confirm: 'Do you REALLY want to remove protocol ', self selectedProtocol
  199. ifTrue: [ self environment
  200. removeProtocol: self selectedProtocol
  201. from: self selectedClass ] ]
  202. !
  203. renameClassTo: aClassName
  204. self withChangesDo: [
  205. self environment
  206. renameClass: self selectedClass theNonMetaClass
  207. to: aClassName ]
  208. !
  209. renameProtocolTo: aString
  210. self withChangesDo: [
  211. self environment
  212. renameProtocol: self selectedProtocol
  213. to: aString
  214. in: self selectedClass ]
  215. ! !
  216. !HLToolModel methodsFor: 'compiling'!
  217. compileClassComment: aString
  218. self environment
  219. compileClassComment: aString
  220. for: self selectedClass
  221. !
  222. compileClassDefinition: aString
  223. self environment compileClassDefinition: aString
  224. !
  225. compileMethod: aString
  226. | method |
  227. self withCompileErrorHandling: [
  228. method := self environment
  229. compileMethod: aString
  230. for: self selectedClass
  231. protocol: self compilationProtocol.
  232. self selectedMethod: method ]
  233. ! !
  234. !HLToolModel methodsFor: 'defaults'!
  235. allProtocol
  236. ^ '-- all --'
  237. !
  238. unclassifiedProtocol
  239. ^ 'as yet unclassified'
  240. ! !
  241. !HLToolModel methodsFor: 'error handling'!
  242. handleCompileError: anError
  243. self announcer announce: (HLCompileErrorRaised new
  244. error: anError;
  245. yourself)
  246. !
  247. handleParseError: anError
  248. | split line column messageToInsert |
  249. split := anError messageText tokenize: ' : '.
  250. messageToInsert := split second.
  251. "21 = 'Parse error on line ' size + 1"
  252. split := split first copyFrom: 21 to: split first size.
  253. split := split tokenize: ' column '.
  254. line := split first.
  255. column := split second.
  256. self announcer announce: (HLParseErrorRaised new
  257. line: line asNumber;
  258. column: column asNumber;
  259. message: messageToInsert;
  260. error: anError;
  261. yourself)
  262. !
  263. handleUnkownVariableError: anError
  264. self announcer announce: (HLUnknownVariableErrorRaised new
  265. error: anError;
  266. yourself)
  267. !
  268. withCompileErrorHandling: aBlock
  269. self environment
  270. evaluate: [
  271. self environment
  272. evaluate: [
  273. self environment
  274. evaluate: aBlock
  275. on: ParseError
  276. do: [:ex | self handleParseError: ex ] ]
  277. on: UnknownVariableError
  278. do: [ :ex | self handleUnkownVariableError: ex ] ]
  279. on: CompilerError
  280. do: [ :ex | self handleCompileError: ex ]
  281. ! !
  282. !HLToolModel methodsFor: 'private'!
  283. compilationProtocol
  284. | currentProtocol |
  285. currentProtocol := self selectedProtocol.
  286. currentProtocol ifNil: [ currentProtocol := self unclassifiedProtocol ].
  287. self selectedMethod ifNotNil: [ currentProtocol := self selectedMethod protocol ].
  288. ^ currentProtocol = self allProtocol
  289. ifTrue: [ self unclassifiedProtocol ]
  290. ifFalse: [ currentProtocol ]
  291. !
  292. withHelperLabelled: aString do: aBlock
  293. "TODO: doesn't belong here"
  294. (window jQuery: '#helper') remove.
  295. [ :html |
  296. html div
  297. id: 'helper';
  298. with: aString ] appendToJQuery: 'body' asJQuery.
  299. [
  300. aBlock value.
  301. (window jQuery: '#helper') remove
  302. ]
  303. valueWithTimeout: 10
  304. ! !
  305. !HLToolModel methodsFor: 'testing'!
  306. isToolModel
  307. ^ true
  308. !
  309. shouldCompileClassDefinition: aString
  310. ^ self selectedClass isNil or: [
  311. aString match: '^[A-Z]' ]
  312. ! !
  313. !HLToolModel class methodsFor: 'actions'!
  314. on: anEnvironment
  315. ^ self new
  316. environment: anEnvironment;
  317. yourself
  318. ! !
  319. ProgressHandler subclass: #HLProgressHandler
  320. instanceVariableNames: ''
  321. package: 'Helios-Core'!
  322. !HLProgressHandler commentStamp!
  323. I am a specific progress handler for Helios, displaying progresses in a modal window.!
  324. !HLProgressHandler methodsFor: 'progress handling'!
  325. do: aBlock on: aCollection displaying: aString
  326. HLProgressWidget default
  327. do: aBlock
  328. on: aCollection
  329. displaying: aString
  330. ! !
  331. Widget subclass: #HLTabWidget
  332. instanceVariableNames: 'widget label root'
  333. package: 'Helios-Core'!
  334. !HLTabWidget commentStamp!
  335. I am a widget specialized into building another widget as an Helios tab.
  336. I should not be used directly, `HLWidget class >> #openAsTab` should be used instead.
  337. ## Example
  338. HLWorkspace openAsTab!
  339. !HLTabWidget methodsFor: 'accessing'!
  340. activate
  341. self manager activate: self
  342. !
  343. add
  344. self manager addTab: self
  345. !
  346. cssClass
  347. ^ self widget tabClass
  348. !
  349. displayLabel
  350. ^ self label size > 20
  351. ifTrue: [ (self label first: 20), '...' ]
  352. ifFalse: [ self label ]
  353. !
  354. focus
  355. self widget canHaveFocus ifTrue: [
  356. self widget focus ]
  357. !
  358. label
  359. ^ label ifNil: [ '' ]
  360. !
  361. label: aString
  362. label := aString
  363. !
  364. manager
  365. ^ HLManager current
  366. !
  367. widget
  368. ^ widget
  369. !
  370. widget: aWidget
  371. widget := aWidget
  372. ! !
  373. !HLTabWidget methodsFor: 'actions'!
  374. hide
  375. root ifNotNil: [ root asJQuery css: 'visibility' put: 'hidden' ]
  376. !
  377. registerBindings
  378. self widget registerBindings
  379. !
  380. remove
  381. self widget unregister.
  382. root ifNotNil: [ root asJQuery remove ]
  383. !
  384. show
  385. root
  386. ifNil: [ self appendToJQuery: 'body' asJQuery ]
  387. ifNotNil: [ root asJQuery css: 'visibility' put: 'visible' ]
  388. ! !
  389. !HLTabWidget methodsFor: 'rendering'!
  390. renderOn: html
  391. root := html div
  392. class: 'tab';
  393. yourself.
  394. self renderTab
  395. !
  396. renderTab
  397. root contents: [ :html |
  398. html div
  399. class: 'amber_box';
  400. with: [ self widget renderOn: html ] ]
  401. ! !
  402. !HLTabWidget methodsFor: 'testing'!
  403. isActive
  404. ^ self manager activeTab = self
  405. ! !
  406. !HLTabWidget class methodsFor: 'instance creation'!
  407. on: aWidget labelled: aString
  408. ^ self new
  409. widget: aWidget;
  410. label: aString;
  411. yourself
  412. ! !
  413. Widget subclass: #HLWidget
  414. instanceVariableNames: 'wrapper'
  415. package: 'Helios-Core'!
  416. !HLWidget commentStamp!
  417. I am the abstract superclass of all Helios widgets.
  418. I provide common methods, additional behavior to widgets useful for Helios, like dialog creation, command execution and tab creation.
  419. ## API
  420. 1. Rendering
  421. Instead of overriding `#renderOn:` as with other Widget subclasses, my subclasses should override `#renderContentOn:`.
  422. 2. Refreshing
  423. To re-render a widget, use `#refresh`.
  424. 3. Key bindings registration and tabs
  425. When displayed as a tab, the widget has a chance to register keybindings with the `#registerBindingsOn:` hook method.
  426. 4. Unregistration
  427. When a widget has subscribed to announcements or other actions that need to be cleared when closing the tab, the hook method `#unregister` will be called by helios.
  428. 5. Tabs
  429. To enable a widget class to be open as a tab, override the class-side `#canBeOpenAsTab` method to answer `true`. `#tabClass` and `#tabPriority` can be overridden too to respectively change the css class of the tab and the order of tabs in the main menu.
  430. 6. Command execution
  431. An helios command (instance of `HLCommand` or one of its subclass) can be executed with `#execute:`.!
  432. !HLWidget methodsFor: 'accessing'!
  433. manager
  434. ^ HLManager current
  435. !
  436. tabClass
  437. ^ self class tabClass
  438. !
  439. wrapper
  440. ^ wrapper
  441. ! !
  442. !HLWidget methodsFor: 'actions'!
  443. alert: aString
  444. window alert: aString
  445. !
  446. confirm: aString ifTrue: aBlock
  447. self manager confirm: aString ifTrue: aBlock
  448. !
  449. execute: aCommand
  450. HLManager current keyBinder
  451. activate;
  452. applyBinding: aCommand asBinding
  453. !
  454. openAsTab
  455. HLManager current addTab: (HLTabWidget on: self labelled: self class tabLabel)
  456. !
  457. request: aString do: aBlock
  458. self manager request: aString do: aBlock
  459. !
  460. request: aString value: valueString do: aBlock
  461. self manager
  462. request: aString
  463. value: valueString
  464. do: aBlock
  465. !
  466. unregister
  467. "This method is called whenever the receiver is closed (as a tab).
  468. Widgets subscribing to announcements should unregister there"
  469. ! !
  470. !HLWidget methodsFor: 'keybindings'!
  471. registerBindings
  472. self registerBindingsOn: self manager keyBinder bindings
  473. !
  474. registerBindingsOn: aBindingGroup
  475. ! !
  476. !HLWidget methodsFor: 'rendering'!
  477. renderContentOn: html
  478. !
  479. renderOn: html
  480. wrapper := html div.
  481. [ :renderer | self renderContentOn: renderer ] appendToJQuery: wrapper asJQuery
  482. ! !
  483. !HLWidget methodsFor: 'testing'!
  484. canHaveFocus
  485. ^ false
  486. ! !
  487. !HLWidget methodsFor: 'updating'!
  488. refresh
  489. self wrapper ifNil: [ ^ self ].
  490. self wrapper asJQuery empty.
  491. [ :html | self renderContentOn: html ] appendToJQuery: self wrapper asJQuery
  492. ! !
  493. !HLWidget class methodsFor: 'accessing'!
  494. openAsTab
  495. HLManager current addTab: (HLTabWidget on: self new labelled: self tabLabel)
  496. !
  497. tabClass
  498. ^ ''
  499. !
  500. tabLabel
  501. ^ 'Tab'
  502. !
  503. tabPriority
  504. ^ 500
  505. ! !
  506. !HLWidget class methodsFor: 'testing'!
  507. canBeOpenAsTab
  508. ^ false
  509. ! !
  510. HLWidget subclass: #HLFocusableWidget
  511. instanceVariableNames: ''
  512. package: 'Helios-Core'!
  513. !HLFocusableWidget commentStamp!
  514. I am a widget that can be focused.
  515. ## API
  516. Instead of overriding `#renderOn:` as with other `Widget` subclasses, my subclasses should override `#renderContentOn:`.
  517. To bring the focus to the widget, use the `#focus` method.!
  518. !HLFocusableWidget methodsFor: 'accessing'!
  519. focusClass
  520. ^ 'focused'
  521. ! !
  522. !HLFocusableWidget methodsFor: 'events'!
  523. blur
  524. self wrapper asJQuery blur
  525. !
  526. focus
  527. self wrapper asJQuery focus
  528. !
  529. hasFocus
  530. ^ self wrapper notNil and: [ self wrapper asJQuery is: ':focus' ]
  531. ! !
  532. !HLFocusableWidget methodsFor: 'rendering'!
  533. renderContentOn: html
  534. !
  535. renderOn: html
  536. wrapper := html div
  537. class: 'hl_widget';
  538. yourself.
  539. wrapper with: [ self renderContentOn: html ].
  540. wrapper
  541. at: 'tabindex' put: '0';
  542. onBlur: [ self wrapper asJQuery removeClass: self focusClass ];
  543. onFocus: [ self wrapper asJQuery addClass: self focusClass ]
  544. ! !
  545. !HLFocusableWidget methodsFor: 'testing'!
  546. canHaveFocus
  547. ^ true
  548. ! !
  549. HLFocusableWidget subclass: #HLListWidget
  550. instanceVariableNames: 'items selectedItem mapping'
  551. package: 'Helios-Core'!
  552. !HLListWidget methodsFor: 'accessing'!
  553. cssClassForItem: anObject
  554. ^ ''
  555. !
  556. items
  557. ^ items ifNil: [ items := self defaultItems ]
  558. !
  559. items: aCollection
  560. items := aCollection
  561. !
  562. listCssClassForItem: anObject
  563. ^ self selectedItem = anObject
  564. ifTrue: [ 'active' ]
  565. ifFalse: [ 'inactive' ]
  566. !
  567. positionOf: aListItem
  568. <
  569. return aListItem.parent().children().get().indexOf(aListItem.get(0)) + 1
  570. >
  571. !
  572. selectedItem
  573. ^ selectedItem
  574. !
  575. selectedItem: anObject
  576. selectedItem := anObject
  577. ! !
  578. !HLListWidget methodsFor: 'actions'!
  579. activateFirstListItem
  580. self activateListItem: (window jQuery: ((wrapper asJQuery find: 'li.inactive') get: 0))
  581. !
  582. activateItem: anObject
  583. self activateListItem: (mapping
  584. at: anObject
  585. ifAbsent: [ ^ self ]) asJQuery
  586. !
  587. activateListItem: aListItem
  588. | item |
  589. (aListItem get: 0) ifNil: [ ^self ].
  590. aListItem parent children removeClass: 'active'.
  591. aListItem addClass: 'active'.
  592. self ensureVisible: aListItem.
  593. "Activate the corresponding item"
  594. item := (self items at: (aListItem attr: 'list-data') asNumber).
  595. self selectedItem == item ifFalse: [
  596. self selectItem: item ]
  597. !
  598. activateNextListItem
  599. self activateListItem: (self wrapper asJQuery find: 'li.active') next.
  600. "select the first item if none is selected"
  601. (self wrapper asJQuery find: ' .active') get ifEmpty: [
  602. self activateFirstListItem ]
  603. !
  604. activatePreviousListItem
  605. self activateListItem: (self wrapper asJQuery find: 'li.active') prev
  606. !
  607. ensureVisible: aListItem
  608. "Move the scrollbar to show the active element"
  609. | perent position |
  610. position := self positionOf: aListItem.
  611. parent := aListItem parent.
  612. aListItem position top < 0 ifTrue: [
  613. (parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem position top - 10) ].
  614. aListItem position top + aListItem height > parent height ifTrue: [
  615. (parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem height - (parent height - aListItem position top)) +10 ]
  616. !
  617. focus
  618. super focus.
  619. self items isEmpty ifFalse: [
  620. self selectedItem ifNil: [ self activateFirstListItem ] ]
  621. !
  622. refresh
  623. super refresh.
  624. self ensureVisible: (mapping
  625. at: self selectedItem
  626. ifAbsent: [ ^ self ]) asJQuery
  627. !
  628. selectItem: anObject
  629. self selectedItem: anObject
  630. ! !
  631. !HLListWidget methodsFor: 'defaults'!
  632. defaultItems
  633. ^ #()
  634. ! !
  635. !HLListWidget methodsFor: 'events'!
  636. setupKeyBindings
  637. "TODO: refactor this!!"
  638. | active interval delay repeatInterval |
  639. active := false.
  640. repeatInterval := 70.
  641. self wrapper asJQuery unbind: 'keydown'.
  642. self wrapper asJQuery keydown: [ :e |
  643. (e which = 38 and: [ active = false ]) ifTrue: [
  644. active := true.
  645. self activatePreviousListItem.
  646. delay := [
  647. interval := [
  648. (self wrapper asJQuery hasClass: self focusClass)
  649. ifTrue: [
  650. self activatePreviousListItem ]
  651. ifFalse: [
  652. active := false.
  653. interval ifNotNil: [ interval clearInterval ].
  654. delay ifNotNil: [ delay clearTimeout] ] ]
  655. valueWithInterval: repeatInterval ]
  656. valueWithTimeout: 300 ].
  657. (e which = 40 and: [ active = false ]) ifTrue: [
  658. active := true.
  659. self activateNextListItem.
  660. delay := [
  661. interval := [
  662. (self wrapper asJQuery hasClass: self focusClass)
  663. ifTrue: [
  664. self activateNextListItem ]
  665. ifFalse: [
  666. active := false.
  667. interval ifNotNil: [ interval clearInterval ].
  668. delay ifNotNil: [ delay clearTimeout] ] ]
  669. valueWithInterval: repeatInterval ]
  670. valueWithTimeout: 300 ] ].
  671. self wrapper asJQuery keyup: [ :e |
  672. active ifTrue: [
  673. active := false.
  674. interval ifNotNil: [ interval clearInterval ].
  675. delay ifNotNil: [ delay clearTimeout] ] ]
  676. ! !
  677. !HLListWidget methodsFor: 'initialization'!
  678. initialize
  679. super initialize.
  680. mapping := Dictionary new.
  681. ! !
  682. !HLListWidget methodsFor: 'private'!
  683. registerMappingFrom: anObject to: aTag
  684. mapping at: anObject put: aTag
  685. ! !
  686. !HLListWidget methodsFor: 'rendering'!
  687. renderButtonsOn: html
  688. !
  689. renderContentOn: html
  690. html ul
  691. class: 'nav nav-pills nav-stacked';
  692. with: [ self renderListOn: html ].
  693. html div class: 'pane_actions form-actions'; with: [
  694. self renderButtonsOn: html ].
  695. self setupKeyBindings
  696. !
  697. renderItem: anObject on: html
  698. | li |
  699. li := html li.
  700. self registerMappingFrom: anObject to: li.
  701. li
  702. at: 'list-data' put: (self items indexOf: anObject) asString;
  703. class: (self listCssClassForItem: anObject);
  704. with: [
  705. html a
  706. with: [
  707. (html tag: 'i') class: (self cssClassForItem: anObject).
  708. self renderItemLabel: anObject on: html ];
  709. onClick: [
  710. self activateListItem: li asJQuery ] ]
  711. !
  712. renderItemLabel: anObject on: html
  713. html with: anObject asString
  714. !
  715. renderListOn: html
  716. mapping := Dictionary new.
  717. self items do: [ :each |
  718. self renderItem: each on: html ]
  719. ! !
  720. HLListWidget subclass: #HLNavigationListWidget
  721. instanceVariableNames: 'previous next'
  722. package: 'Helios-Core'!
  723. !HLNavigationListWidget methodsFor: 'accessing'!
  724. next
  725. ^ next
  726. !
  727. next: aWidget
  728. next := aWidget.
  729. aWidget previous = self ifFalse: [ aWidget previous: self ]
  730. !
  731. previous
  732. ^ previous
  733. !
  734. previous: aWidget
  735. previous := aWidget.
  736. aWidget next = self ifFalse: [ aWidget next: self ]
  737. ! !
  738. !HLNavigationListWidget methodsFor: 'actions'!
  739. nextFocus
  740. self next ifNotNil: [ self next focus ]
  741. !
  742. previousFocus
  743. self previous ifNotNil: [ self previous focus ]
  744. ! !
  745. !HLNavigationListWidget methodsFor: 'events'!
  746. setupKeyBindings
  747. super setupKeyBindings.
  748. self wrapper asJQuery keydown: [ :e |
  749. e which = 39 ifTrue: [
  750. self nextFocus ].
  751. e which = 37 ifTrue: [
  752. self previousFocus ] ]
  753. ! !
  754. HLNavigationListWidget subclass: #HLToolListWidget
  755. instanceVariableNames: 'model'
  756. package: 'Helios-Core'!
  757. !HLToolListWidget methodsFor: 'accessing'!
  758. commandCategory
  759. ^ self label
  760. !
  761. label
  762. ^ 'List'
  763. !
  764. menuCommands
  765. "Answer a collection of commands to be put in the cog menu"
  766. ^ ((HLToolCommand concreteClasses
  767. select: [ :each | each isValidFor: self model ])
  768. collect: [ :each | each for: self model ])
  769. select: [ :each |
  770. each category = self commandCategory and: [
  771. each isAction and: [ each isActive ] ] ]
  772. !
  773. model
  774. ^ model
  775. !
  776. model: aBrowserModel
  777. model := aBrowserModel.
  778. self
  779. observeSystem;
  780. observeModel
  781. !
  782. selectedItem: anItem
  783. "Selection changed, update the cog menu"
  784. super selectedItem: anItem.
  785. self updateMenu
  786. ! !
  787. !HLToolListWidget methodsFor: 'actions'!
  788. activateListItem: anItem
  789. self model withChangesDo: [ super activateListItem: anItem ]
  790. !
  791. activateNextListItem
  792. self model withChangesDo: [ super activateNextListItem ]
  793. !
  794. activatePreviousListItem
  795. self model withChangesDo: [ super activatePreviousListItem ]
  796. !
  797. observeModel
  798. !
  799. observeSystem
  800. !
  801. unregister
  802. super unregister.
  803. self model announcer unsubscribe: self.
  804. self model systemAnnouncer unsubscribe: self
  805. ! !
  806. !HLToolListWidget methodsFor: 'rendering'!
  807. renderContentOn: html
  808. self renderHeadOn: html.
  809. super renderContentOn: html
  810. !
  811. renderHeadOn: html
  812. html div
  813. class: 'list-label';
  814. with: [
  815. html with: self label.
  816. self renderMenuOn: html ]
  817. !
  818. renderMenuOn: html
  819. | commands |
  820. commands := self menuCommands.
  821. commands isEmpty ifTrue: [ ^ self ].
  822. html div
  823. class: 'btn-group cog';
  824. with: [
  825. html a
  826. class: 'btn dropdown-toggle';
  827. at: 'data-toggle' put: 'dropdown';
  828. with: [ (html tag: 'i') class: 'icon-cog' ].
  829. html ul
  830. class: 'dropdown-menu pull-right';
  831. with: [
  832. self menuCommands do: [ :each |
  833. html li with: [ html a
  834. with: each menuLabel;
  835. onClick: [ self execute: each ] ] ] ] ]
  836. ! !
  837. !HLToolListWidget methodsFor: 'updating'!
  838. updateMenu
  839. (self wrapper asJQuery find: '.cog') remove.
  840. [ :html | self renderMenuOn: html ]
  841. appendToJQuery: (self wrapper asJQuery find: '.list-label')
  842. ! !
  843. !HLToolListWidget class methodsFor: 'instance creation'!
  844. on: aModel
  845. ^ self new
  846. model: aModel;
  847. yourself
  848. ! !
  849. HLWidget subclass: #HLManager
  850. instanceVariableNames: 'tabs activeTab keyBinder environment history'
  851. package: 'Helios-Core'!
  852. !HLManager methodsFor: 'accessing'!
  853. activeTab
  854. ^ activeTab
  855. !
  856. environment
  857. "The default environment used by all Helios objects"
  858. ^ environment ifNil: [ environment := self defaultEnvironment ]
  859. !
  860. environment: anEnvironment
  861. environment := anEnvironment
  862. !
  863. history
  864. ^ history ifNil: [ history := OrderedCollection new ]
  865. !
  866. history: aCollection
  867. history := aCollection
  868. !
  869. keyBinder
  870. ^ keyBinder ifNil: [ keyBinder := HLKeyBinder new ]
  871. !
  872. tabs
  873. ^ tabs ifNil: [ tabs := OrderedCollection new ]
  874. ! !
  875. !HLManager methodsFor: 'actions'!
  876. activate: aTab
  877. self keyBinder flushBindings.
  878. aTab registerBindings.
  879. activeTab := aTab.
  880. self
  881. refresh;
  882. addToHistory: aTab;
  883. show: aTab
  884. !
  885. addTab: aTab
  886. self tabs add: aTab.
  887. self activate: aTab
  888. !
  889. addToHistory: aTab
  890. self removeFromHistory: aTab.
  891. self history add: aTab
  892. !
  893. confirm: aString ifFalse: aBlock
  894. (HLConfirmationWidget new
  895. confirmationString: aString;
  896. cancelBlock: aBlock;
  897. yourself)
  898. appendToJQuery: 'body' asJQuery
  899. !
  900. confirm: aString ifTrue: aBlock
  901. (HLConfirmationWidget new
  902. confirmationString: aString;
  903. actionBlock: aBlock;
  904. yourself)
  905. appendToJQuery: 'body' asJQuery
  906. !
  907. registerErrorHandler: anErrorHandler
  908. self environment registerErrorHandler: anErrorHandler
  909. !
  910. registerInspector: anInspector
  911. self environment registerInspector: anInspector
  912. !
  913. registerProgressHandler: aProgressHandler
  914. self environment registerProgressHandler: aProgressHandler
  915. !
  916. removeActiveTab
  917. self removeTab: self activeTab
  918. !
  919. removeFromHistory: aTab
  920. self history: (self history reject: [ :each | each == aTab ])
  921. !
  922. removeTab: aTab
  923. (self tabs includes: aTab) ifFalse: [ ^ self ].
  924. self removeFromHistory: aTab.
  925. self tabs remove: aTab.
  926. self keyBinder flushBindings.
  927. aTab remove.
  928. self refresh.
  929. self history ifNotEmpty: [
  930. self history last activate ]
  931. !
  932. request: aString do: aBlock
  933. self
  934. request: aString
  935. value: ''
  936. do: aBlock
  937. !
  938. request: aString value: valueString do: aBlock
  939. (HLRequestWidget new
  940. confirmationString: aString;
  941. actionBlock: aBlock;
  942. value: valueString;
  943. yourself)
  944. appendToJQuery: 'body' asJQuery
  945. ! !
  946. !HLManager methodsFor: 'defaults'!
  947. defaultEnvironment
  948. "If helios is loaded from within a frame, answer the parent window environment"
  949. | parent |
  950. parent := window opener ifNil: [ window parent ].
  951. parent ifNil: [ ^ Environment new ].
  952. ^ ((parent at: 'smalltalk')
  953. at: 'Environment') new
  954. ! !
  955. !HLManager methodsFor: 'initialization'!
  956. initialize
  957. super initialize.
  958. HLErrorHandler register.
  959. HLProgressHandler register.
  960. self registerInspector: HLInspector.
  961. self registerErrorHandler: ErrorHandler current.
  962. self registerProgressHandler: ProgressHandler current.
  963. self keyBinder setupEvents
  964. ! !
  965. !HLManager methodsFor: 'rendering'!
  966. refresh
  967. (window jQuery: '.navbar') remove.
  968. self appendToJQuery: 'body' asJQuery
  969. !
  970. renderAddOn: html
  971. html li
  972. class: 'dropdown';
  973. with: [
  974. html a
  975. class: 'dropdown-toggle';
  976. at: 'data-toggle' put: 'dropdown';
  977. with: [
  978. html with: 'Open...'.
  979. (html tag: 'b') class: 'caret' ].
  980. html ul
  981. class: 'dropdown-menu';
  982. with: [
  983. ((HLWidget withAllSubclasses
  984. select: [ :each | each canBeOpenAsTab ])
  985. sorted: [ :a :b | a tabPriority < b tabPriority ])
  986. do: [ :each |
  987. html li with: [
  988. html a
  989. with: each tabLabel;
  990. onClick: [ each openAsTab ] ] ] ] ]
  991. !
  992. renderContentOn: html
  993. html div
  994. class: 'navbar navbar-fixed-top';
  995. with: [ html div
  996. class: 'navbar-inner';
  997. with: [ self renderTabsOn: html ] ]
  998. !
  999. renderTabsOn: html
  1000. html ul
  1001. class: 'nav';
  1002. with: [
  1003. self tabs do: [ :each |
  1004. html li
  1005. class: (each isActive ifTrue: [ 'active' ] ifFalse: [ 'inactive' ]);
  1006. with: [
  1007. html a
  1008. with: [
  1009. ((html tag: 'i') class: 'close')
  1010. onClick: [ self removeTab: each ].
  1011. html span
  1012. class: each cssClass;
  1013. with: each displayLabel ];
  1014. onClick: [ each activate ] ] ].
  1015. self renderAddOn: html ]
  1016. !
  1017. show: aTab
  1018. self tabs do: [ :each | each hide ].
  1019. aTab show; focus
  1020. ! !
  1021. HLManager class instanceVariableNames: 'current'!
  1022. !HLManager class methodsFor: 'accessing'!
  1023. current
  1024. ^ current ifNil: [ current := self basicNew initialize ]
  1025. ! !
  1026. !HLManager class methodsFor: 'initialization'!
  1027. initialize
  1028. self current appendToJQuery: 'body' asJQuery
  1029. ! !
  1030. !HLManager class methodsFor: 'instance creation'!
  1031. new
  1032. "Use current instead"
  1033. self shouldNotImplement
  1034. ! !
  1035. HLWidget subclass: #HLModalWidget
  1036. instanceVariableNames: ''
  1037. package: 'Helios-Core'!
  1038. !HLModalWidget commentStamp!
  1039. I implement an abstract modal widget.!
  1040. !HLModalWidget methodsFor: 'accessing'!
  1041. cssClass
  1042. ^ ''
  1043. ! !
  1044. !HLModalWidget methodsFor: 'actions'!
  1045. cancel
  1046. self remove
  1047. !
  1048. remove
  1049. (window jQuery: '.dialog') removeClass: 'active'.
  1050. [
  1051. (window jQuery: '#overlay') remove.
  1052. (window jQuery: '.dialog') remove
  1053. ] valueWithTimeout: 300
  1054. ! !
  1055. !HLModalWidget methodsFor: 'rendering'!
  1056. renderButtonsOn: html
  1057. !
  1058. renderContentOn: html
  1059. | confirmButton |
  1060. html div id: 'overlay'.
  1061. html div
  1062. class: 'dialog ', self cssClass;
  1063. with: [
  1064. self
  1065. renderMainOn: html;
  1066. renderButtonsOn: html ].
  1067. (window jQuery: '.dialog') addClass: 'active'.
  1068. self setupKeyBindings
  1069. !
  1070. renderMainOn: html
  1071. !
  1072. setupKeyBindings
  1073. (window jQuery: '.dialog') keyup: [ :e |
  1074. e keyCode = 27 ifTrue: [ self cancel ] ]
  1075. ! !
  1076. HLModalWidget subclass: #HLConfirmationWidget
  1077. instanceVariableNames: 'confirmationString actionBlock cancelBlock'
  1078. package: 'Helios-Core'!
  1079. !HLConfirmationWidget commentStamp!
  1080. I display confirmation messages.
  1081. Instead of creating an instance directly, use `HLWidget >> #confirm:ifTrue:`.!
  1082. !HLConfirmationWidget methodsFor: 'accessing'!
  1083. actionBlock
  1084. ^ actionBlock ifNil: [ [] ]
  1085. !
  1086. actionBlock: aBlock
  1087. actionBlock := aBlock
  1088. !
  1089. cancelBlock
  1090. ^ cancelBlock ifNil: [ [] ]
  1091. !
  1092. cancelBlock: aBlock
  1093. cancelBlock := aBlock
  1094. !
  1095. confirmationString
  1096. ^ confirmationString ifNil: [ 'Confirm' ]
  1097. !
  1098. confirmationString: aString
  1099. confirmationString := aString
  1100. ! !
  1101. !HLConfirmationWidget methodsFor: 'actions'!
  1102. cancel
  1103. self cancelBlock value.
  1104. self remove
  1105. !
  1106. confirm
  1107. self actionBlock value.
  1108. self remove
  1109. !
  1110. remove
  1111. (window jQuery: '.dialog') removeClass: 'active'.
  1112. [
  1113. (window jQuery: '#overlay') remove.
  1114. (window jQuery: '.dialog') remove
  1115. ] valueWithTimeout: 300
  1116. ! !
  1117. !HLConfirmationWidget methodsFor: 'rendering'!
  1118. renderButtonsOn: html
  1119. | confirmButton |
  1120. html div
  1121. class: 'buttons';
  1122. with: [
  1123. html button
  1124. class: 'button';
  1125. with: 'Cancel';
  1126. onClick: [ self cancel ].
  1127. confirmButton := html button
  1128. class: 'button default';
  1129. with: 'Confirm';
  1130. onClick: [ self confirm ] ].
  1131. confirmButton asJQuery focus
  1132. !
  1133. renderMainOn: html
  1134. html span with: self confirmationString
  1135. ! !
  1136. HLConfirmationWidget subclass: #HLRequestWidget
  1137. instanceVariableNames: 'input value'
  1138. package: 'Helios-Core'!
  1139. !HLRequestWidget commentStamp!
  1140. I display a modal window requesting user input.
  1141. Instead of creating instances manually, use `HLWidget >> #request:do:` and `#request:value:do:`.!
  1142. !HLRequestWidget methodsFor: 'accessing'!
  1143. cssClass
  1144. ^ 'large'
  1145. !
  1146. value
  1147. ^ value ifNil: [ '' ]
  1148. !
  1149. value: aString
  1150. value := aString
  1151. ! !
  1152. !HLRequestWidget methodsFor: 'actions'!
  1153. confirm
  1154. self actionBlock value: input asJQuery val.
  1155. self remove
  1156. ! !
  1157. !HLRequestWidget methodsFor: 'rendering'!
  1158. renderMainOn: html
  1159. super renderMainOn: html.
  1160. input := html textarea.
  1161. input asJQuery val: self value
  1162. ! !
  1163. HLModalWidget subclass: #HLProgressWidget
  1164. instanceVariableNames: 'progressBars visible'
  1165. package: 'Helios-Core'!
  1166. !HLProgressWidget commentStamp!
  1167. I am a widget used to display progress modal dialogs.
  1168. My default instance is accessed with `HLProgressWidget class >> #default`.
  1169. See `HLProgressHandler` for usage.!
  1170. !HLProgressWidget methodsFor: 'accessing'!
  1171. progressBars
  1172. ^ progressBars ifNil: [ progressBars := OrderedCollection new ]
  1173. ! !
  1174. !HLProgressWidget methodsFor: 'actions'!
  1175. addProgressBar: aProgressBar
  1176. self show.
  1177. self progressBars add: aProgressBar.
  1178. aProgressBar appendToJQuery: (self wrapper asJQuery find: '.dialog')
  1179. !
  1180. do: aBlock on: aCollection displaying: aString
  1181. | progressBar |
  1182. progressBar := HLProgressBarWidget new
  1183. parent: self;
  1184. label: aString;
  1185. workBlock: aBlock;
  1186. collection: aCollection;
  1187. yourself.
  1188. self addProgressBar: progressBar.
  1189. progressBar start
  1190. !
  1191. remove
  1192. self isVisible ifTrue: [
  1193. visible := false.
  1194. super remove ]
  1195. !
  1196. removeProgressBar: aProgressBar
  1197. self progressBars remove: aProgressBar ifAbsent: [].
  1198. aProgressBar wrapper asJQuery remove.
  1199. self progressBars ifEmpty: [ self remove ]
  1200. !
  1201. show
  1202. self isVisible ifFalse: [
  1203. visible := true.
  1204. self appendToJQuery: 'body' asJQuery ]
  1205. ! !
  1206. !HLProgressWidget methodsFor: 'rendering'!
  1207. renderButtonsOn: html
  1208. !
  1209. renderMainOn: html
  1210. self progressBars do: [ :each |
  1211. html with: each ]
  1212. ! !
  1213. !HLProgressWidget methodsFor: 'testing'!
  1214. isVisible
  1215. ^ visible ifNil: [ false ]
  1216. ! !
  1217. HLProgressWidget class instanceVariableNames: 'default'!
  1218. !HLProgressWidget class methodsFor: 'accessing'!
  1219. default
  1220. ^ default ifNil: [ default := self new ]
  1221. ! !
  1222. HLWidget subclass: #HLProgressBarWidget
  1223. instanceVariableNames: 'label parent workBlock collection bar'
  1224. package: 'Helios-Core'!
  1225. !HLProgressBarWidget commentStamp!
  1226. I am a widget used to display a progress bar while iterating over a collection.!
  1227. !HLProgressBarWidget methodsFor: 'accessing'!
  1228. collection
  1229. ^ collection
  1230. !
  1231. collection: aCollection
  1232. collection := aCollection
  1233. !
  1234. label
  1235. ^ label
  1236. !
  1237. label: aString
  1238. label := aString
  1239. !
  1240. parent
  1241. ^ parent
  1242. !
  1243. parent: aProgress
  1244. parent := aProgress
  1245. !
  1246. workBlock
  1247. ^ workBlock
  1248. !
  1249. workBlock: aBlock
  1250. workBlock := aBlock
  1251. ! !
  1252. !HLProgressBarWidget methodsFor: 'actions'!
  1253. evaluateAt: anInteger
  1254. self updateProgress: (anInteger / self collection size) * 100.
  1255. anInteger <= self collection size
  1256. ifTrue: [
  1257. [
  1258. self workBlock value: (self collection at: anInteger).
  1259. self evaluateAt: anInteger + 1 ] valueWithTimeout: 10 ]
  1260. ifFalse: [ [ self remove ] valueWithTimeout: 500 ]
  1261. !
  1262. remove
  1263. self parent removeProgressBar: self
  1264. !
  1265. start
  1266. "Make sure the UI has some time to update itself between each iteration"
  1267. self evaluateAt: 1
  1268. !
  1269. updateProgress: anInteger
  1270. bar asJQuery css: 'width' put: anInteger asString, '%'
  1271. ! !
  1272. !HLProgressBarWidget methodsFor: 'rendering'!
  1273. renderContentOn: html
  1274. html span with: self label.
  1275. html div
  1276. class: 'progress';
  1277. with: [
  1278. bar := html div
  1279. class: 'bar';
  1280. style: 'width: 0%' ]
  1281. ! !
  1282. HLProgressBarWidget class instanceVariableNames: 'default'!
  1283. !HLProgressBarWidget class methodsFor: 'accessing'!
  1284. default
  1285. ^ default ifNil: [ default := self new ]
  1286. ! !
  1287. HLWidget subclass: #HLSUnit
  1288. instanceVariableNames: ''
  1289. package: 'Helios-Core'!
  1290. !HLSUnit class methodsFor: 'accessing'!
  1291. tabClass
  1292. ^ 'sunit'
  1293. !
  1294. tabLabel
  1295. ^ 'SUnit'
  1296. !
  1297. tabPriority
  1298. ^ 1000
  1299. ! !
  1300. !HLSUnit class methodsFor: 'testing'!
  1301. canBeOpenAsTab
  1302. ^ true
  1303. ! !