ide.st 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. Widget subclass: #TabManager
  2. instanceVariableNames: 'selectedTab tabs opened'
  3. category: 'IDE'!
  4. TabManager class instanceVariableNames: 'current'!
  5. !TabManager class methodsFor: 'instance creation'!
  6. current
  7. ^current ifNil: [current := super new]
  8. !
  9. new
  10. self shouldNotImplement
  11. ! !
  12. !TabManager methodsFor: 'initialization'!
  13. initialize
  14. super initialize.
  15. opened := true.
  16. 'body' asJQuery
  17. append: self;
  18. append: [:html | html div id: 'jtalk'];
  19. addClass: 'jtalkBody'.
  20. self
  21. addTab: Transcript current;
  22. addTab: Workspace new.
  23. self selectTab: self tabs last.
  24. self
  25. onResize: [self updateBodyMargin];
  26. updatePositionOnWindowResize
  27. ! !
  28. !TabManager methodsFor: 'accessing'!
  29. tabs
  30. ^tabs ifNil: [tabs := Array new]
  31. ! !
  32. !TabManager methodsFor: 'adding/Removing'!
  33. addTab: aWidget
  34. self tabs add: aWidget.
  35. '#jtalk' asJQuery append: aWidget.
  36. aWidget root asJQuery hide
  37. !
  38. removeTab: aWidget
  39. self tabs remove: aWidget.
  40. self update
  41. ! !
  42. !TabManager methodsFor: 'actions'!
  43. updateBodyMargin
  44. self setBodyMargin: '#jtalk' asJQuery height + 27
  45. !
  46. removeBodyMargin
  47. self setBodyMargin: 0
  48. !
  49. setBodyMargin: anInteger
  50. '.jtalkBody' asJQuery cssAt: 'margin-bottom' put: anInteger asString, 'px'
  51. !
  52. onResize: aBlock
  53. {'jQuery(''#jtalk'').resizable({handles: ''n'', stop: aBlock, minHeight: 230});'}
  54. !
  55. updatePositionOnWindowResize
  56. {'jQuery(window).resize(function(e){jQuery(''#jtalk'').css(''top'', '''''').css(''bottom'', ''27px'')});'}
  57. !
  58. open
  59. opened ifFalse: [
  60. self root asJQuery show.
  61. 'body' asJQuery addClass: 'jtalkBody'.
  62. '#jtalk' asJQuery show.
  63. self updateBodyMargin.
  64. selectedTab root asJQuery show.
  65. opened := true]
  66. !
  67. close
  68. opened ifTrue: [
  69. self root asJQuery hide.
  70. '#jtalk' asJQuery hide.
  71. self removeBodyMargin.
  72. 'body' asJQuery removeClass: 'jtalkBody'.
  73. opened := false]
  74. !
  75. newBrowserTab
  76. Browser open
  77. !
  78. selectTab: aWidget
  79. self open.
  80. selectedTab := aWidget.
  81. self tabs do: [:each |
  82. each root asJQuery hide].
  83. aWidget root asJQuery show.
  84. self update
  85. !
  86. closeTab: aWidget
  87. self removeTab: aWidget.
  88. self selectTab: self tabs last.
  89. aWidget root asJQuery remove.
  90. self update
  91. ! !
  92. !TabManager methodsFor: 'rendering'!
  93. renderOn: html
  94. html ul
  95. id: 'jtalkTabs';
  96. with: [
  97. html li
  98. class: 'closeAll';
  99. with: 'x';
  100. onClick: [self close].
  101. self tabs do: [:each |
  102. self renderTabFor: each on: html].
  103. html li
  104. class: 'newtab';
  105. with: ' + ';
  106. onClick: [self newBrowserTab]]
  107. !
  108. renderTabFor: aWidget on: html
  109. | li |
  110. li := html li.
  111. selectedTab = aWidget ifTrue: [
  112. li class: 'selected'].
  113. li with: [
  114. html span
  115. with: aWidget label;
  116. onClick: [self selectTab: aWidget].
  117. aWidget canBeClosed ifTrue: [
  118. html span
  119. class: 'close';
  120. with: 'x';
  121. onClick: [self closeTab: aWidget]]]
  122. ! !
  123. Widget subclass: #TabWidget
  124. instanceVariableNames: ''
  125. category: 'IDE'!
  126. !TabWidget class methodsFor: 'instance creation'!
  127. open
  128. ^self new open
  129. ! !
  130. !TabWidget methodsFor: 'accessing'!
  131. label
  132. self subclassResponsibility
  133. ! !
  134. !TabWidget methodsFor: 'actions'!
  135. open
  136. TabManager current
  137. addTab: self;
  138. selectTab: self
  139. ! !
  140. !TabWidget methodsFor: 'testing'!
  141. canBeClosed
  142. ^false
  143. ! !
  144. !TabWidget methodsFor: 'rendering'!
  145. renderOn: html
  146. html root
  147. class: 'jtalkTool';
  148. with: [
  149. html div
  150. class: 'jt_box';
  151. with: [self renderBoxOn: html].
  152. html div
  153. class: 'jt_buttons';
  154. with: [self renderButtonsOn: html]]
  155. !
  156. renderBoxOn: html
  157. !
  158. renderButtonsOn: html
  159. ! !
  160. TabWidget subclass: #Workspace
  161. instanceVariableNames: 'textarea'
  162. category: 'IDE'!
  163. !Workspace methodsFor: 'accessing'!
  164. label
  165. ^'[Workspace]'
  166. !
  167. selection
  168. ^{'return document.selection'}
  169. !
  170. selectionStart
  171. ^{'return jQuery(''.jt_workspace'')[0].selectionStart'}
  172. !
  173. selectionEnd
  174. ^{'return jQuery(''.jt_workspace'')[0].selectionEnd'}
  175. !
  176. selectionStart: anInteger
  177. {'jQuery(''.jt_workspace'')[0].selectionStart = anInteger'}
  178. !
  179. selectionEnd: anInteger
  180. {'jQuery(''.jt_workspace'')[0].selectionEnd = anInteger'}
  181. !
  182. currentLine
  183. | lines startLine endLine|
  184. lines := textarea asJQuery val tokenize: String cr.
  185. startLine := endLine := 0.
  186. lines do: [:each |
  187. endLine := startLine + each size.
  188. startLine := endLine + 1.
  189. endLine >= self selectionStart ifTrue: [
  190. self selectionEnd: endLine.
  191. ^each]]
  192. ! !
  193. !Workspace methodsFor: 'actions'!
  194. handleKeyDown: anEvent
  195. ^{'if(anEvent.ctrlKey) {
  196. if(anEvent.keyCode === 68) { //ctrl+p
  197. self._printIt();
  198. return false;
  199. }
  200. if(anEvent.keyCode === 80) { //ctrl+d
  201. self._doIt();
  202. return false;
  203. }
  204. }'}
  205. !
  206. clearWorkspace
  207. textarea asJQuery val: ''
  208. !
  209. doIt
  210. self printIt
  211. !
  212. printIt
  213. | selection |
  214. textarea asJQuery focus.
  215. self selectionStart = self selectionEnd
  216. ifTrue: [selection := self currentLine]
  217. ifFalse: [
  218. selection := textarea asJQuery val copyFrom: self selectionStart + 1 to: self selectionEnd + 1].
  219. self print: (self eval: selection) printString
  220. !
  221. print: aString
  222. | start |
  223. start := self selectionEnd.
  224. textarea asJQuery val: (
  225. (textarea asJQuery val copyFrom: 1 to: start),
  226. ' ', aString, ' ',
  227. (textarea asJQuery val copyFrom: start + 1 to: textarea asJQuery val size)).
  228. self selectionStart: start.
  229. self selectionEnd: start + aString size + 2
  230. !
  231. eval: aString
  232. ^Compiler new loadExpression: aString
  233. ! !
  234. !Workspace methodsFor: 'rendering'!
  235. renderBoxOn: html
  236. textarea := html textarea.
  237. textarea asJQuery call: 'tabby'.
  238. textarea onKeyDown: [:e | self handleKeyDown: e].
  239. textarea
  240. class: 'jt_workspace';
  241. at: 'spellcheck' put: 'false'
  242. !
  243. renderButtonsOn: html
  244. html button
  245. with: 'DoIt';
  246. title: 'ctrl+d';
  247. onClick: [self doIt].
  248. html button
  249. with: 'PrintIt';
  250. title: 'ctrl+p';
  251. onClick: [self printIt].
  252. html button
  253. with: 'Clear workspace';
  254. onClick: [self clearWorkspace]
  255. ! !
  256. TabWidget subclass: #Transcript
  257. instanceVariableNames: 'textarea'
  258. category: 'IDE'!
  259. Transcript class instanceVariableNames: 'current'!
  260. !Transcript class methodsFor: 'instance creation'!
  261. open
  262. self current open
  263. !
  264. new
  265. self shouldNotImplement
  266. !
  267. current
  268. ^current ifNil: [current := super new]
  269. ! !
  270. !Transcript class methodsFor: 'printing'!
  271. show: anObject
  272. self current show: anObject
  273. !
  274. cr
  275. self current show: String cr
  276. !
  277. clear
  278. self current clear
  279. ! !
  280. !Transcript methodsFor: 'accessing'!
  281. label
  282. ^'[Transcript]'
  283. ! !
  284. !Transcript methodsFor: 'actions'!
  285. show: anObject
  286. textarea asJQuery val: textarea asJQuery val, anObject asString.
  287. !
  288. cr
  289. textarea asJQuery val: textarea asJQuery val, String cr.
  290. !
  291. clear
  292. textarea asJQuery val: ''
  293. ! !
  294. !Transcript methodsFor: 'rendering'!
  295. renderBoxOn: html
  296. textarea := html textarea.
  297. textarea asJQuery call: 'tabby'.
  298. textarea
  299. class: 'jt_transcript';
  300. at: 'spellcheck' put: 'false'
  301. !
  302. renderButtonsOn: html
  303. html button
  304. with: 'Clear transcript';
  305. onClick: [self clear]
  306. ! !
  307. TabWidget subclass: #Browser
  308. instanceVariableNames: 'selectedCategory selectedClass selectedProtocol selectedMethod categoriesList classesList protocolsList methodsList sourceTextarea tabsList selectedTab saveButton classButtons methodButtons unsavedChanges'
  309. category: 'IDE'!
  310. !Browser class methodsFor: 'convenience'!
  311. openOn: aClass
  312. self new
  313. open;
  314. selectCategory: aClass category;
  315. selectClass: aClass
  316. !
  317. open
  318. self new open
  319. ! !
  320. !Browser methodsFor: 'initialization'!
  321. initialize
  322. super initialize.
  323. selectedTab := #instance.
  324. unsavedChanges := false
  325. ! !
  326. !Browser methodsFor: 'accessing'!
  327. label
  328. ^selectedClass
  329. ifNil: ['Browser (nil)']
  330. ifNotNil: [selectedClass name]
  331. !
  332. categories
  333. | categories |
  334. categories := Array new.
  335. Smalltalk current classes do: [:each |
  336. (categories includes: each category) ifFalse: [
  337. categories add: each category]].
  338. ^categories sort
  339. !
  340. classes
  341. ^(Smalltalk current classes
  342. select: [:each | each category = selectedCategory])
  343. sort: [:a :b | a name > b name]
  344. !
  345. protocols
  346. | klass protocols |
  347. protocols := Array new.
  348. selectedClass ifNotNil: [
  349. selectedTab = #comment ifTrue: [^#()].
  350. klass := selectedTab = #instance
  351. ifTrue: [selectedClass]
  352. ifFalse: [selectedClass class].
  353. klass methodDictionary isEmpty ifTrue: [
  354. protocols add: 'not yet classified'].
  355. klass methodDictionary do: [:each |
  356. (protocols includes: each category) ifFalse: [
  357. protocols add: each category]]].
  358. ^protocols sort
  359. !
  360. methods
  361. | klass |
  362. selectedTab = #comment ifTrue: [^#()].
  363. selectedClass ifNotNil: [
  364. klass := selectedTab = #instance
  365. ifTrue: [selectedClass]
  366. ifFalse: [selectedClass class]].
  367. ^(selectedProtocol
  368. ifNil: [
  369. klass
  370. ifNil: [#()]
  371. ifNotNil: [klass methodDictionary values]]
  372. ifNotNil: [
  373. klass methodDictionary values select: [:each |
  374. each category = selectedProtocol]]) sort: [:a :b | a selector > b selector]
  375. !
  376. source
  377. selectedTab = #comment ifFalse: [
  378. ^(selectedProtocol notNil or: [selectedMethod notNil])
  379. ifFalse: [self declarationSource]
  380. ifTrue: [self methodSource]].
  381. ^selectedClass
  382. ifNil: ['']
  383. ifNotNil: [self classCommentSource]
  384. !
  385. methodSource
  386. ^selectedMethod
  387. ifNil: [self dummyMethodSource]
  388. ifNotNil: [selectedMethod source]
  389. !
  390. dummyMethodSource
  391. ^'messageSelectorAndArgumentNames
  392. "comment stating purpose of message"
  393. | temporary variable names |
  394. statements'
  395. !
  396. declarationSource
  397. ^selectedTab = #instance
  398. ifTrue: [self classDeclarationSource]
  399. ifFalse: [self metaclassDeclarationSource]
  400. !
  401. classDeclarationSource
  402. | stream |
  403. stream := '' writeStream.
  404. selectedClass ifNotNil: [
  405. stream
  406. nextPutAll: selectedClass superclass asString;
  407. nextPutAll: ' subclass: #';
  408. nextPutAll: selectedClass name;
  409. nextPutAll: String cr, String tab;
  410. nextPutAll: 'instanceVariableNames: '''.
  411. selectedClass instanceVariableNames
  412. do: [:each | stream nextPutAll: each]
  413. separatedBy: [stream nextPutAll: ' '].
  414. stream
  415. nextPutAll: '''', String cr, String tab;
  416. nextPutAll: 'category: ''';
  417. nextPutAll: selectedClass category;
  418. nextPutAll: ''''].
  419. ^stream contents
  420. !
  421. metaclassDeclarationSource
  422. | stream |
  423. stream := '' writeStream.
  424. selectedClass ifNotNil: [
  425. stream
  426. nextPutAll: selectedClass asString;
  427. nextPutAll: ' class ';
  428. nextPutAll: 'instanceVariableNames: '''.
  429. selectedClass class instanceVariableNames
  430. do: [:each | stream nextPutAll: each]
  431. separatedBy: [stream nextPutAll: ' '].
  432. stream nextPutAll: ''''].
  433. ^stream contents
  434. !
  435. classCommentSource
  436. ^selectedClass comment
  437. ! !
  438. !Browser methodsFor: 'actions'!
  439. enableSaveButton
  440. saveButton removeAt: 'disabled'.
  441. unsavedChanges := true
  442. !
  443. disableSaveButton
  444. saveButton ifNotNil: [
  445. saveButton at: 'disabled' put: true].
  446. unsavedChanges := false
  447. !
  448. hideClassButtons
  449. classButtons asJQuery hide
  450. !
  451. showClassButtons
  452. classButtons asJQuery show
  453. !
  454. hideMethodButtons
  455. methodButtons asJQuery hide
  456. !
  457. showMethodButtons
  458. methodButtons asJQuery show
  459. !
  460. compile
  461. self disableSaveButton.
  462. selectedTab = #comment ifTrue: [
  463. selectedClass ifNotNil: [
  464. self compileClassComment]].
  465. (selectedProtocol notNil or: [selectedMethod notNil])
  466. ifFalse: [self compileDefinition]
  467. ifTrue: [self compileMethodDefinition]
  468. !
  469. compileClassComment
  470. selectedClass comment: sourceTextarea asJQuery val
  471. !
  472. compileMethodDefinition
  473. selectedTab = #instance
  474. ifTrue: [self compileMethodDefinitionFor: selectedClass]
  475. ifFalse: [self compileMethodDefinitionFor: selectedClass class]
  476. !
  477. compileMethodDefinitionFor: aClass
  478. | method |
  479. method := Compiler new load: sourceTextarea asJQuery val forClass: selectedClass.
  480. method category: selectedProtocol.
  481. aClass addCompiledMethod: method.
  482. self updateMethodsList.
  483. self selectMethod: method
  484. !
  485. compileDefinition
  486. | newClass |
  487. newClass := Compiler new loadExpression: sourceTextarea asJQuery val.
  488. self
  489. updateCategoriesList;
  490. updateClassesList
  491. !
  492. cancelChanges
  493. ^unsavedChanges
  494. ifTrue: [self confirm: 'Cancel changes?']
  495. ifFalse: [true]
  496. !
  497. removeClass
  498. (self confirm: 'Do you really want to remove ', selectedClass name, '?')
  499. ifTrue: [
  500. Smalltalk current basicDelete: selectedClass name.
  501. self selectClass: nil]
  502. !
  503. removeMethod
  504. self cancelChanges ifTrue: [
  505. (self confirm: 'Do you really want to remove #', selectedMethod selector, '?')
  506. ifTrue: [
  507. selectedClass removeCompiledMethod: selectedMethod.
  508. self selectMethod: nil]]
  509. !
  510. setMethodProtocol: aString
  511. self cancelChanges ifTrue: [
  512. selectedMethod category: aString.
  513. selectedProtocol := aString.
  514. selectedMethod := selectedMethod.
  515. self
  516. updateProtocolsList;
  517. updateMethodsList;
  518. updateSourceAndButtons]
  519. !
  520. addNewProtocol
  521. | newProtocol |
  522. newProtocol := self prompt: 'New method protocol'.
  523. newProtocol notEmpty ifTrue: [
  524. self setMethodProtocol: newProtocol]
  525. !
  526. selectCategory: aCategory
  527. self cancelChanges ifTrue: [
  528. selectedCategory := aCategory.
  529. selectedClass := selectedProtocol := selectedMethod := nil.
  530. self
  531. updateCategoriesList;
  532. updateClassesList;
  533. updateProtocolsList;
  534. updateMethodsList;
  535. updateSourceAndButtons]
  536. !
  537. selectClass: aClass
  538. self cancelChanges ifTrue: [
  539. selectedClass := aClass.
  540. selectedProtocol := selectedMethod := nil.
  541. self
  542. updateClassesList;
  543. updateProtocolsList;
  544. updateMethodsList;
  545. updateSourceAndButtons]
  546. !
  547. selectProtocol: aString
  548. self cancelChanges ifTrue: [
  549. selectedProtocol := aString.
  550. selectedMethod := nil.
  551. self
  552. updateProtocolsList;
  553. updateMethodsList;
  554. updateSourceAndButtons]
  555. !
  556. selectMethod: aMethod
  557. self cancelChanges ifTrue: [
  558. selectedMethod := aMethod.
  559. self
  560. updateProtocolsList;
  561. updateMethodsList;
  562. updateSourceAndButtons]
  563. !
  564. selectTab: aString
  565. self cancelChanges ifTrue: [
  566. selectedTab := aString.
  567. self selectProtocol: nil.
  568. self updateTabsList]
  569. ! !
  570. !Browser methodsFor: 'rendering'!
  571. renderBoxOn: html
  572. self
  573. renderTopPanelOn: html;
  574. renderTabsOn: html;
  575. renderBottomPanelOn: html
  576. !
  577. renderTopPanelOn: html
  578. html div
  579. class: 'top';
  580. with: [
  581. categoriesList := html ul class: 'jt_column categories'.
  582. classesList := html ul class: 'jt_column classes'.
  583. protocolsList := html ul class: 'jt_column protocols'.
  584. methodsList := html ul class: 'jt_column methods'.
  585. self
  586. updateCategoriesList;
  587. updateClassesList;
  588. updateProtocolsList;
  589. updateMethodsList.
  590. html div class: 'jt_clear']
  591. !
  592. renderTabsOn: html
  593. tabsList := html ul class: 'jt_tabs'.
  594. self updateTabsList.
  595. !
  596. renderBottomPanelOn: html
  597. html div
  598. class: 'jt_sourceCode';
  599. with: [
  600. sourceTextarea := html textarea
  601. onKeyPress: [self enableSaveButton];
  602. class: 'source';
  603. at: 'spellcheck' put: 'false'.
  604. sourceTextarea asJQuery call: 'tabby']
  605. !
  606. renderButtonsOn: html
  607. saveButton := html button.
  608. saveButton
  609. with: 'Save';
  610. onClick: [self compile].
  611. methodButtons := html span.
  612. classButtons := html span.
  613. self updateSourceAndButtons
  614. ! !
  615. !Browser methodsFor: 'updating'!
  616. updateCategoriesList
  617. categoriesList contents: [:html |
  618. self categories do: [:each || li |
  619. li := html li.
  620. selectedCategory = each ifTrue: [
  621. li class: 'selected'].
  622. li
  623. with: each;
  624. onClick: [self selectCategory: each]]]
  625. !
  626. updateClassesList
  627. TabManager current update.
  628. classesList contents: [:html |
  629. self classes do: [:each || li |
  630. li := html li.
  631. selectedClass = each ifTrue: [
  632. li class: 'selected'].
  633. li
  634. with: each name;
  635. onClick: [self selectClass: each]]]
  636. !
  637. updateProtocolsList
  638. protocolsList contents: [:html |
  639. self protocols do: [:each || li |
  640. li := html li.
  641. selectedProtocol = each ifTrue: [
  642. li class: 'selected'].
  643. li
  644. with: each;
  645. onClick: [self selectProtocol: each]]]
  646. !
  647. updateMethodsList
  648. methodsList contents: [:html |
  649. self methods do: [:each || li |
  650. li := html li.
  651. selectedMethod = each ifTrue: [
  652. li class: 'selected'].
  653. li
  654. with: each selector;
  655. onClick: [self selectMethod: each]]]
  656. !
  657. updateTabsList
  658. tabsList contents: [:html || li |
  659. li := html li.
  660. selectedTab = #instance ifTrue: [li class: 'selected'].
  661. li
  662. with: 'Instance';
  663. onClick: [self selectTab: #instance].
  664. li := html li.
  665. selectedTab = #class ifTrue: [li class: 'selected'].
  666. li
  667. with: 'Class';
  668. onClick: [self selectTab: #class].
  669. li := html li.
  670. selectedTab = #comment ifTrue: [li class: 'selected'].
  671. li
  672. with: 'Comment';
  673. onClick: [self selectTab: #comment]]
  674. !
  675. updateSourceAndButtons
  676. self disableSaveButton.
  677. classButtons contents: [:html |
  678. html button
  679. with: 'Remove class';
  680. onClick: [self removeClass]].
  681. methodButtons contents: [:html |
  682. html button
  683. with: 'Remove method';
  684. onClick: [self removeMethod].
  685. html select with: [
  686. html option
  687. with: 'Method protocol';
  688. at: 'disabled' put: 'disabled'.
  689. html option
  690. class: 'important';
  691. with: 'New...';
  692. onClick: [self addNewProtocol].
  693. self protocols do: [:each |
  694. html option
  695. with: each;
  696. onClick: [self setMethodProtocol: each]]]].
  697. selectedMethod
  698. ifNil: [
  699. self hideMethodButtons.
  700. selectedClass
  701. ifNil: [self hideClassButtons]
  702. ifNotNil: [self showClassButtons]]
  703. ifNotNil: [
  704. self hideClassButtons.
  705. self showMethodButtons].
  706. sourceTextarea asJQuery val: self source
  707. ! !
  708. !Browser methodsFor: 'testing'!
  709. canBeClosed
  710. ^true
  711. ! !