Moka-Views.st 17 KB

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