1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360 |
- 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){
- smalltalk.addPackage('Moka-Core');
- smalltalk.packages["Moka-Core"].transport = {"type":"amd","amdNamespace":"amber_core"};
- smalltalk.addClass('MKController', smalltalk.Object, ['view', 'model'], 'Moka-Core');
- 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:`.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@model"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.MKController)})},
- args: [],
- source: "model\x0a\x09^ model",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@model"]=aModel;
- return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKController)})},
- args: ["aModel"],
- source: "model: aModel\x0a\x09model := aModel",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onChange:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onChange:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onChange: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onClick:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onClick: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onDblClick:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onDblClick:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onDblClick: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onKeyDown:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onKeyDown: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onKeyPress:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onKeyPress:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onKeyPress: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- 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.MKController)})},
- args: ["anEvent"],
- source: "onKeyUp: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMouseEnter:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onMouseEnter:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onMouseEnter: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMouseLeave:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onMouseLeave:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onMouseLeave: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMouseMove:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onMouseMove:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onMouseMove: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMouseOut:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onMouseOut:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onMouseOut: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMouseOver:",
- category: 'actions',
- fn: function (anEvent){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"onMouseOver:",{anEvent:anEvent},smalltalk.MKController)})},
- args: ["anEvent"],
- source: "onMouseOver: anEvent",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "view",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@view"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"view",{},smalltalk.MKController)})},
- args: [],
- source: "view\x0a\x09^ view",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "view:",
- category: 'accessing',
- fn: function (aView){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@view"]=aView;
- return self}, function($ctx1) {$ctx1.fill(self,"view:",{aView:aView},smalltalk.MKController)})},
- args: ["aView"],
- source: "view: aView\x0a\x09view := aView",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKController);
- smalltalk.addClass('MKAspectsController', smalltalk.MKController, [], 'Moka-Core');
- 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.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "performAspectAction:",
- category: 'actions',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._model())._perform_(aSelector);
- return self}, function($ctx1) {$ctx1.fill(self,"performAspectAction:",{aSelector:aSelector},smalltalk.MKAspectsController)})},
- args: ["aSelector"],
- source: "performAspectAction: aSelector\x0a\x09self model perform: aSelector",
- messageSends: ["perform:", "model"],
- referencedClasses: []
- }),
- smalltalk.MKAspectsController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "performAspectAction:with:",
- category: 'actions',
- fn: function (aSelector,anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._model())._perform_withArguments_(_st(aSelector)._asMutator(),[anObject]);
- return self}, function($ctx1) {$ctx1.fill(self,"performAspectAction:with:",{aSelector:aSelector,anObject:anObject},smalltalk.MKAspectsController)})},
- args: ["aSelector", "anObject"],
- source: "performAspectAction: aSelector with: anObject\x0a\x09self model \x0a\x09\x09perform: aSelector asMutator\x0a\x09\x09withArguments: { anObject }",
- messageSends: ["perform:withArguments:", "model", "asMutator"],
- referencedClasses: []
- }),
- smalltalk.MKAspectsController);
- smalltalk.addClass('MKSingleAspectController', smalltalk.MKAspectsController, [], 'Moka-Core');
- smalltalk.MKSingleAspectController.comment="I am an abstract controller used with single aspect views.\x0a\x0aMy view must hold onto one aspect accessed with `#aspect`.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "performAspectAction",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self._performAspectAction_(_st(self._view())._aspect());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"performAspectAction",{},smalltalk.MKSingleAspectController)})},
- args: [],
- source: "performAspectAction\x0a\x09^ self performAspectAction: self view aspect",
- messageSends: ["performAspectAction:", "aspect", "view"],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectController);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "performAspectActionWith:",
- category: 'actions',
- fn: function (anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self._performAspectAction_with_(_st(self._view())._aspect(),anObject);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"performAspectActionWith:",{anObject:anObject},smalltalk.MKSingleAspectController)})},
- args: ["anObject"],
- source: "performAspectActionWith: anObject\x0a\x09^ self \x0a\x09\x09performAspectAction: self view aspect\x0a\x09\x09with: anObject",
- messageSends: ["performAspectAction:with:", "aspect", "view"],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectController);
- smalltalk.addClass('MKModel', smalltalk.Object, ['announcer'], 'Moka-Core');
- 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.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "announce:",
- category: 'announcements',
- fn: function (anAnnouncement){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@announcer"])._announce_(anAnnouncement);
- return self}, function($ctx1) {$ctx1.fill(self,"announce:",{anAnnouncement:anAnnouncement},smalltalk.MKModel)})},
- args: ["anAnnouncement"],
- source: "announce: anAnnouncement\x0a\x09announcer announce: anAnnouncement",
- messageSends: ["announce:"],
- referencedClasses: []
- }),
- smalltalk.MKModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "changed:",
- category: 'announcements',
- fn: function (aSelector){
- var self=this;
- function $MKModelChanged(){return smalltalk.MKModelChanged||(typeof MKModelChanged=="undefined"?nil:MKModelChanged)}
- return smalltalk.withContext(function($ctx1) {
- self._announce_(_st($MKModelChanged())._aspect_(aSelector));
- return self}, function($ctx1) {$ctx1.fill(self,"changed:",{aSelector:aSelector},smalltalk.MKModel)})},
- args: ["aSelector"],
- source: "changed: aSelector\x0a\x09\x22Trigger `#update:` to all listening aspect views\x22\x0a\x09\x0a\x09self announce: (MKModelChanged aspect: aSelector)",
- messageSends: ["announce:", "aspect:"],
- referencedClasses: ["MKModelChanged"]
- }),
- smalltalk.MKModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- category: 'initialization',
- fn: function (){
- var self=this;
- function $Announcer(){return smalltalk.Announcer||(typeof Announcer=="undefined"?nil:Announcer)}
- return smalltalk.withContext(function($ctx1) {
- smalltalk.MKModel.superclass.fn.prototype._initialize.apply(_st(self), []);
- self["@announcer"]=_st($Announcer())._new();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MKModel)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09announcer := Announcer new",
- messageSends: ["initialize", "new"],
- referencedClasses: ["Announcer"]
- }),
- smalltalk.MKModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:do:",
- category: 'announcements',
- fn: function (anAnnouncement,aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@announcer"])._on_do_(anAnnouncement,aBlock);
- return self}, function($ctx1) {$ctx1.fill(self,"on:do:",{anAnnouncement:anAnnouncement,aBlock:aBlock},smalltalk.MKModel)})},
- args: ["anAnnouncement", "aBlock"],
- source: "on: anAnnouncement do: aBlock\x0a\x09announcer on: anAnnouncement do: aBlock",
- messageSends: ["on:do:"],
- referencedClasses: []
- }),
- smalltalk.MKModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:send:to:",
- category: 'announcements',
- fn: function (anAnnouncement,aSelector,anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@announcer"])._on_send_to_(anAnnouncement,aSelector,anObject);
- return self}, function($ctx1) {$ctx1.fill(self,"on:send:to:",{anAnnouncement:anAnnouncement,aSelector:aSelector,anObject:anObject},smalltalk.MKModel)})},
- args: ["anAnnouncement", "aSelector", "anObject"],
- source: "on: anAnnouncement send: aSelector to: anObject\x0a\x09announcer on: anAnnouncement send: aSelector to: anObject",
- messageSends: ["on:send:to:"],
- referencedClasses: []
- }),
- smalltalk.MKModel);
- smalltalk.addClass('MKModelChanged', smalltalk.Object, ['aspect'], 'Moka-Core');
- smalltalk.MKModelChanged.comment="I am an announcement announced when a model is changed.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspect",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@aspect"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"aspect",{},smalltalk.MKModelChanged)})},
- args: [],
- source: "aspect\x0a\x09^ aspect",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKModelChanged);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspect:",
- category: 'accessing',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@aspect"]=aSelector;
- return self}, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKModelChanged)})},
- args: ["aSelector"],
- source: "aspect: aSelector\x0a\x09aspect := aSelector",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKModelChanged);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspect:",
- category: 'instance creation',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=self._new();
- _st($2)._aspect_(aSelector);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKModelChanged.klass)})},
- args: ["aSelector"],
- source: "aspect: aSelector\x0a\x09^ self new\x0a\x09\x09aspect: aSelector;\x0a\x09\x09yourself",
- messageSends: ["aspect:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.MKModelChanged.klass);
- smalltalk.addClass('MKView', smalltalk.Widget, ['controller', 'model', 'root', 'layout', 'extraCssClass'], 'Moka-Core');
- 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:`.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "blur",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@root"];
- if(($receiver = $1) == nil || $receiver == null){
- $1;
- } else {
- _st(_st(self["@root"])._asJQuery())._blur();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"blur",{},smalltalk.MKView)})},
- args: [],
- source: "blur\x0a\x09root ifNotNil: [ root asJQuery blur ]",
- messageSends: ["ifNotNil:", "blur", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "bottom:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._bottom_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"bottom:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "bottom: aNumber\x0a\x09self layout bottom: aNumber",
- messageSends: ["bottom:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "centerX:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._centerX_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"centerX:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "centerX: aNumber\x0a\x09self layout centerX: aNumber",
- messageSends: ["centerX:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "centerY:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._centerY_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"centerY:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "centerY: aNumber\x0a\x09self layout centerY: aNumber",
- messageSends: ["centerY:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "controller",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@controller"];
- if(($receiver = $1) == nil || $receiver == null){
- self._controller_(self._defaultController());
- } else {
- $1;
- };
- $2=self["@controller"];
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"controller",{},smalltalk.MKView)})},
- args: [],
- 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",
- messageSends: ["ifNil:", "controller:", "defaultController"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "controller:",
- category: 'accessing',
- fn: function (aController){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- self["@controller"]=aController;
- $1=aController;
- _st($1)._view_(self);
- $2=_st($1)._model_(self._model());
- return self}, function($ctx1) {$ctx1.fill(self,"controller:",{aController:aController},smalltalk.MKView)})},
- args: ["aController"],
- 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",
- messageSends: ["view:", "model:", "model"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "cssClass",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $1=_st($String())._streamContents_((function(stream){
- return smalltalk.withContext(function($ctx2) {
- _st(stream).__lt_lt("moka_view");
- $ctx2.sendIdx["<<"]=1;
- $2=self._extraCssClass();
- $ctx2.sendIdx["extraCssClass"]=1;
- return _st($2)._ifNotEmpty_((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(_st(stream).__lt_lt(" ")).__lt_lt(self._extraCssClass());
- $ctx3.sendIdx["<<"]=2;
- }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
- }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1,1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"cssClass",{},smalltalk.MKView)})},
- args: [],
- source: "cssClass\x0a\x09^ String streamContents: [ :stream |\x0a\x09\x09stream << 'moka_view'.\x0a\x09\x09self extraCssClass ifNotEmpty: [\x0a\x09\x09\x09stream << ' ' << self extraCssClass ] ]",
- messageSends: ["streamContents:", "<<", "ifNotEmpty:", "extraCssClass"],
- referencedClasses: ["String"]
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultController",
- category: 'factory',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self._defaultControllerClass())._new();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"defaultController",{},smalltalk.MKView)})},
- args: [],
- source: "defaultController\x0a\x09^ self defaultControllerClass new",
- messageSends: ["new", "defaultControllerClass"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultControllerClass",
- category: 'defaults',
- fn: function (){
- var self=this;
- function $MKController(){return smalltalk.MKController||(typeof MKController=="undefined"?nil:MKController)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$MKController();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKView)})},
- args: [],
- source: "defaultControllerClass\x0a\x09^ MKController",
- messageSends: [],
- referencedClasses: ["MKController"]
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultLayout",
- category: 'defaults',
- fn: function (){
- var self=this;
- function $MKLayout(){return smalltalk.MKLayout||(typeof MKLayout=="undefined"?nil:MKLayout)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st($MKLayout())._new();
- _st($2)._left_((0));
- _st($2)._top_((0));
- _st($2)._right_((0));
- _st($2)._bottom_((0));
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"defaultLayout",{},smalltalk.MKView)})},
- args: [],
- 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",
- messageSends: ["left:", "new", "top:", "right:", "bottom:", "yourself"],
- referencedClasses: ["MKLayout"]
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "extraCssClass",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@extraCssClass"];
- if(($receiver = $2) == nil || $receiver == null){
- $1="";
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"extraCssClass",{},smalltalk.MKView)})},
- args: [],
- source: "extraCssClass\x0a\x09^ extraCssClass ifNil: [ '' ]",
- messageSends: ["ifNil:"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "extraCssClass:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@extraCssClass"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"extraCssClass:",{aString:aString},smalltalk.MKView)})},
- args: ["aString"],
- source: "extraCssClass: aString\x0a\x09extraCssClass := aString",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "focus",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@root"];
- if(($receiver = $1) == nil || $receiver == null){
- $1;
- } else {
- _st(_st(self["@root"])._asJQuery())._focus();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.MKView)})},
- args: [],
- source: "focus\x0a\x09root ifNotNil: [ root asJQuery focus ]",
- messageSends: ["ifNotNil:", "focus", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "height:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._height_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"height:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "height: aNumber\x0a\x09self layout height: aNumber",
- messageSends: ["height:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "layout",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@layout"];
- if(($receiver = $2) == nil || $receiver == null){
- self["@layout"]=self._defaultLayout();
- $1=self["@layout"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"layout",{},smalltalk.MKView)})},
- args: [],
- source: "layout\x0a\x09^ layout ifNil: [ layout := self defaultLayout ]",
- messageSends: ["ifNil:", "defaultLayout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "left:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._left_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"left:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "left: aNumber\x0a\x09self layout left: aNumber",
- messageSends: ["left:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@model"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.MKView)})},
- args: [],
- source: "model\x0a\x09^ model",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@model"]=aModel;
- self._observeModel();
- return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKView)})},
- args: ["aModel"],
- source: "model: aModel\x0a\x09model := aModel.\x0a\x09self observeModel",
- messageSends: ["observeModel"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "observeModel",
- category: 'observing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.MKView)})},
- args: [],
- source: "observeModel\x0a\x09\x22No op. Override in subclasses\x22",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "position",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@root"];
- if(($receiver = $2) == nil || $receiver == null){
- $1=$2;
- } else {
- var offset;
- offset=_st(_st(self["@root"])._asJQuery())._offset();
- offset;
- $1=_st(_st(offset)._left()).__at(_st(offset)._top());
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"position",{},smalltalk.MKView)})},
- args: [],
- 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 ]",
- messageSends: ["ifNotNil:", "offset", "asJQuery", "@", "left", "top"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "remove",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@root"];
- if(($receiver = $1) == nil || $receiver == null){
- $1;
- } else {
- _st(_st(self["@root"])._asJQuery())._remove();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"remove",{},smalltalk.MKView)})},
- args: [],
- source: "remove\x0a\x09\x22Removes the receiver from the DOM\x22\x0a\x09root ifNotNil: [ root asJQuery remove ]",
- messageSends: ["ifNotNil:", "remove", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "render",
- category: 'rendering',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self._appendToJQuery_("body"._asJQuery());
- return self}, function($ctx1) {$ctx1.fill(self,"render",{},smalltalk.MKView)})},
- args: [],
- source: "render\x0a\x09\x22Append the receiver to the BODY element\x22\x0a\x09\x0a\x09self appendToJQuery: 'body' asJQuery",
- messageSends: ["appendToJQuery:", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderContentOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.MKView)})},
- args: ["html"],
- source: "renderContentOn: html\x0a\x09\x22Main rendering method, override in subclasses.\x22",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(html)._tag_(self._tag());
- _st($1)._class_(self._cssClass());
- _st($1)._style_(_st(self._layout())._asCssString());
- $2=_st($1)._yourself();
- self["@root"]=$2;
- _st(self["@root"])._with_((function(){
- return smalltalk.withContext(function($ctx2) {
- return self._renderContentOn_(html);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
- self._setupEventHandlers();
- return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},smalltalk.MKView)})},
- args: ["html"],
- 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",
- messageSends: ["class:", "tag:", "tag", "cssClass", "style:", "asCssString", "layout", "yourself", "with:", "renderContentOn:", "setupEventHandlers"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "right:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._right_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"right:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "right: aNumber\x0a\x09self layout right: aNumber",
- messageSends: ["right:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setupEventHandlers",
- category: 'private',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12;
- $1=self["@root"];
- _st($1)._onClick_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $2=self._controller();
- $ctx2.sendIdx["controller"]=1;
- return _st($2)._onClick_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,1)})}));
- $ctx1.sendIdx["onClick:"]=1;
- _st($1)._onDblClick_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $3=self._controller();
- $ctx2.sendIdx["controller"]=2;
- return _st($3)._onDblClick_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,2)})}));
- $ctx1.sendIdx["onDblClick:"]=1;
- _st($1)._onMouseEnter_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $4=self._controller();
- $ctx2.sendIdx["controller"]=3;
- return _st($4)._onMouseEnter_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,3)})}));
- $ctx1.sendIdx["onMouseEnter:"]=1;
- _st($1)._onMouseLeave_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $5=self._controller();
- $ctx2.sendIdx["controller"]=4;
- return _st($5)._onMouseLeave_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,4)})}));
- $ctx1.sendIdx["onMouseLeave:"]=1;
- _st($1)._onMouseOver_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $6=self._controller();
- $ctx2.sendIdx["controller"]=5;
- return _st($6)._onMouseOver_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,5)})}));
- $ctx1.sendIdx["onMouseOver:"]=1;
- _st($1)._onMouseOut_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $7=self._controller();
- $ctx2.sendIdx["controller"]=6;
- return _st($7)._onMouseOut_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,6)})}));
- $ctx1.sendIdx["onMouseOut:"]=1;
- _st($1)._onMouseMove_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $8=self._controller();
- $ctx2.sendIdx["controller"]=7;
- return _st($8)._onMouseMove_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,7)})}));
- $ctx1.sendIdx["onMouseMove:"]=1;
- _st($1)._onKeyDown_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $9=self._controller();
- $ctx2.sendIdx["controller"]=8;
- return _st($9)._onKeyDown_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,8)})}));
- $ctx1.sendIdx["onKeyDown:"]=1;
- _st($1)._onKeyUp_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $10=self._controller();
- $ctx2.sendIdx["controller"]=9;
- return _st($10)._onKeyUp_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,9)})}));
- $ctx1.sendIdx["onKeyUp:"]=1;
- _st($1)._onKeyPress_((function(event){
- return smalltalk.withContext(function($ctx2) {
- $11=self._controller();
- $ctx2.sendIdx["controller"]=10;
- return _st($11)._onKeyPress_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,10)})}));
- $ctx1.sendIdx["onKeyPress:"]=1;
- $12=_st($1)._onChange_((function(event){
- return smalltalk.withContext(function($ctx2) {
- return _st(self._controller())._onChange_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,11)})}));
- $ctx1.sendIdx["onChange:"]=1;
- return self}, function($ctx1) {$ctx1.fill(self,"setupEventHandlers",{},smalltalk.MKView)})},
- args: [],
- 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 ]",
- messageSends: ["onClick:", "controller", "onDblClick:", "onMouseEnter:", "onMouseLeave:", "onMouseOver:", "onMouseOut:", "onMouseMove:", "onKeyDown:", "onKeyUp:", "onKeyPress:", "onChange:"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tag",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "div";
- }, function($ctx1) {$ctx1.fill(self,"tag",{},smalltalk.MKView)})},
- args: [],
- source: "tag\x0a\x09^ 'div'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "top:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._top_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"top:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "top: aNumber\x0a\x09self layout top: aNumber",
- messageSends: ["top:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "update",
- category: 'updating',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@root"];
- if(($receiver = $1) == nil || $receiver == null){
- self._error_("The view has not been rendered yet");
- } else {
- $1;
- };
- $2=_st(self["@root"])._asJQuery();
- $ctx1.sendIdx["asJQuery"]=1;
- _st($2)._empty();
- _st((function(html){
- return smalltalk.withContext(function($ctx2) {
- return self._renderContentOn_(html);
- }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,2)})}))._appendToJQuery_(_st(self["@root"])._asJQuery());
- return self}, function($ctx1) {$ctx1.fill(self,"update",{},smalltalk.MKView)})},
- args: [],
- 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",
- messageSends: ["ifNil:", "error:", "empty", "asJQuery", "appendToJQuery:", "renderContentOn:"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "width:",
- category: 'layout',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self._layout())._width_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"width:",{aNumber:aNumber},smalltalk.MKView)})},
- args: ["aNumber"],
- source: "width: aNumber\x0a\x09self layout width: aNumber",
- messageSends: ["width:", "layout"],
- referencedClasses: []
- }),
- smalltalk.MKView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:",
- category: 'instance creation',
- fn: function (aModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=self._new();
- _st($2)._model_(aModel);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.MKView.klass)})},
- args: ["aModel"],
- source: "model: aModel\x0a\x09^ self new\x0a\x09\x09model: aModel;\x0a\x09\x09yourself",
- messageSends: ["model:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.MKView.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:controller:",
- category: 'instance creation',
- fn: function (aModel,aController){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=self._model_(aModel);
- _st($2)._controller_(aController);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model:controller:",{aModel:aModel,aController:aController},smalltalk.MKView.klass)})},
- args: ["aModel", "aController"],
- source: "model: aModel controller: aController\x0a\x09^ (self model: aModel)\x0a\x09\x09controller: aController;\x0a\x09\x09yourself",
- messageSends: ["controller:", "model:", "yourself"],
- referencedClasses: []
- }),
- smalltalk.MKView.klass);
- smalltalk.addClass('MKAspectsView', smalltalk.MKView, [], 'Moka-Core');
- smalltalk.MKAspectsView.comment="I am an abstract view which state depend on aspects of a model.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultControllerClass",
- category: 'defaults',
- fn: function (){
- var self=this;
- function $MKAspectController(){return smalltalk.MKAspectController||(typeof MKAspectController=="undefined"?nil:MKAspectController)}
- return smalltalk.withContext(function($ctx1) {
- return $MKAspectController();
- }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKAspectsView)})},
- args: [],
- source: "defaultControllerClass\x0a\x09^ MKAspectController",
- messageSends: [],
- referencedClasses: ["MKAspectController"]
- }),
- smalltalk.MKAspectsView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "observeModel",
- category: 'observing',
- fn: function (){
- var self=this;
- function $MKModelChanged(){return smalltalk.MKModelChanged||(typeof MKModelChanged=="undefined"?nil:MKModelChanged)}
- return smalltalk.withContext(function($ctx1) {
- smalltalk.MKAspectsView.superclass.fn.prototype._observeModel.apply(_st(self), []);
- _st(self._model())._on_send_to_($MKModelChanged(),"update:",self);
- return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.MKAspectsView)})},
- args: [],
- source: "observeModel\x0a\x09super observeModel.\x0a\x09\x0a\x09self model\x0a\x09\x09on: MKModelChanged\x0a\x09\x09send: 'update:'\x0a\x09\x09to: self",
- messageSends: ["observeModel", "on:send:to:", "model"],
- referencedClasses: ["MKModelChanged"]
- }),
- smalltalk.MKAspectsView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "update:",
- category: 'updating',
- fn: function (anAnnouncement){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"update:",{anAnnouncement:anAnnouncement},smalltalk.MKAspectsView)})},
- args: ["anAnnouncement"],
- source: "update: anAnnouncement\x0a\x09\x22Override in subclasses to match the view's aspect(s)\x22",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKAspectsView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "valueForAspect:",
- category: 'accessing',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self._model())._perform_(aSelector);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"valueForAspect:",{aSelector:aSelector},smalltalk.MKAspectsView)})},
- args: ["aSelector"],
- source: "valueForAspect: aSelector\x0a\x09^ self model perform: aSelector",
- messageSends: ["perform:", "model"],
- referencedClasses: []
- }),
- smalltalk.MKAspectsView);
- smalltalk.addClass('MKSingleAspectView', smalltalk.MKAspectsView, ['aspect'], 'Moka-Core');
- 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`.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspect",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@aspect"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"aspect",{},smalltalk.MKSingleAspectView)})},
- args: [],
- source: "aspect\x0a\x09^ aspect",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspect:",
- category: 'accessing',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@aspect"]=aSelector;
- return self}, function($ctx1) {$ctx1.fill(self,"aspect:",{aSelector:aSelector},smalltalk.MKSingleAspectView)})},
- args: ["aSelector"],
- source: "aspect: aSelector\x0a\x09aspect := aSelector",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "aspectValue",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self._valueForAspect_(self._aspect());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"aspectValue",{},smalltalk.MKSingleAspectView)})},
- args: [],
- source: "aspectValue\x0a\x09^ self valueForAspect: self aspect",
- messageSends: ["valueForAspect:", "aspect"],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultControllerClass",
- category: 'defaults',
- fn: function (){
- var self=this;
- function $MKSingleAspectController(){return smalltalk.MKSingleAspectController||(typeof MKSingleAspectController=="undefined"?nil:MKSingleAspectController)}
- return smalltalk.withContext(function($ctx1) {
- return $MKSingleAspectController();
- }, function($ctx1) {$ctx1.fill(self,"defaultControllerClass",{},smalltalk.MKSingleAspectView)})},
- args: [],
- source: "defaultControllerClass\x0a\x09^ MKSingleAspectController",
- messageSends: [],
- referencedClasses: ["MKSingleAspectController"]
- }),
- smalltalk.MKSingleAspectView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "update:",
- category: 'updating',
- fn: function (anAnnouncement){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=_st(anAnnouncement)._aspect();
- $ctx1.sendIdx["aspect"]=1;
- $1=_st($2).__eq(self._aspect());
- if(smalltalk.assert($1)){
- self._update();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"update:",{anAnnouncement:anAnnouncement},smalltalk.MKSingleAspectView)})},
- args: ["anAnnouncement"],
- source: "update: anAnnouncement\x0a\x09anAnnouncement aspect = self aspect ifTrue: [\x0a\x09\x09self update ]",
- messageSends: ["ifTrue:", "=", "aspect", "update"],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectView);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:aspect:",
- category: 'instance creation',
- fn: function (aModel,aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=self._model_(aModel);
- _st($2)._aspect_(aSelector);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model:aspect:",{aModel:aModel,aSelector:aSelector},smalltalk.MKSingleAspectView.klass)})},
- args: ["aModel", "aSelector"],
- source: "model: aModel aspect: aSelector\x0a\x09^ (self model: aModel)\x0a\x09\x09aspect: aSelector;\x0a\x09\x09yourself",
- messageSends: ["aspect:", "model:", "yourself"],
- referencedClasses: []
- }),
- smalltalk.MKSingleAspectView.klass);
- });
|