| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 | define("amber_core/Moka-Controllers", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/Moka-Core", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st){smalltalk.addPackage('Moka-Controllers');smalltalk.packages["Moka-Controllers"].transport = {"type":"amd","amdNamespace":"amber_core"};smalltalk.addClass('MKAnyKeyInputController', smalltalk.MKSingleAspectController, ['lastValue'], 'Moka-Controllers');smalltalk.MKAnyKeyInputController.comment="I am the default controller for `MKTextAreaView`. Actions are performed on any key press if the view's value changes.";smalltalk.addMethod(smalltalk.method({selector: "inputText",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._view())._value();return $1;}, function($ctx1) {$ctx1.fill(self,"inputText",{},smalltalk.MKAnyKeyInputController)})},args: [],source: "inputText\x0a\x09^ self view value",messageSends: ["value", "view"],referencedClasses: []}),smalltalk.MKAnyKeyInputController);smalltalk.addMethod(smalltalk.method({selector: "onKeyUp:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { self._setNewValue();return self}, function($ctx1) {$ctx1.fill(self,"onKeyUp:",{anEvent:anEvent},smalltalk.MKAnyKeyInputController)})},args: ["anEvent"],source: "onKeyUp: anEvent\x0a\x09self setNewValue",messageSends: ["setNewValue"],referencedClasses: []}),smalltalk.MKAnyKeyInputController);smalltalk.addMethod(smalltalk.method({selector: "setNewValue",category: 'actions',fn: function (){var self=this;var newValue;return smalltalk.withContext(function($ctx1) { var $1;newValue=self._inputText();$1=_st(newValue).__eq(self["@lastValue"]);if(smalltalk.assert($1)){return self;};self["@lastValue"]=newValue;self._performAspectActionWith_(newValue);return self}, function($ctx1) {$ctx1.fill(self,"setNewValue",{newValue:newValue},smalltalk.MKAnyKeyInputController)})},args: [],source: "setNewValue\x0a\x09| newValue |\x0a\x09\x0a\x09newValue := self inputText.\x0a\x09newValue = lastValue ifTrue: [ ^ self ].\x0a\x09\x0a\x09lastValue := newValue.\x0a\x09self performAspectActionWith: newValue",messageSends: ["inputText", "ifTrue:", "=", "performAspectActionWith:"],referencedClasses: []}),smalltalk.MKAnyKeyInputController);smalltalk.addClass('MKEnterInputController', smalltalk.MKAnyKeyInputController, [], 'Moka-Controllers');smalltalk.MKEnterInputController.comment="I am the default controller for `MKInputView`. \x0aActions are performed on 'enter' key press.";smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}return smalltalk.withContext(function($ctx1) { var $1;$1=_st(_st(anEvent)._keyCode()).__eq(_st(_st($String())._cr())._asciiValue());if(smalltalk.assert($1)){self._setNewValue();};return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKEnterInputController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09anEvent keyCode = String cr asciiValue ifTrue: [\x0a\x09\x09self setNewValue ]",messageSends: ["ifTrue:", "=", "keyCode", "asciiValue", "cr", "setNewValue"],referencedClasses: ["String"]}),smalltalk.MKEnterInputController);smalltalk.addMethod(smalltalk.method({selector: "onKeyUp:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"onKeyUp:",{anEvent:anEvent},smalltalk.MKEnterInputController)})},args: ["anEvent"],source: "onKeyUp: anEvent",messageSends: [],referencedClasses: []}),smalltalk.MKEnterInputController);smalltalk.addClass('MKButtonController', smalltalk.MKSingleAspectController, [], 'Moka-Controllers');smalltalk.MKButtonController.comment="I am the default controller for `MKButtonView`.";smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { self._performAspectAction();return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKButtonController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self performAspectAction",messageSends: ["performAspectAction"],referencedClasses: []}),smalltalk.MKButtonController);smalltalk.addClass('MKCheckboxController', smalltalk.MKSingleAspectController, [], 'Moka-Controllers');smalltalk.MKCheckboxController.comment="I am the default controller for `MKCheckboxView`.";smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { self._toggle();return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKCheckboxController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self toggle",messageSends: ["toggle"],referencedClasses: []}),smalltalk.MKCheckboxController);smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { _st(anEvent)._stopPropagation();return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKCheckboxController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09\x22Avoid scrolling in scrollable views\x22\x0a\x09\x0a\x09anEvent stopPropagation",messageSends: ["stopPropagation"],referencedClasses: []}),smalltalk.MKCheckboxController);smalltalk.addMethod(smalltalk.method({selector: "onKeyPress:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;$1=_st(_st(anEvent)._charCode()).__eq(" "._asciiValue());if(smalltalk.assert($1)){self._toggle();_st(anEvent)._stopPropagation();$2=_st(anEvent)._preventDefault();$2;};return self}, function($ctx1) {$ctx1.fill(self,"onKeyPress:",{anEvent:anEvent},smalltalk.MKCheckboxController)})},args: ["anEvent"],source: "onKeyPress: anEvent\x0a\x09anEvent charCode = ' ' asciiValue ifTrue: [ \x0a\x09\x09self toggle.\x0a\x09\x09anEvent stopPropagation; preventDefault ]",messageSends: ["ifTrue:", "=", "charCode", "asciiValue", "toggle", "stopPropagation", "preventDefault"],referencedClasses: []}),smalltalk.MKCheckboxController);smalltalk.addMethod(smalltalk.method({selector: "toggle",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { self._performAspectActionWith_(_st(_st(self._view())._checked())._not());return self}, function($ctx1) {$ctx1.fill(self,"toggle",{},smalltalk.MKCheckboxController)})},args: [],source: "toggle\x0a\x09self performAspectActionWith: self view checked not",messageSends: ["performAspectActionWith:", "not", "checked", "view"],referencedClasses: []}),smalltalk.MKCheckboxController);smalltalk.addClass('MKDropdownController', smalltalk.MKAspectsController, [], 'Moka-Controllers');smalltalk.MKDropdownController.comment="I am the default controller for `MKDropdownView`.";smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._view())._popupList();return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKDropdownController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self view popupList",messageSends: ["popupList", "view"],referencedClasses: []}),smalltalk.MKDropdownController);smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}return smalltalk.withContext(function($ctx1) { var $1;$1=_st(_st(anEvent)._keyCode()).__eq(_st(_st($String())._cr())._asciiValue());if(smalltalk.assert($1)){_st(self._view())._popupList();};return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKDropdownController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09anEvent keyCode = String cr asciiValue ifTrue: [\x0a\x09\x09self view popupList ]",messageSends: ["ifTrue:", "=", "keyCode", "asciiValue", "cr", "popupList", "view"],referencedClasses: ["String"]}),smalltalk.MKDropdownController);smalltalk.addClass('MKListController', smalltalk.MKAspectsController, ['downRepeater', 'upRepeater'], 'Moka-Controllers');smalltalk.addMethod(smalltalk.method({selector: "activateItem:",category: 'actions',fn: function (anItem){var self=this;return smalltalk.withContext(function($ctx1) { self._selectItem_(anItem);return self}, function($ctx1) {$ctx1.fill(self,"activateItem:",{anItem:anItem},smalltalk.MKListController)})},args: ["anItem"],source: "activateItem: anItem\x0a\x09\x22On item activation, change the model selection\x22\x0a\x09\x0a\x09self selectItem: anItem",messageSends: ["selectItem:"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "activeItem",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._view())._activeItem();return $1;}, function($ctx1) {$ctx1.fill(self,"activeItem",{},smalltalk.MKListController)})},args: [],source: "activeItem\x0a\x09^ self view activeItem",messageSends: ["activeItem", "view"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "collection",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._view())._collection();return $1;}, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.MKListController)})},args: [],source: "collection\x0a\x09^ self view collection",messageSends: ["collection", "view"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "downRepeater",category: 'accessing',fn: function (){var self=this;function $MKRepeater(){return smalltalk.MKRepeater||(typeof MKRepeater=="undefined"?nil:MKRepeater)}return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@downRepeater"];if(($receiver = $2) == nil || $receiver == null){self["@downRepeater"]=_st($MKRepeater())._new();$1=self["@downRepeater"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"downRepeater",{},smalltalk.MKListController)})},args: [],source: "downRepeater\x0a\x09^ downRepeater ifNil: [ downRepeater := MKRepeater new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["MKRepeater"]}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "itemForTarget:",category: 'private',fn: function (aDOMElement){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._view())._findItemFor_(aDOMElement);return $1;}, function($ctx1) {$ctx1.fill(self,"itemForTarget:",{aDOMElement:aDOMElement},smalltalk.MKListController)})},args: ["aDOMElement"],source: "itemForTarget: aDOMElement\x0a\x09^ self view findItemFor: aDOMElement",messageSends: ["findItemFor:", "view"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "nextItem",category: 'private',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$5,$4,$3,$1;$2=self._collection();$ctx1.sendIdx["collection"]=1;$5=self._collection();$ctx1.sendIdx["collection"]=2;$4=_st($5)._indexOf_(self._activeItem());$3=_st($4).__plus((1));$1=_st($2)._at_ifAbsent_($3,(function(){return smalltalk.withContext(function($ctx2) {return _st(self._collection())._last();}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"nextItem",{},smalltalk.MKListController)})},args: [],source: "nextItem\x0a\x09^ self collection \x0a\x09\x09at: (self collection indexOf: self activeItem) + 1\x0a\x09\x09ifAbsent: [ self collection last ]",messageSends: ["at:ifAbsent:", "collection", "+", "indexOf:", "activeItem", "last"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { self._selectItem_(self._itemForTarget_(_st(anEvent)._target()));return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKListController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self selectItem: (self itemForTarget: anEvent target)",messageSends: ["selectItem:", "itemForTarget:", "target"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$4,$5,$6,$7;$2=_st(anEvent)._keyCode();$ctx1.sendIdx["keyCode"]=1;$1=_st($2).__eq((40));$ctx1.sendIdx["="]=1;if(smalltalk.assert($1)){_st(anEvent)._preventDefault();$ctx1.sendIdx["preventDefault"]=1;$3=_st(anEvent)._stopPropagation();$ctx1.sendIdx["stopPropagation"]=1;$3;$4=self._upRepeater();$ctx1.sendIdx["upRepeater"]=1;_st($4)._stopRepeating();$ctx1.sendIdx["stopRepeating"]=1;$5=self._downRepeater();$ctx1.sendIdx["downRepeater"]=1;_st($5)._repeat_((function(){return smalltalk.withContext(function($ctx2) {return self._activateItem_(self._nextItem());$ctx2.sendIdx["activateItem:"]=1;}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));$ctx1.sendIdx["repeat:"]=1;};$6=_st(_st(anEvent)._keyCode()).__eq((38));if(smalltalk.assert($6)){_st(anEvent)._preventDefault();$7=_st(anEvent)._stopPropagation();$7;_st(self._downRepeater())._stopRepeating();_st(self._upRepeater())._repeat_((function(){return smalltalk.withContext(function($ctx2) {return self._activateItem_(self._previousItem());}, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})}));};return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKListController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09\x22Down\x22\x0a\x09anEvent keyCode = 40 ifTrue: [ \x0a\x09\x09anEvent preventDefault; stopPropagation.\x0a\x09\x09self upRepeater stopRepeating.\x0a\x09\x09self downRepeater repeat: [ \x0a\x09\x09\x09self activateItem: self nextItem ] ].\x0a\x09\x22Up\x22\x0a\x09anEvent keyCode = 38 ifTrue: [ \x0a\x09\x09anEvent preventDefault; stopPropagation.\x0a\x09\x09self downRepeater stopRepeating.\x0a\x09\x09self upRepeater repeat: [ \x0a\x09\x09\x09self activateItem: self previousItem ] ].",messageSends: ["ifTrue:", "=", "keyCode", "preventDefault", "stopPropagation", "stopRepeating", "upRepeater", "repeat:", "downRepeater", "activateItem:", "nextItem", "previousItem"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "onKeyUp:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._downRepeater())._stopRepeating();$ctx1.sendIdx["stopRepeating"]=1;_st(self._upRepeater())._stopRepeating();return self}, function($ctx1) {$ctx1.fill(self,"onKeyUp:",{anEvent:anEvent},smalltalk.MKListController)})},args: ["anEvent"],source: "onKeyUp: anEvent\x0a\x09self downRepeater stopRepeating.\x0a\x09self upRepeater stopRepeating",messageSends: ["stopRepeating", "downRepeater", "upRepeater"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "previousItem",category: 'private',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $3,$2,$7,$6,$5,$4,$1;$3=self._view();$ctx1.sendIdx["view"]=1;$2=_st($3)._collection();$ctx1.sendIdx["collection"]=1;$7=self._view();$ctx1.sendIdx["view"]=2;$6=_st($7)._collection();$ctx1.sendIdx["collection"]=2;$5=_st($6)._indexOf_(self._activeItem());$4=_st($5).__minus((1));$1=_st($2)._at_ifAbsent_($4,(function(){return smalltalk.withContext(function($ctx2) {return _st(_st(self._view())._collection())._first();}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"previousItem",{},smalltalk.MKListController)})},args: [],source: "previousItem\x0a\x09^ self view collection \x0a\x09\x09at: (self view collection indexOf: self activeItem) - 1\x0a\x09\x09ifAbsent: [ self view collection first ]",messageSends: ["at:ifAbsent:", "collection", "view", "-", "indexOf:", "activeItem", "first"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (anItem){var self=this;return smalltalk.withContext(function($ctx1) { self._performAspectAction_with_(_st(self._view())._selectionAspect(),anItem);return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{anItem:anItem},smalltalk.MKListController)})},args: ["anItem"],source: "selectItem: anItem\x0a\x09self \x0a\x09\x09performAspectAction: self view selectionAspect \x0a\x09\x09with: anItem",messageSends: ["performAspectAction:with:", "selectionAspect", "view"],referencedClasses: []}),smalltalk.MKListController);smalltalk.addMethod(smalltalk.method({selector: "upRepeater",category: 'accessing',fn: function (){var self=this;function $MKRepeater(){return smalltalk.MKRepeater||(typeof MKRepeater=="undefined"?nil:MKRepeater)}return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@upRepeater"];if(($receiver = $2) == nil || $receiver == null){self["@upRepeater"]=_st($MKRepeater())._new();$1=self["@upRepeater"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"upRepeater",{},smalltalk.MKListController)})},args: [],source: "upRepeater\x0a\x09^ upRepeater ifNil: [ upRepeater := MKRepeater new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["MKRepeater"]}),smalltalk.MKListController);smalltalk.addClass('MKDropdownListController', smalltalk.MKListController, [], 'Moka-Controllers');smalltalk.addMethod(smalltalk.method({selector: "activateItem:",category: 'actions',fn: function (anItem){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._view())._activateItem_(anItem);return self}, function($ctx1) {$ctx1.fill(self,"activateItem:",{anItem:anItem},smalltalk.MKDropdownListController)})},args: ["anItem"],source: "activateItem: anItem\x0a\x09\x22Select the list item in the view.\x0a\x09No change is done to the model\x22\x0a\x09\x0a\x09self view activateItem: anItem",messageSends: ["activateItem:", "view"],referencedClasses: []}),smalltalk.MKDropdownListController);smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}return smalltalk.withContext(function($ctx1) { var $1;smalltalk.MKDropdownListController.superclass.fn.prototype._onKeyDown_.apply(_st(self), [anEvent]);$1=_st(_st(anEvent)._keyCode()).__eq(_st(_st($String())._cr())._asciiValue());if(smalltalk.assert($1)){self._selectItem_(_st(self._view())._activeItem());};return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKDropdownListController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09super onKeyDown: anEvent.\x0a\x09\x0a\x09anEvent keyCode = String cr asciiValue ifTrue: [\x0a\x09\x09self selectItem: self view activeItem ]",messageSends: ["onKeyDown:", "ifTrue:", "=", "keyCode", "asciiValue", "cr", "selectItem:", "activeItem", "view"],referencedClasses: ["String"]}),smalltalk.MKDropdownListController);smalltalk.addMethod(smalltalk.method({selector: "onMouseMove:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=_st(self._upRepeater())._isRepeating();$ctx1.sendIdx["isRepeating"]=1;$1=_st($2)._or_((function(){return smalltalk.withContext(function($ctx2) {return _st(self._downRepeater())._isRepeating();}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));if(smalltalk.assert($1)){return self;};self._activateItem_(self._itemForTarget_(_st(anEvent)._target()));return self}, function($ctx1) {$ctx1.fill(self,"onMouseMove:",{anEvent:anEvent},smalltalk.MKDropdownListController)})},args: ["anEvent"],source: "onMouseMove: anEvent\x0a\x09(self upRepeater isRepeating or: [ self downRepeater isRepeating ])\x0a\x09\x09ifTrue: [ ^ self ].\x0a\x09\x09\x0a\x09self activateItem: (self itemForTarget: anEvent target)",messageSends: ["ifTrue:", "or:", "isRepeating", "upRepeater", "downRepeater", "activateItem:", "itemForTarget:", "target"],referencedClasses: []}),smalltalk.MKDropdownListController);smalltalk.addClass('MKModalController', smalltalk.MKSingleAspectController, [], 'Moka-Controllers');smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._view())._closeOnClick();if(smalltalk.assert($1)){self._removeView();};return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKModalController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self view closeOnClick ifTrue: [ self removeView ]",messageSends: ["ifTrue:", "closeOnClick", "view", "removeView"],referencedClasses: []}),smalltalk.MKModalController);smalltalk.addMethod(smalltalk.method({selector: "onKeyDown:",category: 'actions',fn: function (anEvent){var self=this;function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$4,$5;$1=_st(self._view())._closeOnEnter();if(smalltalk.assert($1)){$3=_st(anEvent)._keyCode();$ctx1.sendIdx["keyCode"]=1;$2=_st($3).__eq(_st(_st($String())._cr())._asciiValue());$ctx1.sendIdx["="]=1;if(smalltalk.assert($2)){self._removeView();$ctx1.sendIdx["removeView"]=1;_st(anEvent)._stopPropagation();$4=_st(anEvent)._preventDefault();$4;};};$5=_st(_st(anEvent)._keyCode()).__eq((27));if(smalltalk.assert($5)){self._removeView();};return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKModalController)})},args: ["anEvent"],source: "onKeyDown: anEvent\x0a\x09self view closeOnEnter ifTrue: [\x0a\x09\x09anEvent keyCode = String cr asciiValue ifTrue: [\x0a\x09\x09\x09self removeView.\x0a\x09\x09\x09anEvent \x0a\x09\x09\x09\x09stopPropagation;\x0a\x09\x09\x09\x09preventDefault ] ].\x0a\x09\x0a\x09\x22ESC\x22\x0a\x09anEvent keyCode = 27 ifTrue: [\x0a\x09\x09self removeView ]",messageSends: ["ifTrue:", "closeOnEnter", "view", "=", "keyCode", "asciiValue", "cr", "removeView", "stopPropagation", "preventDefault"],referencedClasses: ["String"]}),smalltalk.MKModalController);smalltalk.addMethod(smalltalk.method({selector: "removeView",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self._view())._overlay())._remove();return self}, function($ctx1) {$ctx1.fill(self,"removeView",{},smalltalk.MKModalController)})},args: [],source: "removeView\x0a\x09self view overlay remove",messageSends: ["remove", "overlay", "view"],referencedClasses: []}),smalltalk.MKModalController);smalltalk.addClass('MKOverlayController', smalltalk.MKSingleAspectController, [], 'Moka-Controllers');smalltalk.MKOverlayController.comment="I am the default controller for `MKOverlayView`.\x0a\x0aOn a click to the overlay, it is removed together with it's content view.";smalltalk.addMethod(smalltalk.method({selector: "onClick:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._view())._remove();return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKOverlayController)})},args: ["anEvent"],source: "onClick: anEvent\x0a\x09self view remove",messageSends: ["remove", "view"],referencedClasses: []}),smalltalk.MKOverlayController);smalltalk.addClass('MKRepeater', smalltalk.Object, ['repeatInterval', 'interval', 'delay'], 'Moka-Controllers');smalltalk.MKRepeater.comment="I am an internal class used by controllers to repeat block actions after a `delay` and with an `interval`.";smalltalk.addMethod(smalltalk.method({selector: "defaultRepeatInterval",category: 'defaults',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return (70);}, function($ctx1) {$ctx1.fill(self,"defaultRepeatInterval",{},smalltalk.MKRepeater)})},args: [],source: "defaultRepeatInterval\x0a\x09^ 70",messageSends: [],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addMethod(smalltalk.method({selector: "isRepeating",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self["@delay"])._notNil();return $1;}, function($ctx1) {$ctx1.fill(self,"isRepeating",{},smalltalk.MKRepeater)})},args: [],source: "isRepeating\x0a\x09^ delay notNil",messageSends: ["notNil"],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addMethod(smalltalk.method({selector: "repeat:",category: 'actions',fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._isRepeating();if(smalltalk.assert($1)){return self;};_st(aBlock)._value();self["@delay"]=_st((function(){return smalltalk.withContext(function($ctx2) {self["@interval"]=_st(aBlock)._valueWithInterval_(self._repeatInterval());return self["@interval"];}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}))._valueWithTimeout_((300));return self}, function($ctx1) {$ctx1.fill(self,"repeat:",{aBlock:aBlock},smalltalk.MKRepeater)})},args: ["aBlock"],source: "repeat: aBlock\x0a\x09self isRepeating ifTrue: [ ^ self ].\x0a\x09aBlock value.\x0a\x09delay := [ interval := aBlock valueWithInterval: self repeatInterval ] \x0a\x09\x09valueWithTimeout: 300",messageSends: ["ifTrue:", "isRepeating", "value", "valueWithTimeout:", "valueWithInterval:", "repeatInterval"],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addMethod(smalltalk.method({selector: "repeatInterval",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@repeatInterval"];if(($receiver = $2) == nil || $receiver == null){$1=self._defaultRepeatInterval();} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"repeatInterval",{},smalltalk.MKRepeater)})},args: [],source: "repeatInterval\x0a\x09^ repeatInterval ifNil: [ self defaultRepeatInterval ]",messageSends: ["ifNil:", "defaultRepeatInterval"],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addMethod(smalltalk.method({selector: "repeatInterval:",category: 'accessing',fn: function (aNumber){var self=this;return smalltalk.withContext(function($ctx1) { self["@repeatInterval"]=aNumber;return self}, function($ctx1) {$ctx1.fill(self,"repeatInterval:",{aNumber:aNumber},smalltalk.MKRepeater)})},args: ["aNumber"],source: "repeatInterval: aNumber\x0a\x09repeatInterval := aNumber",messageSends: [],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addMethod(smalltalk.method({selector: "stopRepeating",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;$1=self["@interval"];if(($receiver = $1) == nil || $receiver == null){$1;} else {_st(self["@interval"])._clearInterval();};$2=self["@delay"];if(($receiver = $2) == nil || $receiver == null){$2;} else {_st(self["@delay"])._clearTimeout();};self["@delay"]=nil;self["@interval"]=self["@delay"];return self}, function($ctx1) {$ctx1.fill(self,"stopRepeating",{},smalltalk.MKRepeater)})},args: [],source: "stopRepeating\x0a\x09interval ifNotNil: [ interval clearInterval ].\x0a\x09delay ifNotNil: [ delay clearTimeout ].\x0a\x09interval := delay := nil",messageSends: ["ifNotNil:", "clearInterval", "clearTimeout"],referencedClasses: []}),smalltalk.MKRepeater);smalltalk.addClass('MKScrollController', smalltalk.MKController, [], 'Moka-Controllers');smalltalk.MKScrollController.comment="I am the default controller for `MKScrollDecorator`.";smalltalk.addMethod(smalltalk.method({selector: "onDecoratedScroll",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._view())._updateScrollbarsPosition();return self}, function($ctx1) {$ctx1.fill(self,"onDecoratedScroll",{},smalltalk.MKScrollController)})},args: [],source: "onDecoratedScroll\x0a\x09self view updateScrollbarsPosition",messageSends: ["updateScrollbarsPosition", "view"],referencedClasses: []}),smalltalk.MKScrollController);smalltalk.addMethod(smalltalk.method({selector: "onHorizontalDrag:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $4,$3,$2,$1;$4=self._view();$ctx1.sendIdx["view"]=1;$3=_st($4)._decorated();$2=_st($3)._asJQuery();$1=_st($2)._get_((0));_st($1)._at_put_("scrollLeft",_st(_st(self._view())._domScrollPosition())._x());return self}, function($ctx1) {$ctx1.fill(self,"onHorizontalDrag:",{anEvent:anEvent},smalltalk.MKScrollController)})},args: ["anEvent"],source: "onHorizontalDrag: anEvent\x0a\x09(self view decorated asJQuery get: 0) at: 'scrollLeft' put: self view domScrollPosition x",messageSends: ["at:put:", "get:", "asJQuery", "decorated", "view", "x", "domScrollPosition"],referencedClasses: []}),smalltalk.MKScrollController);smalltalk.addMethod(smalltalk.method({selector: "onMousewheel:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$4,$6,$5;$2=_st(anEvent)._deltaY();$ctx1.sendIdx["deltaY"]=1;$1=_st($2).__tild_eq((0));$ctx1.sendIdx["~="]=1;if(smalltalk.assert($1)){$3=self._view();$ctx1.sendIdx["view"]=1;$4=_st(_st(anEvent)._deltaY()).__star((10));$ctx1.sendIdx["*"]=1;_st($3)._scrollDeltaY_($4);};$6=_st(anEvent)._deltaX();$ctx1.sendIdx["deltaX"]=1;$5=_st($6).__tild_eq((0));if(smalltalk.assert($5)){_st(self._view())._scrollDeltaX_(_st(_st(anEvent)._deltaX()).__star((10)));};return self}, function($ctx1) {$ctx1.fill(self,"onMousewheel:",{anEvent:anEvent},smalltalk.MKScrollController)})},args: ["anEvent"],source: "onMousewheel: anEvent\x0a\x09anEvent deltaY ~= 0 ifTrue: [\x0a\x09\x09self view scrollDeltaY: anEvent deltaY * 10 ].\x0a\x09\x0a\x09anEvent deltaX ~= 0 ifTrue: [\x0a\x09\x09self view scrollDeltaX: anEvent deltaX * 10 ]",messageSends: ["ifTrue:", "~=", "deltaY", "scrollDeltaY:", "view", "*", "deltaX", "scrollDeltaX:"],referencedClasses: []}),smalltalk.MKScrollController);smalltalk.addMethod(smalltalk.method({selector: "onResize",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self._view())._resized();return self}, function($ctx1) {$ctx1.fill(self,"onResize",{},smalltalk.MKScrollController)})},args: [],source: "onResize\x0a\x09self view resized",messageSends: ["resized", "view"],referencedClasses: []}),smalltalk.MKScrollController);smalltalk.addMethod(smalltalk.method({selector: "onVerticalDrag:",category: 'actions',fn: function (anEvent){var self=this;return smalltalk.withContext(function($ctx1) { var $4,$3,$2,$1;$4=self._view();$ctx1.sendIdx["view"]=1;$3=_st($4)._decorated();$2=_st($3)._asJQuery();$1=_st($2)._get_((0));_st($1)._at_put_("scrollTop",_st(_st(self._view())._domScrollPosition())._y());return self}, function($ctx1) {$ctx1.fill(self,"onVerticalDrag:",{anEvent:anEvent},smalltalk.MKScrollController)})},args: ["anEvent"],source: "onVerticalDrag: anEvent\x0a\x09(self view decorated asJQuery get: 0) at: 'scrollTop' put: self view domScrollPosition y",messageSends: ["at:put:", "get:", "asJQuery", "decorated", "view", "y", "domScrollPosition"],referencedClasses: []}),smalltalk.MKScrollController);});
 |