Moka-Examples.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. define("amber_core/Moka-Examples", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/Moka-Core", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Moka-Examples');
  3. smalltalk.packages["Moka-Examples"].transport = {"type":"amd","amdNamespace":"amber_core"};
  4. smalltalk.addClass('MKClassesListBuilder', smalltalk.MKObservable, [], 'Moka-Examples');
  5. smalltalk.addMethod(
  6. smalltalk.method({
  7. selector: "build",
  8. category: 'as yet unclassified',
  9. fn: function (){
  10. var self=this;
  11. function $MKPaneView(){return smalltalk.MKPaneView||(typeof MKPaneView=="undefined"?nil:MKPaneView)}
  12. function $MKScrollDecorator(){return smalltalk.MKScrollDecorator||(typeof MKScrollDecorator=="undefined"?nil:MKScrollDecorator)}
  13. function $MKListView(){return smalltalk.MKListView||(typeof MKListView=="undefined"?nil:MKListView)}
  14. function $MKClassesModel(){return smalltalk.MKClassesModel||(typeof MKClassesModel=="undefined"?nil:MKClassesModel)}
  15. function $MKPanelView(){return smalltalk.MKPanelView||(typeof MKPanelView=="undefined"?nil:MKPanelView)}
  16. function $MKSourceListView(){return smalltalk.MKSourceListView||(typeof MKSourceListView=="undefined"?nil:MKSourceListView)}
  17. return smalltalk.withContext(function($ctx1) {
  18. var $1,$2,$6,$5,$4,$7,$3,$8,$10,$11,$9,$12;
  19. $1=_st($MKPaneView())._new();
  20. $ctx1.sendIdx["new"]=1;
  21. _st($1)._height_((150));
  22. $2=$1;
  23. $6=_st($MKClassesModel())._new();
  24. $ctx1.sendIdx["new"]=2;
  25. $5=_st($MKListView())._model_collectionAspect_selectionAspect_($6,"classes","selectedClass");
  26. $ctx1.sendIdx["model:collectionAspect:selectionAspect:"]=1;
  27. $4=_st($MKScrollDecorator())._decorate_($5);
  28. _st($4)._left_((4));
  29. $ctx1.sendIdx["left:"]=1;
  30. _st($4)._top_((4));
  31. $ctx1.sendIdx["top:"]=1;
  32. _st($4)._bottom_((4));
  33. $ctx1.sendIdx["bottom:"]=1;
  34. _st($4)._right_((0.5));
  35. $ctx1.sendIdx["right:"]=1;
  36. $7=_st($4)._yourself();
  37. $ctx1.sendIdx["yourself"]=1;
  38. $3=$7;
  39. _st($2)._addView_($3);
  40. $ctx1.sendIdx["addView:"]=1;
  41. $8=$1;
  42. $10=_st($MKPanelView())._new();
  43. $ctx1.sendIdx["new"]=3;
  44. _st($10)._left_((0.5));
  45. _st($10)._top_((4));
  46. _st($10)._right_((4));
  47. _st($10)._bottom_((4));
  48. _st($10)._addView_(_st($MKSourceListView())._model_collectionAspect_selectionAspect_(_st($MKClassesModel())._new(),"classes","selectedClass"));
  49. $11=_st($10)._yourself();
  50. $9=$11;
  51. _st($8)._addView_($9);
  52. $ctx1.sendIdx["addView:"]=2;
  53. $12=_st($1)._render();
  54. return self}, function($ctx1) {$ctx1.fill(self,"build",{},smalltalk.MKClassesListBuilder)})},
  55. args: [],
  56. source: "build\x0a\x09MKPaneView new\x0a\x09\x09height: 150;\x0a\x09\x09addView: ((MKScrollDecorator decorate:\x0a\x09\x09\x09(MKListView \x09\x0a\x09\x09\x09\x09model: MKClassesModel new\x0a\x09\x09\x09\x09collectionAspect: #classes\x0a\x09\x09\x09\x09selectionAspect: #selectedClass))\x0a\x09\x09\x09\x09\x09left: 4;\x0a\x09\x09\x09\x09\x09top: 4;\x0a\x09\x09\x09\x09\x09bottom: 4;\x0a\x09\x09\x09\x09\x09right: 0.5;\x0a\x09\x09\x09\x09\x09yourself);\x0a\x09\x09addView: (MKPanelView new\x0a\x09\x09\x09left: 0.5;\x0a\x09\x09\x09top: 4;\x0a\x09\x09\x09right: 4;\x0a\x09\x09\x09bottom: 4;\x0a\x09\x09\x09addView: (MKSourceListView \x09\x0a\x09\x09\x09\x09model: MKClassesModel new\x0a\x09\x09\x09\x09collectionAspect: #classes\x0a\x09\x09\x09\x09selectionAspect: #selectedClass);\x0a\x09\x09\x09yourself);\x0a\x09\x09render",
  57. messageSends: ["height:", "new", "addView:", "left:", "decorate:", "model:collectionAspect:selectionAspect:", "top:", "bottom:", "right:", "yourself", "render"],
  58. referencedClasses: ["MKPaneView", "MKScrollDecorator", "MKListView", "MKClassesModel", "MKPanelView", "MKSourceListView"]
  59. }),
  60. smalltalk.MKClassesListBuilder);
  61. smalltalk.addMethod(
  62. smalltalk.method({
  63. selector: "initialize",
  64. category: 'as yet unclassified',
  65. fn: function (){
  66. var self=this;
  67. return smalltalk.withContext(function($ctx1) {
  68. _st(self._new())._build();
  69. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MKClassesListBuilder.klass)})},
  70. args: [],
  71. source: "initialize\x0a\x09self new build",
  72. messageSends: ["build", "new"],
  73. referencedClasses: []
  74. }),
  75. smalltalk.MKClassesListBuilder.klass);
  76. smalltalk.addClass('MKClassesModel', smalltalk.MKObservable, ['classes', 'selectedClass'], 'Moka-Examples');
  77. smalltalk.addMethod(
  78. smalltalk.method({
  79. selector: "classes",
  80. category: 'as yet unclassified',
  81. fn: function (){
  82. var self=this;
  83. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  84. return smalltalk.withContext(function($ctx1) {
  85. var $1;
  86. $1=_st(_st($Smalltalk())._current())._classes();
  87. return $1;
  88. }, function($ctx1) {$ctx1.fill(self,"classes",{},smalltalk.MKClassesModel)})},
  89. args: [],
  90. source: "classes\x0a\x09^ Smalltalk current classes",
  91. messageSends: ["classes", "current"],
  92. referencedClasses: ["Smalltalk"]
  93. }),
  94. smalltalk.MKClassesModel);
  95. smalltalk.addMethod(
  96. smalltalk.method({
  97. selector: "selectedClass",
  98. category: 'as yet unclassified',
  99. fn: function (){
  100. var self=this;
  101. return smalltalk.withContext(function($ctx1) {
  102. var $2,$1;
  103. $2=self["@selectedClass"];
  104. if(($receiver = $2) == nil || $receiver == null){
  105. $1=_st(self._classes())._first();
  106. } else {
  107. $1=$2;
  108. };
  109. return $1;
  110. }, function($ctx1) {$ctx1.fill(self,"selectedClass",{},smalltalk.MKClassesModel)})},
  111. args: [],
  112. source: "selectedClass\x0a\x09^ selectedClass ifNil: [ self classes first ]",
  113. messageSends: ["ifNil:", "first", "classes"],
  114. referencedClasses: []
  115. }),
  116. smalltalk.MKClassesModel);
  117. smalltalk.addMethod(
  118. smalltalk.method({
  119. selector: "selectedClass:",
  120. category: 'as yet unclassified',
  121. fn: function (aClass){
  122. var self=this;
  123. return smalltalk.withContext(function($ctx1) {
  124. self["@selectedClass"]=aClass;
  125. self._changed_("selectedClass");
  126. return self}, function($ctx1) {$ctx1.fill(self,"selectedClass:",{aClass:aClass},smalltalk.MKClassesModel)})},
  127. args: ["aClass"],
  128. source: "selectedClass: aClass\x0a\x09selectedClass := aClass.\x0a\x09self changed: #selectedClass",
  129. messageSends: ["changed:"],
  130. referencedClasses: []
  131. }),
  132. smalltalk.MKClassesModel);
  133. smalltalk.addClass('MKCounterBuilder', smalltalk.Object, ['counter'], 'Moka-Examples');
  134. smalltalk.addMethod(
  135. smalltalk.method({
  136. selector: "build",
  137. category: 'accessing',
  138. fn: function (){
  139. var self=this;
  140. var pane;
  141. function $MKPanelView(){return smalltalk.MKPanelView||(typeof MKPanelView=="undefined"?nil:MKPanelView)}
  142. function $MKHeadingView(){return smalltalk.MKHeadingView||(typeof MKHeadingView=="undefined"?nil:MKHeadingView)}
  143. function $MKButtonView(){return smalltalk.MKButtonView||(typeof MKButtonView=="undefined"?nil:MKButtonView)}
  144. function $MKDropdownView(){return smalltalk.MKDropdownView||(typeof MKDropdownView=="undefined"?nil:MKDropdownView)}
  145. function $MKInputView(){return smalltalk.MKInputView||(typeof MKInputView=="undefined"?nil:MKInputView)}
  146. function $MKTextAreaView(){return smalltalk.MKTextAreaView||(typeof MKTextAreaView=="undefined"?nil:MKTextAreaView)}
  147. function $MKCheckboxView(){return smalltalk.MKCheckboxView||(typeof MKCheckboxView=="undefined"?nil:MKCheckboxView)}
  148. function $MKSwitchView(){return smalltalk.MKSwitchView||(typeof MKSwitchView=="undefined"?nil:MKSwitchView)}
  149. function $MKHorizontalSplitView(){return smalltalk.MKHorizontalSplitView||(typeof MKHorizontalSplitView=="undefined"?nil:MKHorizontalSplitView)}
  150. function $MKScrollDecorator(){return smalltalk.MKScrollDecorator||(typeof MKScrollDecorator=="undefined"?nil:MKScrollDecorator)}
  151. function $MKLayoutView(){return smalltalk.MKLayoutView||(typeof MKLayoutView=="undefined"?nil:MKLayoutView)}
  152. return smalltalk.withContext(function($ctx1) {
  153. var $1,$2,$5,$4,$6,$3,$7,$10,$9,$11,$8,$12,$15,$14,$16,$13,$17,$20,$19,$21,$18,$22,$25,$24,$26,$23,$27,$30,$29,$31,$28,$32,$35,$34,$36,$33,$37,$40,$39,$41,$38,$42,$45,$44,$46,$43,$47,$50,$49,$51,$48,$52,$55,$54,$56,$53,$57,$60,$59,$61,$58,$62,$65,$64,$66,$63,$67,$70,$69,$71,$68,$72,$74,$75,$73,$76,$77;
  154. $1=_st($MKPanelView())._new();
  155. $ctx1.sendIdx["new"]=1;
  156. pane=_st($1)._yourself();
  157. $ctx1.sendIdx["yourself"]=1;
  158. $2=pane;
  159. $5=self._counter();
  160. $ctx1.sendIdx["counter"]=1;
  161. $4=_st($MKHeadingView())._model_aspect_($5,"count");
  162. $ctx1.sendIdx["model:aspect:"]=1;
  163. _st($4)._level_((3));
  164. _st($4)._top_((0));
  165. $ctx1.sendIdx["top:"]=1;
  166. _st($4)._left_((8));
  167. $ctx1.sendIdx["left:"]=1;
  168. _st($4)._height_((28));
  169. $6=_st($4)._yourself();
  170. $ctx1.sendIdx["yourself"]=2;
  171. $3=$6;
  172. _st($2)._addView_($3);
  173. $ctx1.sendIdx["addView:"]=1;
  174. $7=pane;
  175. $10=self._counter();
  176. $ctx1.sendIdx["counter"]=2;
  177. $9=_st($MKButtonView())._model_aspect_($10,"increase");
  178. $ctx1.sendIdx["model:aspect:"]=2;
  179. _st($9)._label_("Increase");
  180. $ctx1.sendIdx["label:"]=1;
  181. _st($9)._top_((50));
  182. $ctx1.sendIdx["top:"]=2;
  183. _st($9)._left_((8));
  184. $ctx1.sendIdx["left:"]=2;
  185. $11=_st($9)._yourself();
  186. $ctx1.sendIdx["yourself"]=3;
  187. $8=$11;
  188. _st($7)._addView_($8);
  189. $ctx1.sendIdx["addView:"]=2;
  190. $12=pane;
  191. $15=self._counter();
  192. $ctx1.sendIdx["counter"]=3;
  193. $14=_st($MKButtonView())._model_aspect_($15,"decrease");
  194. $ctx1.sendIdx["model:aspect:"]=3;
  195. _st($14)._label_("Decrease");
  196. _st($14)._default_(true);
  197. _st($14)._top_((50));
  198. $ctx1.sendIdx["top:"]=3;
  199. _st($14)._left_((92));
  200. $ctx1.sendIdx["left:"]=3;
  201. $16=_st($14)._yourself();
  202. $ctx1.sendIdx["yourself"]=4;
  203. $13=$16;
  204. _st($12)._addView_($13);
  205. $ctx1.sendIdx["addView:"]=3;
  206. $17=pane;
  207. $20=self._counter();
  208. $ctx1.sendIdx["counter"]=4;
  209. $19=_st($MKDropdownView())._model_collectionAspect_selectionAspect_($20,"options","selectedOption");
  210. $ctx1.sendIdx["model:collectionAspect:selectionAspect:"]=1;
  211. _st($19)._left_((176));
  212. $ctx1.sendIdx["left:"]=4;
  213. _st($19)._top_((50));
  214. $ctx1.sendIdx["top:"]=4;
  215. $21=_st($19)._yourself();
  216. $ctx1.sendIdx["yourself"]=5;
  217. $18=$21;
  218. _st($17)._addView_($18);
  219. $ctx1.sendIdx["addView:"]=4;
  220. $22=pane;
  221. $25=self._counter();
  222. $ctx1.sendIdx["counter"]=5;
  223. $24=_st($MKInputView())._model_aspect_($25,"text");
  224. $ctx1.sendIdx["model:aspect:"]=4;
  225. _st($24)._top_((100));
  226. $ctx1.sendIdx["top:"]=5;
  227. _st($24)._left_((8));
  228. $ctx1.sendIdx["left:"]=5;
  229. $26=_st($24)._yourself();
  230. $ctx1.sendIdx["yourself"]=6;
  231. $23=$26;
  232. _st($22)._addView_($23);
  233. $ctx1.sendIdx["addView:"]=5;
  234. $27=pane;
  235. $30=self._counter();
  236. $ctx1.sendIdx["counter"]=6;
  237. $29=_st($MKInputView())._model_aspect_($30,"text");
  238. $ctx1.sendIdx["model:aspect:"]=5;
  239. _st($29)._top_((150));
  240. $ctx1.sendIdx["top:"]=6;
  241. _st($29)._left_((8));
  242. $ctx1.sendIdx["left:"]=6;
  243. _st($29)._triggerChangeOnAnyKey();
  244. $31=_st($29)._yourself();
  245. $ctx1.sendIdx["yourself"]=7;
  246. $28=$31;
  247. _st($27)._addView_($28);
  248. $ctx1.sendIdx["addView:"]=6;
  249. $32=pane;
  250. $35=self._counter();
  251. $ctx1.sendIdx["counter"]=7;
  252. $34=_st($MKTextAreaView())._model_aspect_($35,"text");
  253. $ctx1.sendIdx["model:aspect:"]=6;
  254. _st($34)._top_((200));
  255. $ctx1.sendIdx["top:"]=7;
  256. _st($34)._left_((8));
  257. $ctx1.sendIdx["left:"]=7;
  258. $36=_st($34)._yourself();
  259. $ctx1.sendIdx["yourself"]=8;
  260. $33=$36;
  261. _st($32)._addView_($33);
  262. $ctx1.sendIdx["addView:"]=7;
  263. $37=pane;
  264. $40=self._counter();
  265. $ctx1.sendIdx["counter"]=8;
  266. $39=_st($MKCheckboxView())._model_aspect_($40,"checked");
  267. $ctx1.sendIdx["model:aspect:"]=7;
  268. _st($39)._top_((300));
  269. $ctx1.sendIdx["top:"]=8;
  270. _st($39)._left_((8));
  271. $ctx1.sendIdx["left:"]=8;
  272. $41=_st($39)._yourself();
  273. $ctx1.sendIdx["yourself"]=9;
  274. $38=$41;
  275. _st($37)._addView_($38);
  276. $ctx1.sendIdx["addView:"]=8;
  277. $42=pane;
  278. $45=self._counter();
  279. $ctx1.sendIdx["counter"]=9;
  280. $44=_st($MKSwitchView())._model_aspect_($45,"checked");
  281. $ctx1.sendIdx["model:aspect:"]=8;
  282. _st($44)._top_((350));
  283. $ctx1.sendIdx["top:"]=9;
  284. _st($44)._centerX_((0));
  285. $ctx1.sendIdx["centerX:"]=1;
  286. $46=_st($44)._yourself();
  287. $ctx1.sendIdx["yourself"]=10;
  288. $43=$46;
  289. _st($42)._addView_($43);
  290. $ctx1.sendIdx["addView:"]=9;
  291. $47=pane;
  292. $50=self._counter();
  293. $ctx1.sendIdx["counter"]=10;
  294. $49=_st($MKSwitchView())._model_aspect_($50,"checked");
  295. $ctx1.sendIdx["model:aspect:"]=9;
  296. _st($49)._top_((380));
  297. $ctx1.sendIdx["top:"]=10;
  298. _st($49)._centerX_((-50));
  299. $ctx1.sendIdx["centerX:"]=2;
  300. $51=_st($49)._yourself();
  301. $ctx1.sendIdx["yourself"]=11;
  302. $48=$51;
  303. _st($47)._addView_($48);
  304. $ctx1.sendIdx["addView:"]=10;
  305. $52=pane;
  306. $55=self._counter();
  307. $ctx1.sendIdx["counter"]=11;
  308. $54=_st($MKSwitchView())._model_aspect_($55,"checked");
  309. $ctx1.sendIdx["model:aspect:"]=10;
  310. _st($54)._top_((410));
  311. $ctx1.sendIdx["top:"]=11;
  312. _st($54)._centerX_((50));
  313. $56=_st($54)._yourself();
  314. $ctx1.sendIdx["yourself"]=12;
  315. $53=$56;
  316. _st($52)._addView_($53);
  317. $ctx1.sendIdx["addView:"]=11;
  318. $57=pane;
  319. $60=self._counter();
  320. $ctx1.sendIdx["counter"]=12;
  321. $59=_st($MKSwitchView())._model_aspect_($60,"checked");
  322. $ctx1.sendIdx["model:aspect:"]=11;
  323. _st($59)._right_((4));
  324. $ctx1.sendIdx["right:"]=1;
  325. _st($59)._centerY_((0));
  326. $ctx1.sendIdx["centerY:"]=1;
  327. $61=_st($59)._yourself();
  328. $ctx1.sendIdx["yourself"]=13;
  329. $58=$61;
  330. _st($57)._addView_($58);
  331. $ctx1.sendIdx["addView:"]=12;
  332. $62=pane;
  333. $65=self._counter();
  334. $ctx1.sendIdx["counter"]=13;
  335. $64=_st($MKSwitchView())._model_aspect_($65,"checked");
  336. $ctx1.sendIdx["model:aspect:"]=12;
  337. _st($64)._right_((4));
  338. $ctx1.sendIdx["right:"]=2;
  339. _st($64)._centerY_((30));
  340. $ctx1.sendIdx["centerY:"]=2;
  341. $66=_st($64)._yourself();
  342. $ctx1.sendIdx["yourself"]=14;
  343. $63=$66;
  344. _st($62)._addView_($63);
  345. $ctx1.sendIdx["addView:"]=13;
  346. $67=pane;
  347. $70=self._counter();
  348. $ctx1.sendIdx["counter"]=14;
  349. $69=_st($MKSwitchView())._model_aspect_($70,"checked");
  350. _st($69)._right_((4));
  351. _st($69)._centerY_((-30));
  352. $71=_st($69)._yourself();
  353. $ctx1.sendIdx["yourself"]=15;
  354. $68=$71;
  355. _st($67)._addView_($68);
  356. $ctx1.sendIdx["addView:"]=14;
  357. $72=pane;
  358. $74=_st($MKDropdownView())._model_collectionAspect_selectionAspect_(self._counter(),"options","selectedOption");
  359. _st($74)._left_((4));
  360. _st($74)._top_((440));
  361. $ctx1.sendIdx["top:"]=12;
  362. $75=_st($74)._yourself();
  363. $73=$75;
  364. _st($72)._addView_($73);
  365. $76=_st($MKHorizontalSplitView())._firstView_secondView_(_st($MKScrollDecorator())._decorate_(pane),_st($MKLayoutView())._new());
  366. _st($76)._leftThickness_((300));
  367. _st($76)._top_((200));
  368. _st($76)._bottom_((0));
  369. $77=_st($76)._render();
  370. return self}, function($ctx1) {$ctx1.fill(self,"build",{pane:pane},smalltalk.MKCounterBuilder)})},
  371. args: [],
  372. source: "build\x0a\x09| pane |\x0a\x09pane := MKPanelView new\x0a\x09\x09yourself.\x0a\x09\x0a\x09pane addView: ((MKHeadingView model: self counter aspect: #count)\x0a\x09\x09level: 3;\x0a\x09\x09top: 0;\x0a\x09\x09left: 8;\x0a\x09\x09height: 28;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKButtonView model: self counter aspect: #increase) \x0a\x09\x09label: 'Increase';\x0a\x09\x09top: 50;\x0a\x09\x09left: 8;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKButtonView model: self counter aspect: #decrease) \x0a\x09\x09label: 'Decrease';\x0a\x09\x09default: true;\x0a\x09\x09top: 50;\x0a\x09\x09left: 92;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKDropdownView \x0a\x09\x09model: self counter\x0a\x09\x09collectionAspect: #options\x0a\x09\x09selectionAspect: #selectedOption)\x0a\x09\x09\x09left: 176;\x0a\x09\x09\x09top: 50;\x0a\x09\x09\x09yourself).\x0a\x09pane addView: ((MKInputView model: self counter aspect: #text)\x0a\x09\x09top: 100;\x0a\x09\x09left: 8;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKInputView model: self counter aspect: #text)\x0a\x09\x09top: 150;\x0a\x09\x09left: 8;\x0a\x09\x09triggerChangeOnAnyKey;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKTextAreaView model: self counter aspect: #text)\x0a\x09\x09top: 200;\x0a\x09\x09left: 8;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKCheckboxView model: self counter aspect: #checked)\x0a\x09\x09top: 300;\x0a\x09\x09left: 8;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09top: 350;\x0a\x09\x09centerX: 0;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09top: 380;\x0a\x09\x09centerX: -50;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09top: 410;\x0a\x09\x09centerX: 50;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09right: 4;\x0a\x09\x09centerY: 0;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09right: 4;\x0a\x09\x09centerY: 30;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKSwitchView model: self counter aspect: #checked)\x0a\x09\x09right: 4;\x0a\x09\x09centerY: -30;\x0a\x09\x09yourself).\x0a\x09pane addView: ((MKDropdownView \x0a\x09\x09\x09model: self counter\x0a\x09\x09\x09collectionAspect: #options\x0a\x09\x09\x09selectionAspect: #selectedOption)\x0a\x09\x09left: 4;\x0a\x09\x09top: 440;\x0a\x09\x09yourself).\x0a\x09\x0a\x09(MKHorizontalSplitView \x0a\x09\x09firstView: (MKScrollDecorator decorate: pane)\x0a\x09\x09secondView: MKLayoutView new)\x0a\x09\x09\x09leftThickness: 300;\x0a\x09\x09\x09top: 200;\x0a\x09\x09\x09bottom: 0;\x0a\x09\x09\x09render",
  373. messageSends: ["yourself", "new", "addView:", "level:", "model:aspect:", "counter", "top:", "left:", "height:", "label:", "default:", "model:collectionAspect:selectionAspect:", "triggerChangeOnAnyKey", "centerX:", "right:", "centerY:", "leftThickness:", "firstView:secondView:", "decorate:", "bottom:", "render"],
  374. referencedClasses: ["MKPanelView", "MKHeadingView", "MKButtonView", "MKDropdownView", "MKInputView", "MKTextAreaView", "MKCheckboxView", "MKSwitchView", "MKHorizontalSplitView", "MKScrollDecorator", "MKLayoutView"]
  375. }),
  376. smalltalk.MKCounterBuilder);
  377. smalltalk.addMethod(
  378. smalltalk.method({
  379. selector: "counter",
  380. category: 'accessing',
  381. fn: function (){
  382. var self=this;
  383. function $MKCounterModel(){return smalltalk.MKCounterModel||(typeof MKCounterModel=="undefined"?nil:MKCounterModel)}
  384. return smalltalk.withContext(function($ctx1) {
  385. var $2,$1;
  386. $2=self["@counter"];
  387. if(($receiver = $2) == nil || $receiver == null){
  388. self["@counter"]=_st($MKCounterModel())._new();
  389. $1=self["@counter"];
  390. } else {
  391. $1=$2;
  392. };
  393. return $1;
  394. }, function($ctx1) {$ctx1.fill(self,"counter",{},smalltalk.MKCounterBuilder)})},
  395. args: [],
  396. source: "counter\x0a\x09^ counter ifNil: [ counter := MKCounterModel new ]",
  397. messageSends: ["ifNil:", "new"],
  398. referencedClasses: ["MKCounterModel"]
  399. }),
  400. smalltalk.MKCounterBuilder);
  401. smalltalk.addMethod(
  402. smalltalk.method({
  403. selector: "initialize",
  404. category: 'initialization',
  405. fn: function (){
  406. var self=this;
  407. return smalltalk.withContext(function($ctx1) {
  408. _st(self._new())._build();
  409. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MKCounterBuilder.klass)})},
  410. args: [],
  411. source: "initialize\x0a\x09self new build",
  412. messageSends: ["build", "new"],
  413. referencedClasses: []
  414. }),
  415. smalltalk.MKCounterBuilder.klass);
  416. smalltalk.addClass('MKCounterModel', smalltalk.MKObservable, ['count', 'text', 'checked', 'options', 'selectedOption'], 'Moka-Examples');
  417. smalltalk.addMethod(
  418. smalltalk.method({
  419. selector: "checked",
  420. category: 'actions',
  421. fn: function (){
  422. var self=this;
  423. return smalltalk.withContext(function($ctx1) {
  424. var $2,$1;
  425. $2=self["@checked"];
  426. if(($receiver = $2) == nil || $receiver == null){
  427. $1=false;
  428. } else {
  429. $1=$2;
  430. };
  431. return $1;
  432. }, function($ctx1) {$ctx1.fill(self,"checked",{},smalltalk.MKCounterModel)})},
  433. args: [],
  434. source: "checked\x0a\x09^ checked ifNil: [ false ]",
  435. messageSends: ["ifNil:"],
  436. referencedClasses: []
  437. }),
  438. smalltalk.MKCounterModel);
  439. smalltalk.addMethod(
  440. smalltalk.method({
  441. selector: "checked:",
  442. category: 'actions',
  443. fn: function (aBoolean){
  444. var self=this;
  445. return smalltalk.withContext(function($ctx1) {
  446. self["@checked"]=aBoolean;
  447. self._changed_("checked");
  448. return self}, function($ctx1) {$ctx1.fill(self,"checked:",{aBoolean:aBoolean},smalltalk.MKCounterModel)})},
  449. args: ["aBoolean"],
  450. source: "checked: aBoolean\x0a\x09checked := aBoolean.\x0a\x09self changed: 'checked'",
  451. messageSends: ["changed:"],
  452. referencedClasses: []
  453. }),
  454. smalltalk.MKCounterModel);
  455. smalltalk.addMethod(
  456. smalltalk.method({
  457. selector: "count",
  458. category: 'actions',
  459. fn: function (){
  460. var self=this;
  461. return smalltalk.withContext(function($ctx1) {
  462. var $1;
  463. $1=_st(self["@count"])._asString();
  464. return $1;
  465. }, function($ctx1) {$ctx1.fill(self,"count",{},smalltalk.MKCounterModel)})},
  466. args: [],
  467. source: "count\x0a\x09^ count asString",
  468. messageSends: ["asString"],
  469. referencedClasses: []
  470. }),
  471. smalltalk.MKCounterModel);
  472. smalltalk.addMethod(
  473. smalltalk.method({
  474. selector: "decrease",
  475. category: 'actions',
  476. fn: function (){
  477. var self=this;
  478. return smalltalk.withContext(function($ctx1) {
  479. self["@count"]=_st(self["@count"]).__minus((1));
  480. self._changed_("count");
  481. return self}, function($ctx1) {$ctx1.fill(self,"decrease",{},smalltalk.MKCounterModel)})},
  482. args: [],
  483. source: "decrease\x0a\x09count := count - 1.\x0a\x09self changed: #count",
  484. messageSends: ["-", "changed:"],
  485. referencedClasses: []
  486. }),
  487. smalltalk.MKCounterModel);
  488. smalltalk.addMethod(
  489. smalltalk.method({
  490. selector: "increase",
  491. category: 'actions',
  492. fn: function (){
  493. var self=this;
  494. return smalltalk.withContext(function($ctx1) {
  495. self["@count"]=_st(self["@count"]).__plus((1));
  496. self._changed_("count");
  497. return self}, function($ctx1) {$ctx1.fill(self,"increase",{},smalltalk.MKCounterModel)})},
  498. args: [],
  499. source: "increase\x0a\x09count := count + 1.\x0a\x09self changed: #count",
  500. messageSends: ["+", "changed:"],
  501. referencedClasses: []
  502. }),
  503. smalltalk.MKCounterModel);
  504. smalltalk.addMethod(
  505. smalltalk.method({
  506. selector: "initialize",
  507. category: 'initialization',
  508. fn: function (){
  509. var self=this;
  510. return smalltalk.withContext(function($ctx1) {
  511. smalltalk.MKCounterModel.superclass.fn.prototype._initialize.apply(_st(self), []);
  512. self["@count"]=(0);
  513. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MKCounterModel)})},
  514. args: [],
  515. source: "initialize\x0a\x09super initialize.\x0a\x09count := 0",
  516. messageSends: ["initialize"],
  517. referencedClasses: []
  518. }),
  519. smalltalk.MKCounterModel);
  520. smalltalk.addMethod(
  521. smalltalk.method({
  522. selector: "options",
  523. category: 'accessing',
  524. fn: function (){
  525. var self=this;
  526. return smalltalk.withContext(function($ctx1) {
  527. var $1;
  528. $1=["foo", "bar", "baz"];
  529. return $1;
  530. }, function($ctx1) {$ctx1.fill(self,"options",{},smalltalk.MKCounterModel)})},
  531. args: [],
  532. source: "options\x0a\x09^ #('foo' 'bar' 'baz')",
  533. messageSends: [],
  534. referencedClasses: []
  535. }),
  536. smalltalk.MKCounterModel);
  537. smalltalk.addMethod(
  538. smalltalk.method({
  539. selector: "selectedOption",
  540. category: 'accessing',
  541. fn: function (){
  542. var self=this;
  543. return smalltalk.withContext(function($ctx1) {
  544. var $2,$1;
  545. $2=self["@selectedOption"];
  546. if(($receiver = $2) == nil || $receiver == null){
  547. self["@selectedOption"]=_st(self._options())._last();
  548. $1=self["@selectedOption"];
  549. } else {
  550. $1=$2;
  551. };
  552. return $1;
  553. }, function($ctx1) {$ctx1.fill(self,"selectedOption",{},smalltalk.MKCounterModel)})},
  554. args: [],
  555. source: "selectedOption\x0a\x09^ selectedOption ifNil: [ selectedOption := self options last ]",
  556. messageSends: ["ifNil:", "last", "options"],
  557. referencedClasses: []
  558. }),
  559. smalltalk.MKCounterModel);
  560. smalltalk.addMethod(
  561. smalltalk.method({
  562. selector: "selectedOption:",
  563. category: 'accessing',
  564. fn: function (aString){
  565. var self=this;
  566. return smalltalk.withContext(function($ctx1) {
  567. self["@selectedOption"]=aString;
  568. self._changed_("selectedOption");
  569. return self}, function($ctx1) {$ctx1.fill(self,"selectedOption:",{aString:aString},smalltalk.MKCounterModel)})},
  570. args: ["aString"],
  571. source: "selectedOption: aString\x0a\x09selectedOption := aString.\x0a\x09self changed: #selectedOption",
  572. messageSends: ["changed:"],
  573. referencedClasses: []
  574. }),
  575. smalltalk.MKCounterModel);
  576. smalltalk.addMethod(
  577. smalltalk.method({
  578. selector: "text",
  579. category: 'actions',
  580. fn: function (){
  581. var self=this;
  582. return smalltalk.withContext(function($ctx1) {
  583. var $2,$1;
  584. $2=self["@text"];
  585. if(($receiver = $2) == nil || $receiver == null){
  586. $1="";
  587. } else {
  588. $1=$2;
  589. };
  590. return $1;
  591. }, function($ctx1) {$ctx1.fill(self,"text",{},smalltalk.MKCounterModel)})},
  592. args: [],
  593. source: "text\x0a\x09^ text ifNil: [ '' ]",
  594. messageSends: ["ifNil:"],
  595. referencedClasses: []
  596. }),
  597. smalltalk.MKCounterModel);
  598. smalltalk.addMethod(
  599. smalltalk.method({
  600. selector: "text:",
  601. category: 'actions',
  602. fn: function (aString){
  603. var self=this;
  604. return smalltalk.withContext(function($ctx1) {
  605. self["@text"]=aString;
  606. self._changed_("text");
  607. return self}, function($ctx1) {$ctx1.fill(self,"text:",{aString:aString},smalltalk.MKCounterModel)})},
  608. args: ["aString"],
  609. source: "text: aString\x0a\x09text := aString.\x0a\x09self changed: 'text'",
  610. messageSends: ["changed:"],
  611. referencedClasses: []
  612. }),
  613. smalltalk.MKCounterModel);
  614. });