Moka-Core.js 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  1. define("amber_core/Moka-Core", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/Kernel-Objects", "amber_core/Canvas"], function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Moka-Core');
  3. smalltalk.packages["Moka-Core"].transport = {"type":"amd","amdNamespace":"amber_core"};
  4. smalltalk.addClass('MKController', smalltalk.Object, ['view', 'model'], 'Moka-Core');
  5. smalltalk.MKController.comment="I implement the Controller part of the MVC pattern in Moka.\x0a\x0aI hold onto my `model` and `view`, set with `MKView >> controller:`.";
  6. smalltalk.addMethod(
  7. smalltalk.method({
  8. selector: "model",
  9. category: 'accessing',
  10. fn: function (){
  11. var self=this;
  12. return smalltalk.withContext(function($ctx1) {
  13. var $1;
  14. $1=self["@model"];
  15. return $1;
  16. }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.MKController)})},
  17. args: [],
  18. source: "model\x0a\x09^ model",
  19. messageSends: [],
  20. referencedClasses: []
  21. }),
  22. smalltalk.MKController);
  23. smalltalk.addMethod(
  24. smalltalk.method({
  25. selector: "model:",
  26. category: 'accessing',
  27. fn: function (aModel){
  28. var self=this;
  29. return smalltalk.withContext(function($ctx1) {
  30. self["@model"]=aModel;
  31. return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKController)})},
  32. args: ["aModel"],
  33. source: "model: aModel\x0a\x09model := aModel",
  34. messageSends: [],
  35. referencedClasses: []
  36. }),
  37. smalltalk.MKController);
  38. smalltalk.addMethod(
  39. smalltalk.method({
  40. selector: "onChange:",
  41. category: 'actions',
  42. fn: function (anEvent){
  43. var self=this;
  44. return smalltalk.withContext(function($ctx1) {
  45. return self}, function($ctx1) {$ctx1.fill(self,"onChange:",{anEvent:anEvent},smalltalk.MKController)})},
  46. args: ["anEvent"],
  47. source: "onChange: anEvent",
  48. messageSends: [],
  49. referencedClasses: []
  50. }),
  51. smalltalk.MKController);
  52. smalltalk.addMethod(
  53. smalltalk.method({
  54. selector: "onClick:",
  55. category: 'actions',
  56. fn: function (anEvent){
  57. var self=this;
  58. return smalltalk.withContext(function($ctx1) {
  59. return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKController)})},
  60. args: ["anEvent"],
  61. source: "onClick: anEvent",
  62. messageSends: [],
  63. referencedClasses: []
  64. }),
  65. smalltalk.MKController);
  66. smalltalk.addMethod(
  67. smalltalk.method({
  68. selector: "onDblClick:",
  69. category: 'actions',
  70. fn: function (anEvent){
  71. var self=this;
  72. return smalltalk.withContext(function($ctx1) {
  73. return self}, function($ctx1) {$ctx1.fill(self,"onDblClick:",{anEvent:anEvent},smalltalk.MKController)})},
  74. args: ["anEvent"],
  75. source: "onDblClick: anEvent",
  76. messageSends: [],
  77. referencedClasses: []
  78. }),
  79. smalltalk.MKController);
  80. smalltalk.addMethod(
  81. smalltalk.method({
  82. selector: "onKeyDown:",
  83. category: 'actions',
  84. fn: function (anEvent){
  85. var self=this;
  86. return smalltalk.withContext(function($ctx1) {
  87. return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKController)})},
  88. args: ["anEvent"],
  89. source: "onKeyDown: anEvent",
  90. messageSends: [],
  91. referencedClasses: []
  92. }),
  93. smalltalk.MKController);
  94. smalltalk.addMethod(
  95. smalltalk.method({
  96. selector: "onKeyPress:",
  97. category: 'actions',
  98. fn: function (anEvent){
  99. var self=this;
  100. return smalltalk.withContext(function($ctx1) {
  101. return self}, function($ctx1) {$ctx1.fill(self,"onKeyPress:",{anEvent:anEvent},smalltalk.MKController)})},
  102. args: ["anEvent"],
  103. source: "onKeyPress: anEvent",
  104. messageSends: [],
  105. referencedClasses: []
  106. }),
  107. smalltalk.MKController);
  108. smalltalk.addMethod(
  109. smalltalk.method({
  110. selector: "onKeyUp:",
  111. category: 'actions',
  112. fn: function (anEvent){
  113. var self=this;
  114. return smalltalk.withContext(function($ctx1) {
  115. return self}, function($ctx1) {$ctx1.fill(self,"onKeyUp:",{anEvent:anEvent},smalltalk.MKController)})},
  116. args: ["anEvent"],
  117. source: "onKeyUp: anEvent",
  118. messageSends: [],
  119. referencedClasses: []
  120. }),
  121. smalltalk.MKController);
  122. smalltalk.addMethod(
  123. smalltalk.method({
  124. selector: "onMouseEnter:",
  125. category: 'actions',
  126. fn: function (anEvent){
  127. var self=this;
  128. return smalltalk.withContext(function($ctx1) {
  129. return self}, function($ctx1) {$ctx1.fill(self,"onMouseEnter:",{anEvent:anEvent},smalltalk.MKController)})},
  130. args: ["anEvent"],
  131. source: "onMouseEnter: anEvent",
  132. messageSends: [],
  133. referencedClasses: []
  134. }),
  135. smalltalk.MKController);
  136. smalltalk.addMethod(
  137. smalltalk.method({
  138. selector: "onMouseLeave:",
  139. category: 'actions',
  140. fn: function (anEvent){
  141. var self=this;
  142. return smalltalk.withContext(function($ctx1) {
  143. return self}, function($ctx1) {$ctx1.fill(self,"onMouseLeave:",{anEvent:anEvent},smalltalk.MKController)})},
  144. args: ["anEvent"],
  145. source: "onMouseLeave: anEvent",
  146. messageSends: [],
  147. referencedClasses: []
  148. }),
  149. smalltalk.MKController);
  150. smalltalk.addMethod(
  151. smalltalk.method({
  152. selector: "onMouseMove:",
  153. category: 'actions',
  154. fn: function (anEvent){
  155. var self=this;
  156. return smalltalk.withContext(function($ctx1) {
  157. return self}, function($ctx1) {$ctx1.fill(self,"onMouseMove:",{anEvent:anEvent},smalltalk.MKController)})},
  158. args: ["anEvent"],
  159. source: "onMouseMove: anEvent",
  160. messageSends: [],
  161. referencedClasses: []
  162. }),
  163. smalltalk.MKController);
  164. smalltalk.addMethod(
  165. smalltalk.method({
  166. selector: "onMouseOut:",
  167. category: 'actions',
  168. fn: function (anEvent){
  169. var self=this;
  170. return smalltalk.withContext(function($ctx1) {
  171. return self}, function($ctx1) {$ctx1.fill(self,"onMouseOut:",{anEvent:anEvent},smalltalk.MKController)})},
  172. args: ["anEvent"],
  173. source: "onMouseOut: anEvent",
  174. messageSends: [],
  175. referencedClasses: []
  176. }),
  177. smalltalk.MKController);
  178. smalltalk.addMethod(
  179. smalltalk.method({
  180. selector: "onMouseOver:",
  181. category: 'actions',
  182. fn: function (anEvent){
  183. var self=this;
  184. return smalltalk.withContext(function($ctx1) {
  185. return self}, function($ctx1) {$ctx1.fill(self,"onMouseOver:",{anEvent:anEvent},smalltalk.MKController)})},
  186. args: ["anEvent"],
  187. source: "onMouseOver: anEvent",
  188. messageSends: [],
  189. referencedClasses: []
  190. }),
  191. smalltalk.MKController);
  192. smalltalk.addMethod(
  193. smalltalk.method({
  194. selector: "view",
  195. category: 'accessing',
  196. fn: function (){
  197. var self=this;
  198. return smalltalk.withContext(function($ctx1) {
  199. var $1;
  200. $1=self["@view"];
  201. return $1;
  202. }, function($ctx1) {$ctx1.fill(self,"view",{},smalltalk.MKController)})},
  203. args: [],
  204. source: "view\x0a\x09^ view",
  205. messageSends: [],
  206. referencedClasses: []
  207. }),
  208. smalltalk.MKController);
  209. smalltalk.addMethod(
  210. smalltalk.method({
  211. selector: "view:",
  212. category: 'accessing',
  213. fn: function (aView){
  214. var self=this;
  215. return smalltalk.withContext(function($ctx1) {
  216. self["@view"]=aView;
  217. return self}, function($ctx1) {$ctx1.fill(self,"view:",{aView:aView},smalltalk.MKController)})},
  218. args: ["aView"],
  219. source: "view: aView\x0a\x09view := aView",
  220. messageSends: [],
  221. referencedClasses: []
  222. }),
  223. smalltalk.MKController);
  224. smalltalk.addClass('MKAspectsController', smalltalk.MKController, [], 'Moka-Core');
  225. smalltalk.MKAspectsController.comment="I am an abstract controller for performing one action using an `aspect` on a model.\x0a\x0a## API\x0a\x0a- Use `#aspect:` to plug a selector to be performed on the model\x0a- Subclasses can either use `#performActionWith:` or `#performAction` to evaluate the `aspect` selector on the model with one or no argument.";
  226. smalltalk.addMethod(
  227. smalltalk.method({
  228. selector: "performAspectAction:",
  229. category: 'actions',
  230. fn: function (aSelector){
  231. var self=this;
  232. return smalltalk.withContext(function($ctx1) {
  233. _st(self._model())._perform_(aSelector);
  234. return self}, function($ctx1) {$ctx1.fill(self,"performAspectAction:",{aSelector:aSelector},smalltalk.MKAspectsController)})},
  235. args: ["aSelector"],
  236. source: "performAspectAction: aSelector\x0a\x09self model perform: aSelector",
  237. messageSends: ["perform:", "model"],
  238. referencedClasses: []
  239. }),
  240. smalltalk.MKAspectsController);
  241. smalltalk.addMethod(
  242. smalltalk.method({
  243. selector: "performAspectAction:with:",
  244. category: 'actions',
  245. fn: function (aSelector,anObject){
  246. var self=this;
  247. return smalltalk.withContext(function($ctx1) {
  248. _st(self._model())._perform_withArguments_(_st(aSelector)._asMutator(),[anObject]);
  249. return self}, function($ctx1) {$ctx1.fill(self,"performAspectAction:with:",{aSelector:aSelector,anObject:anObject},smalltalk.MKAspectsController)})},
  250. args: ["aSelector", "anObject"],
  251. source: "performAspectAction: aSelector with: anObject\x0a\x09self model \x0a\x09\x09perform: aSelector asMutator\x0a\x09\x09withArguments: { anObject }",
  252. messageSends: ["perform:withArguments:", "model", "asMutator"],
  253. referencedClasses: []
  254. }),
  255. smalltalk.MKAspectsController);
  256. smalltalk.addClass('MKSingleAspectController', smalltalk.MKAspectsController, [], 'Moka-Core');
  257. smalltalk.MKSingleAspectController.comment="I am an abstract controller used with single aspect views.\x0a\x0aMy view must hold onto one aspect accessed with `#aspect`.";
  258. smalltalk.addMethod(
  259. smalltalk.method({
  260. selector: "performAspectAction",
  261. category: 'actions',
  262. fn: function (){
  263. var self=this;
  264. return smalltalk.withContext(function($ctx1) {
  265. var $1;
  266. $1=self._performAspectAction_(_st(self._view())._aspect());
  267. return $1;
  268. }, function($ctx1) {$ctx1.fill(self,"performAspectAction",{},smalltalk.MKSingleAspectController)})},
  269. args: [],
  270. source: "performAspectAction\x0a\x09^ self performAspectAction: self view aspect",
  271. messageSends: ["performAspectAction:", "aspect", "view"],
  272. referencedClasses: []
  273. }),
  274. smalltalk.MKSingleAspectController);
  275. smalltalk.addMethod(
  276. smalltalk.method({
  277. selector: "performAspectActionWith:",
  278. category: 'actions',
  279. fn: function (anObject){
  280. var self=this;
  281. return smalltalk.withContext(function($ctx1) {
  282. var $1;
  283. $1=self._performAspectAction_with_(_st(self._view())._aspect(),anObject);
  284. return $1;
  285. }, function($ctx1) {$ctx1.fill(self,"performAspectActionWith:",{anObject:anObject},smalltalk.MKSingleAspectController)})},
  286. args: ["anObject"],
  287. source: "performAspectActionWith: anObject\x0a\x09^ self \x0a\x09\x09performAspectAction: self view aspect\x0a\x09\x09with: anObject",
  288. messageSends: ["performAspectAction:with:", "aspect", "view"],
  289. referencedClasses: []
  290. }),
  291. smalltalk.MKSingleAspectController);
  292. smalltalk.addClass('MKModel', smalltalk.Object, ['announcer'], 'Moka-Core');
  293. smalltalk.MKModel.comment="I implement the Model part of the MVC pattern in Moka.\x0a\x0aI am the abstract superclass of all Moka model. The observer pattern is implemented through an `announcer` object.\x0a\x0a## API\x0a\x0a- Listening\x0a\x0a Use `#on:do:` or `#on:send:to:` to listen to model changes\x0a\x0a- Triggering\x0a\x0a `#changed:` is the builtin method used to trigger `#update:` in views.\x0a Use `#announce:` in subclasses to trigger announcements to listeners.";
  294. smalltalk.addMethod(
  295. smalltalk.method({
  296. selector: "announce:",
  297. category: 'announcements',
  298. fn: function (anAnnouncement){
  299. var self=this;
  300. return smalltalk.withContext(function($ctx1) {
  301. _st(self["@announcer"])._announce_(anAnnouncement);
  302. return self}, function($ctx1) {$ctx1.fill(self,"announce:",{anAnnouncement:anAnnouncement},smalltalk.MKModel)})},
  303. args: ["anAnnouncement"],
  304. source: "announce: anAnnouncement\x0a\x09announcer announce: anAnnouncement",
  305. messageSends: ["announce:"],
  306. referencedClasses: []
  307. }),
  308. smalltalk.MKModel);
  309. smalltalk.addMethod(
  310. smalltalk.method({
  311. selector: "changed:",
  312. category: 'announcements',
  313. fn: function (aSelector){
  314. var self=this;
  315. function $MKModelChanged(){return smalltalk.MKModelChanged||(typeof MKModelChanged=="undefined"?nil:MKModelChanged)}
  316. return smalltalk.withContext(function($ctx1) {
  317. self._announce_(_st($MKModelChanged())._aspect_(aSelector));
  318. return self}, function($ctx1) {$ctx1.fill(self,"changed:",{aSelector:aSelector},smalltalk.MKModel)})},
  319. args: ["aSelector"],
  320. source: "changed: aSelector\x0a\x09\x22Trigger `#update:` to all listening aspect views\x22\x0a\x09\x0a\x09self announce: (MKModelChanged aspect: aSelector)",
  321. messageSends: ["announce:", "aspect:"],
  322. referencedClasses: ["MKModelChanged"]
  323. }),
  324. smalltalk.MKModel);
  325. smalltalk.addMethod(
  326. smalltalk.method({
  327. selector: "initialize",
  328. category: 'initialization',
  329. fn: function (){
  330. var self=this;
  331. function $Announcer(){return smalltalk.Announcer||(typeof Announcer=="undefined"?nil:Announcer)}
  332. return smalltalk.withContext(function($ctx1) {
  333. smalltalk.MKModel.superclass.fn.prototype._initialize.apply(_st(self), []);
  334. self["@announcer"]=_st($Announcer())._new();
  335. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MKModel)})},
  336. args: [],
  337. source: "initialize\x0a\x09super initialize.\x0a\x09announcer := Announcer new",
  338. messageSends: ["initialize", "new"],
  339. referencedClasses: ["Announcer"]
  340. }),
  341. smalltalk.MKModel);
  342. smalltalk.addMethod(
  343. smalltalk.method({
  344. selector: "on:do:",
  345. category: 'announcements',
  346. fn: function (anAnnouncement,aBlock){
  347. var self=this;
  348. return smalltalk.withContext(function($ctx1) {
  349. _st(self["@announcer"])._on_do_(anAnnouncement,aBlock);
  350. return self}, function($ctx1) {$ctx1.fill(self,"on:do:",{anAnnouncement:anAnnouncement,aBlock:aBlock},smalltalk.MKModel)})},
  351. args: ["anAnnouncement", "aBlock"],
  352. source: "on: anAnnouncement do: aBlock\x0a\x09announcer on: anAnnouncement do: aBlock",
  353. messageSends: ["on:do:"],
  354. referencedClasses: []
  355. }),
  356. smalltalk.MKModel);
  357. smalltalk.addMethod(
  358. smalltalk.method({
  359. selector: "on:send:to:",
  360. category: 'announcements',
  361. fn: function (anAnnouncement,aSelector,anObject){
  362. var self=this;
  363. return smalltalk.withContext(function($ctx1) {
  364. _st(self["@announcer"])._on_send_to_(anAnnouncement,aSelector,anObject);
  365. return self}, function($ctx1) {$ctx1.fill(self,"on:send:to:",{anAnnouncement:anAnnouncement,aSelector:aSelector,anObject:anObject},smalltalk.MKModel)})},
  366. args: ["anAnnouncement", "aSelector", "anObject"],
  367. source: "on: anAnnouncement send: aSelector to: anObject\x0a\x09announcer on: anAnnouncement send: aSelector to: anObject",
  368. messageSends: ["on:send:to:"],
  369. referencedClasses: []
  370. }),
  371. smalltalk.MKModel);
  372. smalltalk.addClass('MKModelChanged', smalltalk.Object, ['aspect'], 'Moka-Core');
  373. smalltalk.MKModelChanged.comment="I am an announcement announced when a model is changed.";
  374. smalltalk.addMethod(
  375. smalltalk.method({
  376. selector: "aspect",
  377. category: 'accessing',
  378. fn: function (){
  379. var self=this;
  380. return smalltalk.withContext(function($ctx1) {
  381. var $1;
  382. $1=self["@aspect"];
  383. return $1;
  384. }, function($ctx1) {$ctx1.fill(self,"aspect",{},smalltalk.MKModelChanged)})},
  385. args: [],
  386. source: "aspect\x0a\x09^ aspect",
  387. messageSends: [],
  388. referencedClasses: []
  389. }),
  390. smalltalk.MKModelChanged);
  391. smalltalk.addMethod(
  392. smalltalk.method({
  393. selector: "aspect:",
  394. category: 'accessing',
  395. fn: function (aSelector){
  396. var self=this;
  397. return smalltalk.withContext(function($ctx1) {
  398. self["@aspect"]=aSelector;
  399. return self}, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKModelChanged)})},
  400. args: ["aSelector"],
  401. source: "aspect: aSelector\x0a\x09aspect := aSelector",
  402. messageSends: [],
  403. referencedClasses: []
  404. }),
  405. smalltalk.MKModelChanged);
  406. smalltalk.addMethod(
  407. smalltalk.method({
  408. selector: "aspect:",
  409. category: 'instance creation',
  410. fn: function (aSelector){
  411. var self=this;
  412. return smalltalk.withContext(function($ctx1) {
  413. var $2,$3,$1;
  414. $2=self._new();
  415. _st($2)._aspect_(aSelector);
  416. $3=_st($2)._yourself();
  417. $1=$3;
  418. return $1;
  419. }, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKModelChanged.klass)})},
  420. args: ["aSelector"],
  421. source: "aspect: aSelector\x0a\x09^ self new\x0a\x09\x09aspect: aSelector;\x0a\x09\x09yourself",
  422. messageSends: ["aspect:", "new", "yourself"],
  423. referencedClasses: []
  424. }),
  425. smalltalk.MKModelChanged.klass);
  426. smalltalk.addClass('MKView', smalltalk.Widget, ['controller', 'model', 'root', 'layout', 'extraCssClass'], 'Moka-Core');
  427. smalltalk.MKView.comment="I implement the View part of the MVC pattern in Moka.\x0a\x0a## API\x0a- Instance can be created with the `MKView class >> model:*` convenience methods\x0a- rendering is done through `#renderContentOn:`, to be overridden in concrete view classes\x0a- `#update` provide updating facility, refreshing the entire view\x0a- subclasses can override `#defaultControllerClass` to provide a default controller specific to a view\x0a- subclasses can override `#observeModel`\x0a- Extra css classes can be added with `#extraCssClass:`.";
  428. smalltalk.addMethod(
  429. smalltalk.method({
  430. selector: "blur",
  431. category: 'actions',
  432. fn: function (){
  433. var self=this;
  434. return smalltalk.withContext(function($ctx1) {
  435. var $1;
  436. $1=self["@root"];
  437. if(($receiver = $1) == nil || $receiver == null){
  438. $1;
  439. } else {
  440. _st(_st(self["@root"])._asJQuery())._blur();
  441. };
  442. return self}, function($ctx1) {$ctx1.fill(self,"blur",{},smalltalk.MKView)})},
  443. args: [],
  444. source: "blur\x0a\x09root ifNotNil: [ root asJQuery blur ]",
  445. messageSends: ["ifNotNil:", "blur", "asJQuery"],
  446. referencedClasses: []
  447. }),
  448. smalltalk.MKView);
  449. smalltalk.addMethod(
  450. smalltalk.method({
  451. selector: "bottom:",
  452. category: 'layout',
  453. fn: function (aNumber){
  454. var self=this;
  455. return smalltalk.withContext(function($ctx1) {
  456. _st(self._layout())._bottom_(aNumber);
  457. return self}, function($ctx1) {$ctx1.fill(self,"bottom:",{aNumber:aNumber},smalltalk.MKView)})},
  458. args: ["aNumber"],
  459. source: "bottom: aNumber\x0a\x09self layout bottom: aNumber",
  460. messageSends: ["bottom:", "layout"],
  461. referencedClasses: []
  462. }),
  463. smalltalk.MKView);
  464. smalltalk.addMethod(
  465. smalltalk.method({
  466. selector: "centerX:",
  467. category: 'layout',
  468. fn: function (aNumber){
  469. var self=this;
  470. return smalltalk.withContext(function($ctx1) {
  471. _st(self._layout())._centerX_(aNumber);
  472. return self}, function($ctx1) {$ctx1.fill(self,"centerX:",{aNumber:aNumber},smalltalk.MKView)})},
  473. args: ["aNumber"],
  474. source: "centerX: aNumber\x0a\x09self layout centerX: aNumber",
  475. messageSends: ["centerX:", "layout"],
  476. referencedClasses: []
  477. }),
  478. smalltalk.MKView);
  479. smalltalk.addMethod(
  480. smalltalk.method({
  481. selector: "centerY:",
  482. category: 'layout',
  483. fn: function (aNumber){
  484. var self=this;
  485. return smalltalk.withContext(function($ctx1) {
  486. _st(self._layout())._centerY_(aNumber);
  487. return self}, function($ctx1) {$ctx1.fill(self,"centerY:",{aNumber:aNumber},smalltalk.MKView)})},
  488. args: ["aNumber"],
  489. source: "centerY: aNumber\x0a\x09self layout centerY: aNumber",
  490. messageSends: ["centerY:", "layout"],
  491. referencedClasses: []
  492. }),
  493. smalltalk.MKView);
  494. smalltalk.addMethod(
  495. smalltalk.method({
  496. selector: "controller",
  497. category: 'accessing',
  498. fn: function (){
  499. var self=this;
  500. return smalltalk.withContext(function($ctx1) {
  501. var $1,$2;
  502. $1=self["@controller"];
  503. if(($receiver = $1) == nil || $receiver == null){
  504. self._controller_(self._defaultController());
  505. } else {
  506. $1;
  507. };
  508. $2=self["@controller"];
  509. return $2;
  510. }, function($ctx1) {$ctx1.fill(self,"controller",{},smalltalk.MKView)})},
  511. args: [],
  512. source: "controller\x0a\x09\x22Answer the current receiver's controller.\x0a\x09If no controller is installed yet, install the `defaultController`\x0a\x09of the receiver and answer it.\x22\x0a\x09\x0a\x09controller ifNil: [ \x0a\x09\x09self controller: self defaultController ].\x0a\x09^ controller",
  513. messageSends: ["ifNil:", "controller:", "defaultController"],
  514. referencedClasses: []
  515. }),
  516. smalltalk.MKView);
  517. smalltalk.addMethod(
  518. smalltalk.method({
  519. selector: "controller:",
  520. category: 'accessing',
  521. fn: function (aController){
  522. var self=this;
  523. return smalltalk.withContext(function($ctx1) {
  524. var $1,$2;
  525. self["@controller"]=aController;
  526. $1=aController;
  527. _st($1)._view_(self);
  528. $2=_st($1)._model_(self._model());
  529. return self}, function($ctx1) {$ctx1.fill(self,"controller:",{aController:aController},smalltalk.MKView)})},
  530. args: ["aController"],
  531. source: "controller: aController\x0a\x09\x22Install `aController` to be the receiver's controller\x22\x0a\x09\x0a\x09controller := aController.\x0a\x09aController \x0a\x09\x09view: self;\x0a\x09\x09model: self model",
  532. messageSends: ["view:", "model:", "model"],
  533. referencedClasses: []
  534. }),
  535. smalltalk.MKView);
  536. smalltalk.addMethod(
  537. smalltalk.method({
  538. selector: "cssClass",
  539. category: 'accessing',
  540. fn: function (){
  541. var self=this;
  542. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  543. return smalltalk.withContext(function($ctx1) {
  544. var $2,$1;
  545. $1=_st($String())._streamContents_((function(stream){
  546. return smalltalk.withContext(function($ctx2) {
  547. _st(stream).__lt_lt("moka_view");
  548. $ctx2.sendIdx["<<"]=1;
  549. $2=self._extraCssClass();
  550. $ctx2.sendIdx["extraCssClass"]=1;
  551. return _st($2)._ifNotEmpty_((function(){
  552. return smalltalk.withContext(function($ctx3) {
  553. return _st(_st(stream).__lt_lt(" ")).__lt_lt(self._extraCssClass());
  554. $ctx3.sendIdx["<<"]=2;
  555. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  556. }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1,1)})}));
  557. return $1;
  558. }, function($ctx1) {$ctx1.fill(self,"cssClass",{},smalltalk.MKView)})},
  559. args: [],
  560. source: "cssClass\x0a\x09^ String streamContents: [ :stream |\x0a\x09\x09stream << 'moka_view'.\x0a\x09\x09self extraCssClass ifNotEmpty: [\x0a\x09\x09\x09stream << ' ' << self extraCssClass ] ]",
  561. messageSends: ["streamContents:", "<<", "ifNotEmpty:", "extraCssClass"],
  562. referencedClasses: ["String"]
  563. }),
  564. smalltalk.MKView);
  565. smalltalk.addMethod(
  566. smalltalk.method({
  567. selector: "defaultController",
  568. category: 'factory',
  569. fn: function (){
  570. var self=this;
  571. return smalltalk.withContext(function($ctx1) {
  572. var $1;
  573. $1=_st(self._defaultControllerClass())._new();
  574. return $1;
  575. }, function($ctx1) {$ctx1.fill(self,"defaultController",{},smalltalk.MKView)})},
  576. args: [],
  577. source: "defaultController\x0a\x09^ self defaultControllerClass new",
  578. messageSends: ["new", "defaultControllerClass"],
  579. referencedClasses: []
  580. }),
  581. smalltalk.MKView);
  582. smalltalk.addMethod(
  583. smalltalk.method({
  584. selector: "defaultControllerClass",
  585. category: 'defaults',
  586. fn: function (){
  587. var self=this;
  588. function $MKController(){return smalltalk.MKController||(typeof MKController=="undefined"?nil:MKController)}
  589. return smalltalk.withContext(function($ctx1) {
  590. var $1;
  591. $1=$MKController();
  592. return $1;
  593. }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKView)})},
  594. args: [],
  595. source: "defaultControllerClass\x0a\x09^ MKController",
  596. messageSends: [],
  597. referencedClasses: ["MKController"]
  598. }),
  599. smalltalk.MKView);
  600. smalltalk.addMethod(
  601. smalltalk.method({
  602. selector: "defaultLayout",
  603. category: 'defaults',
  604. fn: function (){
  605. var self=this;
  606. function $MKLayout(){return smalltalk.MKLayout||(typeof MKLayout=="undefined"?nil:MKLayout)}
  607. return smalltalk.withContext(function($ctx1) {
  608. var $2,$3,$1;
  609. $2=_st($MKLayout())._new();
  610. _st($2)._left_((0));
  611. _st($2)._top_((0));
  612. _st($2)._right_((0));
  613. _st($2)._bottom_((0));
  614. $3=_st($2)._yourself();
  615. $1=$3;
  616. return $1;
  617. }, function($ctx1) {$ctx1.fill(self,"defaultLayout",{},smalltalk.MKView)})},
  618. args: [],
  619. source: "defaultLayout\x0a\x09^ MKLayout new\x0a\x09\x09left: 0;\x0a\x09\x09top: 0;\x0a\x09\x09right: 0;\x0a\x09\x09bottom: 0;\x0a\x09\x09yourself",
  620. messageSends: ["left:", "new", "top:", "right:", "bottom:", "yourself"],
  621. referencedClasses: ["MKLayout"]
  622. }),
  623. smalltalk.MKView);
  624. smalltalk.addMethod(
  625. smalltalk.method({
  626. selector: "extraCssClass",
  627. category: 'accessing',
  628. fn: function (){
  629. var self=this;
  630. return smalltalk.withContext(function($ctx1) {
  631. var $2,$1;
  632. $2=self["@extraCssClass"];
  633. if(($receiver = $2) == nil || $receiver == null){
  634. $1="";
  635. } else {
  636. $1=$2;
  637. };
  638. return $1;
  639. }, function($ctx1) {$ctx1.fill(self,"extraCssClass",{},smalltalk.MKView)})},
  640. args: [],
  641. source: "extraCssClass\x0a\x09^ extraCssClass ifNil: [ '' ]",
  642. messageSends: ["ifNil:"],
  643. referencedClasses: []
  644. }),
  645. smalltalk.MKView);
  646. smalltalk.addMethod(
  647. smalltalk.method({
  648. selector: "extraCssClass:",
  649. category: 'accessing',
  650. fn: function (aString){
  651. var self=this;
  652. return smalltalk.withContext(function($ctx1) {
  653. self["@extraCssClass"]=aString;
  654. return self}, function($ctx1) {$ctx1.fill(self,"extraCssClass:",{aString:aString},smalltalk.MKView)})},
  655. args: ["aString"],
  656. source: "extraCssClass: aString\x0a\x09extraCssClass := aString",
  657. messageSends: [],
  658. referencedClasses: []
  659. }),
  660. smalltalk.MKView);
  661. smalltalk.addMethod(
  662. smalltalk.method({
  663. selector: "focus",
  664. category: 'actions',
  665. fn: function (){
  666. var self=this;
  667. return smalltalk.withContext(function($ctx1) {
  668. var $1;
  669. $1=self["@root"];
  670. if(($receiver = $1) == nil || $receiver == null){
  671. $1;
  672. } else {
  673. _st(_st(self["@root"])._asJQuery())._focus();
  674. };
  675. return self}, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.MKView)})},
  676. args: [],
  677. source: "focus\x0a\x09root ifNotNil: [ root asJQuery focus ]",
  678. messageSends: ["ifNotNil:", "focus", "asJQuery"],
  679. referencedClasses: []
  680. }),
  681. smalltalk.MKView);
  682. smalltalk.addMethod(
  683. smalltalk.method({
  684. selector: "height:",
  685. category: 'layout',
  686. fn: function (aNumber){
  687. var self=this;
  688. return smalltalk.withContext(function($ctx1) {
  689. _st(self._layout())._height_(aNumber);
  690. return self}, function($ctx1) {$ctx1.fill(self,"height:",{aNumber:aNumber},smalltalk.MKView)})},
  691. args: ["aNumber"],
  692. source: "height: aNumber\x0a\x09self layout height: aNumber",
  693. messageSends: ["height:", "layout"],
  694. referencedClasses: []
  695. }),
  696. smalltalk.MKView);
  697. smalltalk.addMethod(
  698. smalltalk.method({
  699. selector: "layout",
  700. category: 'accessing',
  701. fn: function (){
  702. var self=this;
  703. return smalltalk.withContext(function($ctx1) {
  704. var $2,$1;
  705. $2=self["@layout"];
  706. if(($receiver = $2) == nil || $receiver == null){
  707. self["@layout"]=self._defaultLayout();
  708. $1=self["@layout"];
  709. } else {
  710. $1=$2;
  711. };
  712. return $1;
  713. }, function($ctx1) {$ctx1.fill(self,"layout",{},smalltalk.MKView)})},
  714. args: [],
  715. source: "layout\x0a\x09^ layout ifNil: [ layout := self defaultLayout ]",
  716. messageSends: ["ifNil:", "defaultLayout"],
  717. referencedClasses: []
  718. }),
  719. smalltalk.MKView);
  720. smalltalk.addMethod(
  721. smalltalk.method({
  722. selector: "left:",
  723. category: 'layout',
  724. fn: function (aNumber){
  725. var self=this;
  726. return smalltalk.withContext(function($ctx1) {
  727. _st(self._layout())._left_(aNumber);
  728. return self}, function($ctx1) {$ctx1.fill(self,"left:",{aNumber:aNumber},smalltalk.MKView)})},
  729. args: ["aNumber"],
  730. source: "left: aNumber\x0a\x09self layout left: aNumber",
  731. messageSends: ["left:", "layout"],
  732. referencedClasses: []
  733. }),
  734. smalltalk.MKView);
  735. smalltalk.addMethod(
  736. smalltalk.method({
  737. selector: "model",
  738. category: 'accessing',
  739. fn: function (){
  740. var self=this;
  741. return smalltalk.withContext(function($ctx1) {
  742. var $1;
  743. $1=self["@model"];
  744. return $1;
  745. }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.MKView)})},
  746. args: [],
  747. source: "model\x0a\x09^ model",
  748. messageSends: [],
  749. referencedClasses: []
  750. }),
  751. smalltalk.MKView);
  752. smalltalk.addMethod(
  753. smalltalk.method({
  754. selector: "model:",
  755. category: 'accessing',
  756. fn: function (aModel){
  757. var self=this;
  758. return smalltalk.withContext(function($ctx1) {
  759. self["@model"]=aModel;
  760. self._observeModel();
  761. return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKView)})},
  762. args: ["aModel"],
  763. source: "model: aModel\x0a\x09model := aModel.\x0a\x09self observeModel",
  764. messageSends: ["observeModel"],
  765. referencedClasses: []
  766. }),
  767. smalltalk.MKView);
  768. smalltalk.addMethod(
  769. smalltalk.method({
  770. selector: "observeModel",
  771. category: 'observing',
  772. fn: function (){
  773. var self=this;
  774. return smalltalk.withContext(function($ctx1) {
  775. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.MKView)})},
  776. args: [],
  777. source: "observeModel\x0a\x09\x22No op. Override in subclasses\x22",
  778. messageSends: [],
  779. referencedClasses: []
  780. }),
  781. smalltalk.MKView);
  782. smalltalk.addMethod(
  783. smalltalk.method({
  784. selector: "position",
  785. category: 'accessing',
  786. fn: function (){
  787. var self=this;
  788. return smalltalk.withContext(function($ctx1) {
  789. var $2,$1;
  790. $2=self["@root"];
  791. if(($receiver = $2) == nil || $receiver == null){
  792. $1=$2;
  793. } else {
  794. var offset;
  795. offset=_st(_st(self["@root"])._asJQuery())._offset();
  796. offset;
  797. $1=_st(_st(offset)._left()).__at(_st(offset)._top());
  798. };
  799. return $1;
  800. }, function($ctx1) {$ctx1.fill(self,"position",{},smalltalk.MKView)})},
  801. args: [],
  802. source: "position\x0a\x09\x22Answer the position of the reciever in the page\x22\x0a\x09\x0a\x09^ root ifNotNil: [ \x0a\x09\x09| offset |\x0a\x09\x09offset := root asJQuery offset.\x0a\x09\x09offset left @ offset top ]",
  803. messageSends: ["ifNotNil:", "offset", "asJQuery", "@", "left", "top"],
  804. referencedClasses: []
  805. }),
  806. smalltalk.MKView);
  807. smalltalk.addMethod(
  808. smalltalk.method({
  809. selector: "remove",
  810. category: 'actions',
  811. fn: function (){
  812. var self=this;
  813. return smalltalk.withContext(function($ctx1) {
  814. var $1;
  815. $1=self["@root"];
  816. if(($receiver = $1) == nil || $receiver == null){
  817. $1;
  818. } else {
  819. _st(_st(self["@root"])._asJQuery())._remove();
  820. };
  821. return self}, function($ctx1) {$ctx1.fill(self,"remove",{},smalltalk.MKView)})},
  822. args: [],
  823. source: "remove\x0a\x09\x22Removes the receiver from the DOM\x22\x0a\x09root ifNotNil: [ root asJQuery remove ]",
  824. messageSends: ["ifNotNil:", "remove", "asJQuery"],
  825. referencedClasses: []
  826. }),
  827. smalltalk.MKView);
  828. smalltalk.addMethod(
  829. smalltalk.method({
  830. selector: "render",
  831. category: 'rendering',
  832. fn: function (){
  833. var self=this;
  834. return smalltalk.withContext(function($ctx1) {
  835. self._appendToJQuery_("body"._asJQuery());
  836. return self}, function($ctx1) {$ctx1.fill(self,"render",{},smalltalk.MKView)})},
  837. args: [],
  838. source: "render\x0a\x09\x22Append the receiver to the BODY element\x22\x0a\x09\x0a\x09self appendToJQuery: 'body' asJQuery",
  839. messageSends: ["appendToJQuery:", "asJQuery"],
  840. referencedClasses: []
  841. }),
  842. smalltalk.MKView);
  843. smalltalk.addMethod(
  844. smalltalk.method({
  845. selector: "renderContentOn:",
  846. category: 'rendering',
  847. fn: function (html){
  848. var self=this;
  849. return smalltalk.withContext(function($ctx1) {
  850. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.MKView)})},
  851. args: ["html"],
  852. source: "renderContentOn: html\x0a\x09\x22Main rendering method, override in subclasses.\x22",
  853. messageSends: [],
  854. referencedClasses: []
  855. }),
  856. smalltalk.MKView);
  857. smalltalk.addMethod(
  858. smalltalk.method({
  859. selector: "renderOn:",
  860. category: 'rendering',
  861. fn: function (html){
  862. var self=this;
  863. return smalltalk.withContext(function($ctx1) {
  864. var $1,$2;
  865. $1=_st(html)._tag_(self._tag());
  866. _st($1)._class_(self._cssClass());
  867. _st($1)._style_(_st(self._layout())._asCssString());
  868. $2=_st($1)._yourself();
  869. self["@root"]=$2;
  870. _st(self["@root"])._with_((function(){
  871. return smalltalk.withContext(function($ctx2) {
  872. return self._renderContentOn_(html);
  873. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  874. self._setupEventHandlers();
  875. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},smalltalk.MKView)})},
  876. args: ["html"],
  877. source: "renderOn: html\x0a\x09\x22Basic rendering method.\x0a\x09Do not override this method, but `#renderContentOn:`\x22\x0a\x09\x0a\x09root := (html tag: self tag)\x0a\x09\x09class: self cssClass;\x0a\x09\x09style: self layout asCssString;\x0a\x09\x09yourself.\x0a\x09root with: [ self renderContentOn: html ].\x0a\x09\x0a\x09self setupEventHandlers",
  878. messageSends: ["class:", "tag:", "tag", "cssClass", "style:", "asCssString", "layout", "yourself", "with:", "renderContentOn:", "setupEventHandlers"],
  879. referencedClasses: []
  880. }),
  881. smalltalk.MKView);
  882. smalltalk.addMethod(
  883. smalltalk.method({
  884. selector: "right:",
  885. category: 'layout',
  886. fn: function (aNumber){
  887. var self=this;
  888. return smalltalk.withContext(function($ctx1) {
  889. _st(self._layout())._right_(aNumber);
  890. return self}, function($ctx1) {$ctx1.fill(self,"right:",{aNumber:aNumber},smalltalk.MKView)})},
  891. args: ["aNumber"],
  892. source: "right: aNumber\x0a\x09self layout right: aNumber",
  893. messageSends: ["right:", "layout"],
  894. referencedClasses: []
  895. }),
  896. smalltalk.MKView);
  897. smalltalk.addMethod(
  898. smalltalk.method({
  899. selector: "setupEventHandlers",
  900. category: 'private',
  901. fn: function (){
  902. var self=this;
  903. return smalltalk.withContext(function($ctx1) {
  904. var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12;
  905. $1=self["@root"];
  906. _st($1)._onClick_((function(event){
  907. return smalltalk.withContext(function($ctx2) {
  908. $2=self._controller();
  909. $ctx2.sendIdx["controller"]=1;
  910. return _st($2)._onClick_(event);
  911. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,1)})}));
  912. $ctx1.sendIdx["onClick:"]=1;
  913. _st($1)._onDblClick_((function(event){
  914. return smalltalk.withContext(function($ctx2) {
  915. $3=self._controller();
  916. $ctx2.sendIdx["controller"]=2;
  917. return _st($3)._onDblClick_(event);
  918. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,2)})}));
  919. $ctx1.sendIdx["onDblClick:"]=1;
  920. _st($1)._onMouseEnter_((function(event){
  921. return smalltalk.withContext(function($ctx2) {
  922. $4=self._controller();
  923. $ctx2.sendIdx["controller"]=3;
  924. return _st($4)._onMouseEnter_(event);
  925. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,3)})}));
  926. $ctx1.sendIdx["onMouseEnter:"]=1;
  927. _st($1)._onMouseLeave_((function(event){
  928. return smalltalk.withContext(function($ctx2) {
  929. $5=self._controller();
  930. $ctx2.sendIdx["controller"]=4;
  931. return _st($5)._onMouseLeave_(event);
  932. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,4)})}));
  933. $ctx1.sendIdx["onMouseLeave:"]=1;
  934. _st($1)._onMouseOver_((function(event){
  935. return smalltalk.withContext(function($ctx2) {
  936. $6=self._controller();
  937. $ctx2.sendIdx["controller"]=5;
  938. return _st($6)._onMouseOver_(event);
  939. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,5)})}));
  940. $ctx1.sendIdx["onMouseOver:"]=1;
  941. _st($1)._onMouseOut_((function(event){
  942. return smalltalk.withContext(function($ctx2) {
  943. $7=self._controller();
  944. $ctx2.sendIdx["controller"]=6;
  945. return _st($7)._onMouseOut_(event);
  946. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,6)})}));
  947. $ctx1.sendIdx["onMouseOut:"]=1;
  948. _st($1)._onMouseMove_((function(event){
  949. return smalltalk.withContext(function($ctx2) {
  950. $8=self._controller();
  951. $ctx2.sendIdx["controller"]=7;
  952. return _st($8)._onMouseMove_(event);
  953. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,7)})}));
  954. $ctx1.sendIdx["onMouseMove:"]=1;
  955. _st($1)._onKeyDown_((function(event){
  956. return smalltalk.withContext(function($ctx2) {
  957. $9=self._controller();
  958. $ctx2.sendIdx["controller"]=8;
  959. return _st($9)._onKeyDown_(event);
  960. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,8)})}));
  961. $ctx1.sendIdx["onKeyDown:"]=1;
  962. _st($1)._onKeyUp_((function(event){
  963. return smalltalk.withContext(function($ctx2) {
  964. $10=self._controller();
  965. $ctx2.sendIdx["controller"]=9;
  966. return _st($10)._onKeyUp_(event);
  967. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,9)})}));
  968. $ctx1.sendIdx["onKeyUp:"]=1;
  969. _st($1)._onKeyPress_((function(event){
  970. return smalltalk.withContext(function($ctx2) {
  971. $11=self._controller();
  972. $ctx2.sendIdx["controller"]=10;
  973. return _st($11)._onKeyPress_(event);
  974. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,10)})}));
  975. $ctx1.sendIdx["onKeyPress:"]=1;
  976. $12=_st($1)._onChange_((function(event){
  977. return smalltalk.withContext(function($ctx2) {
  978. return _st(self._controller())._onChange_(event);
  979. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,11)})}));
  980. $ctx1.sendIdx["onChange:"]=1;
  981. return self}, function($ctx1) {$ctx1.fill(self,"setupEventHandlers",{},smalltalk.MKView)})},
  982. args: [],
  983. source: "setupEventHandlers\x0a\x09root\x0a\x09\x09onClick: [ :event | self controller onClick: event ];\x0a\x09\x09onDblClick: [ :event | self controller onDblClick: event ];\x0a\x09\x09onMouseEnter: [ :event | self controller onMouseEnter: event ];\x0a\x09\x09onMouseLeave: [ :event | self controller onMouseLeave: event ];\x0a\x09\x09onMouseOver: [ :event | self controller onMouseOver: event ];\x0a\x09\x09onMouseOut: [ :event | self controller onMouseOut: event ];\x0a\x09\x09onMouseMove: [ :event | self controller onMouseMove: event ];\x0a\x09\x09onKeyDown: [ :event | self controller onKeyDown: event ];\x0a\x09\x09onKeyUp: [ :event | self controller onKeyUp: event ];\x0a\x09\x09onKeyPress: [ :event | self controller onKeyPress: event ];\x0a\x09\x09onChange: [ :event | self controller onChange: event ]",
  984. messageSends: ["onClick:", "controller", "onDblClick:", "onMouseEnter:", "onMouseLeave:", "onMouseOver:", "onMouseOut:", "onMouseMove:", "onKeyDown:", "onKeyUp:", "onKeyPress:", "onChange:"],
  985. referencedClasses: []
  986. }),
  987. smalltalk.MKView);
  988. smalltalk.addMethod(
  989. smalltalk.method({
  990. selector: "tag",
  991. category: 'accessing',
  992. fn: function (){
  993. var self=this;
  994. return smalltalk.withContext(function($ctx1) {
  995. return "div";
  996. }, function($ctx1) {$ctx1.fill(self,"tag",{},smalltalk.MKView)})},
  997. args: [],
  998. source: "tag\x0a\x09^ 'div'",
  999. messageSends: [],
  1000. referencedClasses: []
  1001. }),
  1002. smalltalk.MKView);
  1003. smalltalk.addMethod(
  1004. smalltalk.method({
  1005. selector: "top:",
  1006. category: 'layout',
  1007. fn: function (aNumber){
  1008. var self=this;
  1009. return smalltalk.withContext(function($ctx1) {
  1010. _st(self._layout())._top_(aNumber);
  1011. return self}, function($ctx1) {$ctx1.fill(self,"top:",{aNumber:aNumber},smalltalk.MKView)})},
  1012. args: ["aNumber"],
  1013. source: "top: aNumber\x0a\x09self layout top: aNumber",
  1014. messageSends: ["top:", "layout"],
  1015. referencedClasses: []
  1016. }),
  1017. smalltalk.MKView);
  1018. smalltalk.addMethod(
  1019. smalltalk.method({
  1020. selector: "update",
  1021. category: 'updating',
  1022. fn: function (){
  1023. var self=this;
  1024. return smalltalk.withContext(function($ctx1) {
  1025. var $1,$2;
  1026. $1=self["@root"];
  1027. if(($receiver = $1) == nil || $receiver == null){
  1028. self._error_("The view has not been rendered yet");
  1029. } else {
  1030. $1;
  1031. };
  1032. $2=_st(self["@root"])._asJQuery();
  1033. $ctx1.sendIdx["asJQuery"]=1;
  1034. _st($2)._empty();
  1035. _st((function(html){
  1036. return smalltalk.withContext(function($ctx2) {
  1037. return self._renderContentOn_(html);
  1038. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,2)})}))._appendToJQuery_(_st(self["@root"])._asJQuery());
  1039. return self}, function($ctx1) {$ctx1.fill(self,"update",{},smalltalk.MKView)})},
  1040. args: [],
  1041. source: "update\x0a\x09\x22Update the view's content. Override in subclasses to fine-tune updating\x22\x0a\x09\x0a\x09root ifNil: [ self error: 'The view has not been rendered yet' ].\x0a\x09\x0a\x09root asJQuery empty.\x0a\x09[ :html | self renderContentOn: html ] \x0a\x09\x09appendToJQuery: root asJQuery",
  1042. messageSends: ["ifNil:", "error:", "empty", "asJQuery", "appendToJQuery:", "renderContentOn:"],
  1043. referencedClasses: []
  1044. }),
  1045. smalltalk.MKView);
  1046. smalltalk.addMethod(
  1047. smalltalk.method({
  1048. selector: "width:",
  1049. category: 'layout',
  1050. fn: function (aNumber){
  1051. var self=this;
  1052. return smalltalk.withContext(function($ctx1) {
  1053. _st(self._layout())._width_(aNumber);
  1054. return self}, function($ctx1) {$ctx1.fill(self,"width:",{aNumber:aNumber},smalltalk.MKView)})},
  1055. args: ["aNumber"],
  1056. source: "width: aNumber\x0a\x09self layout width: aNumber",
  1057. messageSends: ["width:", "layout"],
  1058. referencedClasses: []
  1059. }),
  1060. smalltalk.MKView);
  1061. smalltalk.addMethod(
  1062. smalltalk.method({
  1063. selector: "model:",
  1064. category: 'instance creation',
  1065. fn: function (aModel){
  1066. var self=this;
  1067. return smalltalk.withContext(function($ctx1) {
  1068. var $2,$3,$1;
  1069. $2=self._new();
  1070. _st($2)._model_(aModel);
  1071. $3=_st($2)._yourself();
  1072. $1=$3;
  1073. return $1;
  1074. }, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKView.klass)})},
  1075. args: ["aModel"],
  1076. source: "model: aModel\x0a\x09^ self new\x0a\x09\x09model: aModel;\x0a\x09\x09yourself",
  1077. messageSends: ["model:", "new", "yourself"],
  1078. referencedClasses: []
  1079. }),
  1080. smalltalk.MKView.klass);
  1081. smalltalk.addMethod(
  1082. smalltalk.method({
  1083. selector: "model:controller:",
  1084. category: 'instance creation',
  1085. fn: function (aModel,aController){
  1086. var self=this;
  1087. return smalltalk.withContext(function($ctx1) {
  1088. var $2,$3,$1;
  1089. $2=self._model_(aModel);
  1090. _st($2)._controller_(aController);
  1091. $3=_st($2)._yourself();
  1092. $1=$3;
  1093. return $1;
  1094. }, function($ctx1) {$ctx1.fill(self,"model:controller:",{aModel:aModel,aController:aController},smalltalk.MKView.klass)})},
  1095. args: ["aModel", "aController"],
  1096. source: "model: aModel controller: aController\x0a\x09^ (self model: aModel)\x0a\x09\x09controller: aController;\x0a\x09\x09yourself",
  1097. messageSends: ["controller:", "model:", "yourself"],
  1098. referencedClasses: []
  1099. }),
  1100. smalltalk.MKView.klass);
  1101. smalltalk.addClass('MKAspectsView', smalltalk.MKView, [], 'Moka-Core');
  1102. smalltalk.MKAspectsView.comment="I am an abstract view which state depend on aspects of a model.";
  1103. smalltalk.addMethod(
  1104. smalltalk.method({
  1105. selector: "defaultControllerClass",
  1106. category: 'defaults',
  1107. fn: function (){
  1108. var self=this;
  1109. function $MKAspectController(){return smalltalk.MKAspectController||(typeof MKAspectController=="undefined"?nil:MKAspectController)}
  1110. return smalltalk.withContext(function($ctx1) {
  1111. return $MKAspectController();
  1112. }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKAspectsView)})},
  1113. args: [],
  1114. source: "defaultControllerClass\x0a\x09^ MKAspectController",
  1115. messageSends: [],
  1116. referencedClasses: ["MKAspectController"]
  1117. }),
  1118. smalltalk.MKAspectsView);
  1119. smalltalk.addMethod(
  1120. smalltalk.method({
  1121. selector: "observeModel",
  1122. category: 'observing',
  1123. fn: function (){
  1124. var self=this;
  1125. function $MKModelChanged(){return smalltalk.MKModelChanged||(typeof MKModelChanged=="undefined"?nil:MKModelChanged)}
  1126. return smalltalk.withContext(function($ctx1) {
  1127. smalltalk.MKAspectsView.superclass.fn.prototype._observeModel.apply(_st(self), []);
  1128. _st(self._model())._on_send_to_($MKModelChanged(),"update:",self);
  1129. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.MKAspectsView)})},
  1130. args: [],
  1131. source: "observeModel\x0a\x09super observeModel.\x0a\x09\x0a\x09self model\x0a\x09\x09on: MKModelChanged\x0a\x09\x09send: 'update:'\x0a\x09\x09to: self",
  1132. messageSends: ["observeModel", "on:send:to:", "model"],
  1133. referencedClasses: ["MKModelChanged"]
  1134. }),
  1135. smalltalk.MKAspectsView);
  1136. smalltalk.addMethod(
  1137. smalltalk.method({
  1138. selector: "update:",
  1139. category: 'updating',
  1140. fn: function (anAnnouncement){
  1141. var self=this;
  1142. return smalltalk.withContext(function($ctx1) {
  1143. return self}, function($ctx1) {$ctx1.fill(self,"update:",{anAnnouncement:anAnnouncement},smalltalk.MKAspectsView)})},
  1144. args: ["anAnnouncement"],
  1145. source: "update: anAnnouncement\x0a\x09\x22Override in subclasses to match the view's aspect(s)\x22",
  1146. messageSends: [],
  1147. referencedClasses: []
  1148. }),
  1149. smalltalk.MKAspectsView);
  1150. smalltalk.addMethod(
  1151. smalltalk.method({
  1152. selector: "valueForAspect:",
  1153. category: 'accessing',
  1154. fn: function (aSelector){
  1155. var self=this;
  1156. return smalltalk.withContext(function($ctx1) {
  1157. var $1;
  1158. $1=_st(self._model())._perform_(aSelector);
  1159. return $1;
  1160. }, function($ctx1) {$ctx1.fill(self,"valueForAspect:",{aSelector:aSelector},smalltalk.MKAspectsView)})},
  1161. args: ["aSelector"],
  1162. source: "valueForAspect: aSelector\x0a\x09^ self model perform: aSelector",
  1163. messageSends: ["perform:", "model"],
  1164. referencedClasses: []
  1165. }),
  1166. smalltalk.MKAspectsView);
  1167. smalltalk.addClass('MKSingleAspectView', smalltalk.MKAspectsView, ['aspect'], 'Moka-Core');
  1168. smalltalk.MKSingleAspectView.comment="I am an abstract view which state depend on an `aspect` of a model. \x0a\x0a##API\x0a\x0a- Use the `#aspect:` to listen to a specific aspect of a model. Changes will then trigger `#update`.";
  1169. smalltalk.addMethod(
  1170. smalltalk.method({
  1171. selector: "aspect",
  1172. category: 'accessing',
  1173. fn: function (){
  1174. var self=this;
  1175. return smalltalk.withContext(function($ctx1) {
  1176. var $1;
  1177. $1=self["@aspect"];
  1178. return $1;
  1179. }, function($ctx1) {$ctx1.fill(self,"aspect",{},smalltalk.MKSingleAspectView)})},
  1180. args: [],
  1181. source: "aspect\x0a\x09^ aspect",
  1182. messageSends: [],
  1183. referencedClasses: []
  1184. }),
  1185. smalltalk.MKSingleAspectView);
  1186. smalltalk.addMethod(
  1187. smalltalk.method({
  1188. selector: "aspect:",
  1189. category: 'accessing',
  1190. fn: function (aSelector){
  1191. var self=this;
  1192. return smalltalk.withContext(function($ctx1) {
  1193. self["@aspect"]=aSelector;
  1194. return self}, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKSingleAspectView)})},
  1195. args: ["aSelector"],
  1196. source: "aspect: aSelector\x0a\x09aspect := aSelector",
  1197. messageSends: [],
  1198. referencedClasses: []
  1199. }),
  1200. smalltalk.MKSingleAspectView);
  1201. smalltalk.addMethod(
  1202. smalltalk.method({
  1203. selector: "aspectValue",
  1204. category: 'accessing',
  1205. fn: function (){
  1206. var self=this;
  1207. return smalltalk.withContext(function($ctx1) {
  1208. var $1;
  1209. $1=self._valueForAspect_(self._aspect());
  1210. return $1;
  1211. }, function($ctx1) {$ctx1.fill(self,"aspectValue",{},smalltalk.MKSingleAspectView)})},
  1212. args: [],
  1213. source: "aspectValue\x0a\x09^ self valueForAspect: self aspect",
  1214. messageSends: ["valueForAspect:", "aspect"],
  1215. referencedClasses: []
  1216. }),
  1217. smalltalk.MKSingleAspectView);
  1218. smalltalk.addMethod(
  1219. smalltalk.method({
  1220. selector: "defaultControllerClass",
  1221. category: 'defaults',
  1222. fn: function (){
  1223. var self=this;
  1224. function $MKSingleAspectController(){return smalltalk.MKSingleAspectController||(typeof MKSingleAspectController=="undefined"?nil:MKSingleAspectController)}
  1225. return smalltalk.withContext(function($ctx1) {
  1226. return $MKSingleAspectController();
  1227. }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKSingleAspectView)})},
  1228. args: [],
  1229. source: "defaultControllerClass\x0a\x09^ MKSingleAspectController",
  1230. messageSends: [],
  1231. referencedClasses: ["MKSingleAspectController"]
  1232. }),
  1233. smalltalk.MKSingleAspectView);
  1234. smalltalk.addMethod(
  1235. smalltalk.method({
  1236. selector: "update:",
  1237. category: 'updating',
  1238. fn: function (anAnnouncement){
  1239. var self=this;
  1240. return smalltalk.withContext(function($ctx1) {
  1241. var $2,$1;
  1242. $2=_st(anAnnouncement)._aspect();
  1243. $ctx1.sendIdx["aspect"]=1;
  1244. $1=_st($2).__eq(self._aspect());
  1245. if(smalltalk.assert($1)){
  1246. self._update();
  1247. };
  1248. return self}, function($ctx1) {$ctx1.fill(self,"update:",{anAnnouncement:anAnnouncement},smalltalk.MKSingleAspectView)})},
  1249. args: ["anAnnouncement"],
  1250. source: "update: anAnnouncement\x0a\x09anAnnouncement aspect = self aspect ifTrue: [\x0a\x09\x09self update ]",
  1251. messageSends: ["ifTrue:", "=", "aspect", "update"],
  1252. referencedClasses: []
  1253. }),
  1254. smalltalk.MKSingleAspectView);
  1255. smalltalk.addMethod(
  1256. smalltalk.method({
  1257. selector: "model:aspect:",
  1258. category: 'instance creation',
  1259. fn: function (aModel,aSelector){
  1260. var self=this;
  1261. return smalltalk.withContext(function($ctx1) {
  1262. var $2,$3,$1;
  1263. $2=self._model_(aModel);
  1264. _st($2)._aspect_(aSelector);
  1265. $3=_st($2)._yourself();
  1266. $1=$3;
  1267. return $1;
  1268. }, function($ctx1) {$ctx1.fill(self,"model:aspect:",{aModel:aModel,aSelector:aSelector},smalltalk.MKSingleAspectView.klass)})},
  1269. args: ["aModel", "aSelector"],
  1270. source: "model: aModel aspect: aSelector\x0a\x09^ (self model: aModel)\x0a\x09\x09aspect: aSelector;\x0a\x09\x09yourself",
  1271. messageSends: ["aspect:", "model:", "yourself"],
  1272. referencedClasses: []
  1273. }),
  1274. smalltalk.MKSingleAspectView.klass);
  1275. });