Moka-Views.st 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. Smalltalk current createPackage: 'Moka-Views'!
  2. MKSingleAspectView subclass: #MKButtonView
  3. instanceVariableNames: 'default label icon'
  4. package: 'Moka-Views'!
  5. !MKButtonView commentStamp!
  6. I am a push button view. My default controller is `MKButtonController`.
  7. My controller must answer to `#onPressed`.
  8. ## API
  9. - Instances can be set a `default` button
  10. - Use `#label:` to set the label string!
  11. !MKButtonView methodsFor: 'accessing'!
  12. cssClass
  13. ^ String streamContents: [ :stream |
  14. stream << super cssClass << ' mk_button'.
  15. self isDefault
  16. ifTrue: [ stream << ' default' ] ]
  17. !
  18. default
  19. ^ default
  20. !
  21. default: aBoolean
  22. default := aBoolean
  23. !
  24. icon
  25. ^ icon
  26. !
  27. icon: aString
  28. icon := aString
  29. !
  30. label
  31. ^ label ifNil: [ self defaultLabel ]
  32. !
  33. label: aString
  34. label := aString
  35. !
  36. tag
  37. ^ 'button'
  38. ! !
  39. !MKButtonView methodsFor: 'defaults'!
  40. defaultControllerClass
  41. ^ MKButtonController
  42. !
  43. defaultLabel
  44. ^ 'OK'
  45. !
  46. defaultLayout
  47. ^ super defaultLayout
  48. width: 80;
  49. height: 24;
  50. yourself
  51. ! !
  52. !MKButtonView methodsFor: 'rendering'!
  53. renderContentOn: html
  54. self hasIcon ifTrue: [
  55. html img
  56. class: 'mk_icon';
  57. src: self icon ].
  58. html with: self label
  59. ! !
  60. !MKButtonView methodsFor: 'testing'!
  61. hasIcon
  62. ^ icon notNil
  63. !
  64. isDefault
  65. ^ self default ifNil: [ false ]
  66. ! !
  67. MKSingleAspectView subclass: #MKCheckboxView
  68. instanceVariableNames: 'id'
  69. package: 'Moka-Views'!
  70. !MKCheckboxView commentStamp!
  71. I am a checkbox view. My default controller is `MKCheckboxController`.
  72. My controller must answer to `#onToggled:`.
  73. ##API
  74. - If no `aspect` is provided, the ckeckbox state will always be off.
  75. - use `#label:` to set the label string.!
  76. !MKCheckboxView methodsFor: 'accessing'!
  77. checked
  78. ^ self aspectValue ifNil: [ false ]
  79. !
  80. cssClass
  81. ^ super cssClass, ' mk_checkbox'
  82. !
  83. id
  84. ^ id ifNil: [ id := 1000000 atRandom asString ]
  85. ! !
  86. !MKCheckboxView methodsFor: 'defaults'!
  87. defaultControllerClass
  88. ^ MKCheckboxController
  89. !
  90. defaultLayout
  91. ^ super defaultLayout
  92. width: 16;
  93. height: 16;
  94. yourself
  95. ! !
  96. !MKCheckboxView methodsFor: 'events'!
  97. update
  98. self checked
  99. ifTrue: [ root asJQuery addClass: 'checked' ]
  100. ifFalse: [ root asJQuery removeClass: 'checked' ]
  101. ! !
  102. !MKCheckboxView methodsFor: 'rendering'!
  103. renderContentOn: html
  104. self checked ifTrue: [
  105. root asJQuery addClass: 'checked' ].
  106. root at: 'tabindex' put: '0'
  107. ! !
  108. MKCheckboxView subclass: #MKSwitchView
  109. instanceVariableNames: ''
  110. package: 'Moka-Views'!
  111. !MKSwitchView commentStamp!
  112. I am a switch view, similar to a `MKCheckboxView` but displayed as a switch.
  113. My default controller is `MKCheckboxController`.!
  114. !MKSwitchView methodsFor: 'accessing'!
  115. checkboxCssClass
  116. ^ 'mk_switch'
  117. !
  118. cssClass
  119. ^ super cssClass, ' mk_switch'
  120. ! !
  121. !MKSwitchView methodsFor: 'defaults'!
  122. defaultLayout
  123. ^ super defaultLayout
  124. width: 48;
  125. height: 20;
  126. yourself
  127. ! !
  128. MKLayoutView subclass: #MKImageView
  129. instanceVariableNames: 'imagePath alternativeContents'
  130. package: 'Moka-Views'!
  131. !MKImageView commentStamp!
  132. I display an image.
  133. ##API
  134. Create instances using `MKImageView class>>imagePath:`.!
  135. !MKImageView methodsFor: 'accessing'!
  136. alternativeContents
  137. ^ alternativeContents ifNil: [ self imagePath ]
  138. !
  139. alternativeContents: aString
  140. alternativeContents := aString
  141. !
  142. imagePath
  143. ^ imagePath ifNil: [ '' ]
  144. !
  145. imagePath: aString
  146. imagePath := aString
  147. !
  148. tag
  149. ^ 'img'
  150. ! !
  151. !MKImageView methodsFor: 'rendering'!
  152. renderContentOn: html
  153. root
  154. src: self imagePath;
  155. alt: self alternativeContents
  156. ! !
  157. !MKImageView class methodsFor: 'instance creation'!
  158. imagePath: aString
  159. ^ self new
  160. imagePath: aString;
  161. yourself
  162. ! !
  163. MKSingleAspectView subclass: #MKLabelView
  164. instanceVariableNames: ''
  165. package: 'Moka-Views'!
  166. !MKLabelView commentStamp!
  167. I am an label view. I display a `String`.!
  168. !MKLabelView methodsFor: 'accessing'!
  169. cssClass
  170. ^ super cssClass, ' mk_label'
  171. ! !
  172. !MKLabelView methodsFor: 'defaults'!
  173. defaultControllerClass
  174. ^ super defaultControllerClass
  175. !
  176. defaultLayout
  177. ^ MKLabelLayout new
  178. height: 24;
  179. top: 0;
  180. left:0;
  181. right: 0;
  182. textAlign: 'left';
  183. yourself
  184. ! !
  185. !MKLabelView methodsFor: 'layout'!
  186. textAlign: aString
  187. self layout textAlign: aString
  188. ! !
  189. !MKLabelView methodsFor: 'rendering'!
  190. renderContentOn: html
  191. html with: self aspectValue
  192. ! !
  193. MKLabelView subclass: #MKHeadingView
  194. instanceVariableNames: 'level'
  195. package: 'Moka-Views'!
  196. !MKHeadingView commentStamp!
  197. I display a heading, with a `level` from 1 to 6.!
  198. !MKHeadingView methodsFor: 'accessing'!
  199. cssClass
  200. ^ String streamContents: [ :stream |
  201. stream
  202. << super cssClass
  203. << ' mk_heading level'
  204. << self level asString ]
  205. !
  206. level
  207. ^ level ifNil: [ 1 ]
  208. !
  209. level: aNumber
  210. level := aNumber
  211. !
  212. tag
  213. ^ 'h', self level asString
  214. ! !
  215. MKLayoutView subclass: #MKOverlayView
  216. instanceVariableNames: 'childView'
  217. package: 'Moka-Views'!
  218. !MKOverlayView commentStamp!
  219. I display an transparent overlay, typically over other views, except my `childView`.
  220. ## API
  221. Create instances using the class-side `childView:` method.!
  222. !MKOverlayView methodsFor: 'accessing'!
  223. childView
  224. ^ childView
  225. !
  226. childView: aView
  227. childView := aView
  228. !
  229. children
  230. ^ { self childView }
  231. !
  232. cssClass
  233. ^ super cssClass, ' mk_overlay'
  234. ! !
  235. !MKOverlayView methodsFor: 'actions'!
  236. remove
  237. super remove.
  238. self childView remove
  239. ! !
  240. !MKOverlayView methodsFor: 'defaults'!
  241. defaultControllerClass
  242. ^ MKOverlayController
  243. !
  244. renderContentOn: html
  245. "Left empty on purpose.
  246. No Content is rendered, as the childView is actually displayed separately"
  247. ! !
  248. !MKOverlayView class methodsFor: 'instance creation'!
  249. childView: aView
  250. ^ self new
  251. childView: aView;
  252. yourself
  253. ! !
  254. MKLayoutView subclass: #MKPaneView
  255. instanceVariableNames: 'views'
  256. package: 'Moka-Views'!
  257. !MKPaneView commentStamp!
  258. I am a view containing other views.
  259. ## API
  260. Use `#addView:` to add a view to the pane.!
  261. !MKPaneView methodsFor: 'accessing'!
  262. children
  263. ^ self views
  264. !
  265. cssClass
  266. ^ super cssClass, ' mk_pane'
  267. !
  268. views
  269. ^ views ifNil: [ views := OrderedCollection new ]
  270. ! !
  271. !MKPaneView methodsFor: 'adding'!
  272. addView: aView
  273. self views add: aView
  274. ! !
  275. !MKPaneView methodsFor: 'defaults'!
  276. defaultLayout
  277. ^ MKPaneLayout new
  278. left: 0;
  279. top: 0;
  280. right: 0;
  281. bottom: 0;
  282. yourself
  283. ! !
  284. !MKPaneView methodsFor: 'layout'!
  285. borderBottom: aNumber
  286. self layout borderBottom: aNumber
  287. !
  288. borderLeft: aNumber
  289. self layout borderLeft: aNumber
  290. !
  291. borderRight: aNumber
  292. self layout borderRight: aNumber
  293. !
  294. borderTop: aNumber
  295. self layout borderTop: aNumber
  296. ! !
  297. !MKPaneView methodsFor: 'rendering'!
  298. renderContentOn: html
  299. self views do: [ :each |
  300. html with: each ]
  301. ! !
  302. MKPaneView subclass: #MKPanelView
  303. instanceVariableNames: ''
  304. package: 'Moka-Views'!
  305. !MKPanelView commentStamp!
  306. I am similar to a `MKPaneView` but I am scrollable and display a light background.!
  307. !MKPanelView methodsFor: 'accessing'!
  308. cssClass
  309. ^ super cssClass, ' mk_panel'
  310. ! !
  311. MKAspectsView subclass: #MKSelectionView
  312. instanceVariableNames: 'selectionAspect collectionAspect displayBlock iconBlock'
  313. package: 'Moka-Views'!
  314. !MKSelectionView commentStamp!
  315. I an abstract selection view of a list of elements.
  316. ## API
  317. Rendering can be customized with `#displayBlock:` and `#iconBlock:`. Both take the item of the list as argument and answer a string.!
  318. !MKSelectionView methodsFor: 'accessing'!
  319. collection
  320. ^ self valueForAspect: self collectionAspect
  321. !
  322. collectionAspect
  323. ^ collectionAspect
  324. !
  325. collectionAspect: aSelector
  326. collectionAspect := aSelector
  327. !
  328. displayBlock
  329. ^ displayBlock ifNil: [ self defaultDisplayBlock ]
  330. !
  331. displayBlock: aBlock
  332. displayBlock := aBlock
  333. !
  334. iconBlock
  335. ^ iconBlock
  336. !
  337. iconBlock: aBlock
  338. iconBlock := aBlock
  339. !
  340. selectedItem
  341. ^ self valueForAspect: self selectionAspect
  342. !
  343. selectionAspect
  344. ^ selectionAspect
  345. !
  346. selectionAspect: aSelector
  347. selectionAspect := aSelector
  348. ! !
  349. !MKSelectionView methodsFor: 'defaults'!
  350. defaultDisplayBlock
  351. ^ [ :item | item asString ]
  352. ! !
  353. !MKSelectionView methodsFor: 'rendering'!
  354. renderIconFor: anObject on: html
  355. self hasIcon ifTrue: [
  356. html img
  357. class: 'mk_icon';
  358. src: (self iconBlock value: anObject) ]
  359. ! !
  360. !MKSelectionView methodsFor: 'testing'!
  361. hasIcon
  362. ^ self iconBlock notNil
  363. ! !
  364. !MKSelectionView class methodsFor: 'instance creation'!
  365. model: aModel collectionAspect: collectionSelector selectionAspect: selectionSelector
  366. ^ (self model: aModel)
  367. collectionAspect: collectionSelector;
  368. selectionAspect: selectionSelector;
  369. yourself
  370. ! !
  371. MKSelectionView subclass: #MKDropdownView
  372. instanceVariableNames: 'modalPaneView listView'
  373. package: 'Moka-Views'!
  374. !MKDropdownView commentStamp!
  375. I am a push button view. My default controller is `MKButtonController`.
  376. My controller must answer to `#onPressed`.
  377. ## API
  378. - Instances can be set a `default` button
  379. - Use `#label:` to set the label string!
  380. !MKDropdownView methodsFor: 'accessing'!
  381. cssClass
  382. ^ super cssClass, ' mk_dropdown'
  383. !
  384. selectedListItem
  385. ^ (root asJQuery find: ':selected') text
  386. !
  387. tag
  388. ^ 'button'
  389. !
  390. update: anAnnouncement
  391. ({self selectionAspect. self collectionAspect}
  392. includes: anAnnouncement aspect) ifTrue: [
  393. self update ]
  394. ! !
  395. !MKDropdownView methodsFor: 'actions'!
  396. popupList
  397. "Show a new list view inside a modal pane"
  398. self modalPaneView
  399. left: self domPosition x;
  400. top: self domPosition y;
  401. render.
  402. self listView focus
  403. ! !
  404. !MKDropdownView methodsFor: 'defaults'!
  405. defaultControllerClass
  406. ^ MKDropdownController
  407. !
  408. defaultLayout
  409. ^ super defaultLayout
  410. width: 120;
  411. height: 24;
  412. yourself
  413. ! !
  414. !MKDropdownView methodsFor: 'rendering'!
  415. renderContentOn: html
  416. html div class: 'mk_dropdown_arrows'.
  417. self renderIconFor: self selectedItem on: html.
  418. html with: (self displayBlock value: self selectedItem)
  419. ! !
  420. !MKDropdownView methodsFor: 'views'!
  421. listView
  422. ^ listView ifNil: [
  423. listView := (MKDropdownListView
  424. model: self model
  425. collectionAspect: self collectionAspect
  426. selectionAspect: self selectionAspect)
  427. width: self width;
  428. height: 'auto';
  429. displayBlock: self displayBlock;
  430. iconBlock: self iconBlock;
  431. yourself ]
  432. !
  433. modalPaneView
  434. ^ modalPaneView ifNil: [
  435. modalPaneView := (MKModalDecorator decorate: self listView)
  436. extraCssClass: 'mk_dropdown_pane';
  437. closeOnEnter: true;
  438. closeOnClick: true;
  439. yourself.
  440. modalPaneView
  441. on: MKViewRemoved
  442. send: #focus
  443. to: self.
  444. modalPaneView ]
  445. ! !
  446. MKSelectionView subclass: #MKListView
  447. instanceVariableNames: ''
  448. package: 'Moka-Views'!
  449. !MKListView commentStamp!
  450. I display a list of elements in a list control field.!
  451. !MKListView methodsFor: 'accessing'!
  452. activeItem
  453. ^ self findItemFor: (root asJQuery find: '.', self selectedCssClass)
  454. !
  455. cssClass
  456. ^ super cssClass, ' mk_list'
  457. !
  458. findItemFor: aListItem
  459. ^ aListItem asJQuery data at: 'item'
  460. !
  461. findListItemFor: anObject
  462. ^ (((root asJQuery find: 'li')
  463. filter: [ :thisArg | (thisArg asJQuery data: 'item') = anObject ] currySelf) eq: 0)
  464. !
  465. selectedCssClass
  466. ^ 'selected'
  467. !
  468. tag
  469. ^ 'ul'
  470. ! !
  471. !MKListView methodsFor: 'actions'!
  472. activateItem: anObject
  473. self activateListItem: (self findListItemFor: anObject)
  474. !
  475. activateListItem: aListItem
  476. | item |
  477. (aListItem get: 0) ifNil: [ ^ self ].
  478. aListItem parent children removeClass: self selectedCssClass.
  479. aListItem addClass: self selectedCssClass.
  480. self ensureVisible: aListItem
  481. ! !
  482. !MKListView methodsFor: 'defaults'!
  483. defaultControllerClass
  484. ^ MKListController
  485. ! !
  486. !MKListView methodsFor: 'private'!
  487. ensureVisible: aListItem
  488. "Move the scrollbar to show the active element"
  489. | parent position |
  490. (aListItem get: 0) ifNil: [ ^ self ].
  491. position := self positionOf: aListItem.
  492. parent := aListItem parent.
  493. aListItem position top < 0 ifTrue: [
  494. (parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem position top - 10) ].
  495. aListItem position top + aListItem height > parent height ifTrue: [
  496. (parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem height - (parent height - aListItem position top)) +10 ].
  497. self announce: (MKViewScroll view: self)
  498. !
  499. positionOf: aListItem
  500. "TODO: rewrite in smalltalk"
  501. <return aListItem.parent().children().get().indexOf(aListItem.get(0)) + 1>
  502. ! !
  503. !MKListView methodsFor: 'rendering'!
  504. renderContentOn: html
  505. self collection do: [ :each |
  506. self renderItem: each on: html ].
  507. "make the list focusable"
  508. root at: 'tabindex' put: '0'
  509. !
  510. renderItem: anObject on: html
  511. | li |
  512. li := html li.
  513. li asJQuery data: 'item' put: anObject.
  514. self selectedItem = anObject ifTrue: [
  515. li class: self selectedCssClass ].
  516. li with: [ self renderIconFor: anObject on: html ].
  517. li with: (self displayBlock value: anObject)
  518. ! !
  519. !MKListView methodsFor: 'updating'!
  520. update: anAnnouncement
  521. anAnnouncement aspect = self selectionAspect ifTrue: [
  522. self updateSelectedItem ].
  523. anAnnouncement aspect = self collectionAspect ifTrue: [
  524. self update ]
  525. !
  526. updateSelectedItem
  527. self activateItem: self selectedItem
  528. ! !
  529. !MKListView class methodsFor: 'instance creation'!
  530. model: aModel collectionAspect: collectionSelector selectionAspect: selectionSelector
  531. ^ (self model: aModel)
  532. collectionAspect: collectionSelector;
  533. selectionAspect: selectionSelector;
  534. yourself
  535. ! !
  536. MKListView subclass: #MKDropdownListView
  537. instanceVariableNames: ''
  538. package: 'Moka-Views'!
  539. !MKDropdownListView commentStamp!
  540. I am similar to a `MKListView`, but inside a `MKDropdownView`.!
  541. !MKDropdownListView methodsFor: 'accessing'!
  542. cssClass
  543. ^ super cssClass, ' mk_dropdown_list'
  544. !
  545. defaultControllerClass
  546. ^ MKDropdownListController
  547. ! !
  548. MKListView subclass: #MKSourceListView
  549. instanceVariableNames: ''
  550. package: 'Moka-Views'!
  551. !MKSourceListView commentStamp!
  552. I am similar to a `MKListView`, but displayed slightly differently, in a similar way as in the left-side the of Finder in OSX.!
  553. !MKSourceListView methodsFor: 'accessing'!
  554. cssClass
  555. ^ super cssClass, ' mk_sourcelist'
  556. ! !
  557. MKLayoutView subclass: #MKSplitView
  558. instanceVariableNames: 'firstView secondView splitter thickness minimumThickness'
  559. package: 'Moka-Views'!
  560. !MKSplitView commentStamp!
  561. I am the superclass of all split views. I arrange two child view with a splitter between them.
  562. ## API
  563. Create instances using the class-side method `firstView:secondView:`.!
  564. !MKSplitView methodsFor: 'accessing'!
  565. children
  566. ^ { self firstView. self secondView }
  567. !
  568. cssClass
  569. ^ super cssClass, ' mk_split_view'
  570. !
  571. firstView
  572. ^ firstView
  573. !
  574. firstView: aView
  575. firstView := MKDecorator decorate: aView
  576. !
  577. minimumThickness
  578. ^ minimumThickness ifNil: [ self defaultMinimumThickness ]
  579. !
  580. minimumThickness: aNumber
  581. minimumThickness := aNumber
  582. !
  583. secondView
  584. ^ secondView
  585. !
  586. secondView: aView
  587. secondView := MKDecorator decorate: aView
  588. !
  589. splitter
  590. "Answer the `splitter` TagBrush"
  591. ^ splitter
  592. !
  593. splitterCssClass
  594. ^ 'mk_splitter'
  595. !
  596. thickness
  597. ^ thickness ifNil: [ self defaultThickness ]
  598. !
  599. thickness: aNumber
  600. thickness := aNumber
  601. ! !
  602. !MKSplitView methodsFor: 'defaults'!
  603. defaultMinimumThickness
  604. ^ 50
  605. !
  606. defaultThickness
  607. ^ 300
  608. ! !
  609. !MKSplitView methodsFor: 'rendering'!
  610. renderContentOn: html
  611. html with: self firstView.
  612. splitter := html div class: self splitterCssClass.
  613. html with: self secondView.
  614. self controller placeSplitter: self thickness
  615. ! !
  616. !MKSplitView class methodsFor: 'instance creation'!
  617. firstView: aView secondView: anotherView
  618. ^ self new
  619. firstView: aView;
  620. secondView: anotherView;
  621. yourself
  622. ! !
  623. MKSplitView subclass: #MKHorizontalSplitView
  624. instanceVariableNames: ''
  625. package: 'Moka-Views'!
  626. !MKHorizontalSplitView commentStamp!
  627. I split my child views vertically.!
  628. !MKHorizontalSplitView methodsFor: 'accessing'!
  629. cssClass
  630. ^ super cssClass, ' horizontal'
  631. !
  632. leftThickness: aNumber
  633. self thickness: aNumber.
  634. self controller: MKLeftFixedHorizontalSplitController new
  635. !
  636. rightThickness: aNumber
  637. self thickness: aNumber.
  638. self controller: MKRightFixedHorizontalSplitController new
  639. !
  640. secondView: aView
  641. super secondView: aView.
  642. self secondView
  643. right: 0;
  644. left: 'auto'
  645. ! !
  646. !MKHorizontalSplitView methodsFor: 'defaults'!
  647. defaultControllerClass
  648. ^ MKLeftFixedHorizontalSplitController
  649. ! !
  650. !MKHorizontalSplitView methodsFor: 'private'!
  651. setupEventHandlers
  652. splitter asJQuery draggable: #{
  653. 'axis' -> 'x'.
  654. 'containment' -> splitter asJQuery parent.
  655. 'helper' -> 'clone'.
  656. 'cursor' -> 'ew-resize'.
  657. 'stop' -> [ self resized ].
  658. 'drag' -> [ :event :ui | self controller onResize: event helper: ui ] }
  659. ! !
  660. MKSplitView subclass: #MKVerticalSplitView
  661. instanceVariableNames: ''
  662. package: 'Moka-Views'!
  663. !MKVerticalSplitView commentStamp!
  664. I split my child views horizontally.!
  665. !MKVerticalSplitView methodsFor: 'accessing'!
  666. bottomThickness: aNumber
  667. self thickness: aNumber.
  668. self controller: MKBottomFixedVerticalSplitController new
  669. !
  670. cssClass
  671. ^ super cssClass, ' vertical'
  672. !
  673. secondView: aView
  674. super secondView: aView.
  675. self secondView
  676. bottom: 0;
  677. top: 'auto'
  678. !
  679. topThickness: aNumber
  680. self thickness: aNumber.
  681. self controller: MKTopFixedVerticalSplitController new
  682. ! !
  683. !MKVerticalSplitView methodsFor: 'defaults'!
  684. defaultControllerClass
  685. ^ MKTopFixedVerticalSplitController
  686. ! !
  687. !MKVerticalSplitView methodsFor: 'private'!
  688. setupEventHandlers
  689. splitter asJQuery draggable: #{
  690. 'axis' -> 'y'.
  691. 'containment' -> splitter asJQuery parent.
  692. 'cursor' -> 'ns-resize'.
  693. 'helper' -> 'clone'.
  694. 'stop' -> [ self resized ].
  695. 'drag' -> [ :event :ui | self controller onResize: event helper: ui ] }
  696. ! !
  697. MKSingleAspectView subclass: #MKTextAreaView
  698. instanceVariableNames: ''
  699. package: 'Moka-Views'!
  700. !MKTextAreaView commentStamp!
  701. I am an text area view. My default controller is `MKAnyKeyInputController`.
  702. My controller must answer to `#onKeyPressed:`.!
  703. !MKTextAreaView methodsFor: 'accessing'!
  704. cssClass
  705. ^ super cssClass, ' mk_textarea'
  706. !
  707. tag
  708. ^ 'textarea'
  709. !
  710. value
  711. ^ root asJQuery val
  712. ! !
  713. !MKTextAreaView methodsFor: 'defaults'!
  714. defaultControllerClass
  715. ^ MKAnyKeyInputController
  716. !
  717. defaultLayout
  718. ^ super defaultLayout
  719. width: 160;
  720. height: 80;
  721. yourself
  722. ! !
  723. !MKTextAreaView methodsFor: 'rendering'!
  724. renderContentOn: html
  725. root with: self aspectValue
  726. ! !
  727. !MKTextAreaView methodsFor: 'updating'!
  728. update
  729. root ifNotNil: [ root asJQuery val: self aspectValue ]
  730. ! !
  731. MKTextAreaView subclass: #MKInputView
  732. instanceVariableNames: ''
  733. package: 'Moka-Views'!
  734. !MKInputView commentStamp!
  735. I am an input view. My default controller is `MKEnterInputController`.
  736. My controller must answer to `#onKeyPressed:`.!
  737. !MKInputView methodsFor: 'accessing'!
  738. cssClass
  739. ^ 'moka_view mk_input'
  740. !
  741. tag
  742. ^ 'input'
  743. ! !
  744. !MKInputView methodsFor: 'defaults'!
  745. defaultControllerClass
  746. ^ MKEnterInputController
  747. !
  748. defaultLayout
  749. ^ super defaultLayout
  750. width: 160;
  751. height: 24;
  752. yourself
  753. ! !
  754. !MKInputView methodsFor: 'rendering'!
  755. renderContentOn: html
  756. root value: self aspectValue
  757. ! !
  758. !MKInputView methodsFor: 'settings'!
  759. triggerChangeOnAnyKey
  760. self controller: MKAnyKeyInputController new
  761. !
  762. triggerChangeOnEnter
  763. self controller: MKEnterInputController new
  764. ! !