| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154 | smalltalk.addPackage('Helios-Core');smalltalk.addClass('HLTab', smalltalk.Widget, ['widget', 'label', 'root'], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "activate",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self)._manager())._activate_(self);return self}, function($ctx1) {$ctx1.fill(self,"activate",{},smalltalk.HLTab)})},args: [],source: "activate\x0a\x09self manager activate: self",messageSends: ["activate:", "manager"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "add",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self)._manager())._addTab_(self);return self}, function($ctx1) {$ctx1.fill(self,"add",{},smalltalk.HLTab)})},args: [],source: "add\x0a\x09self manager addTab: self",messageSends: ["addTab:", "manager"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "displayLabel",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=_st(_st(_st(self)._label())._size()).__gt((20));if(smalltalk.assert($2)){$1=_st(_st(_st(self)._label())._first_((20))).__comma("...");} else {$1=_st(self)._label();};return $1;}, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLTab)})},args: [],source: "displayLabel\x0a\x09^ self label size > 20 \x0a\x09\x09ifTrue: [ (self label first: 20), '...' ]\x0a\x09\x09ifFalse: [ self label ]",messageSends: ["ifTrue:ifFalse:", ",", "first:", "label", ">", "size"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "focus",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(_st(self)._widget())._canHaveFocus();if(smalltalk.assert($1)){_st(_st(self)._widget())._focus();};return self}, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.HLTab)})},args: [],source: "focus\x0a\x09self widget canHaveFocus ifTrue: [\x0a\x09\x09self widget focus ]",messageSends: ["ifTrue:", "focus", "widget", "canHaveFocus"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "hide",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@root"];if(($receiver = $1) == nil || $receiver == undefined){$1;} else {_st(_st(self["@root"])._asJQuery())._css_put_("visibility","hidden");};return self}, function($ctx1) {$ctx1.fill(self,"hide",{},smalltalk.HLTab)})},args: [],source: "hide\x0a\x09root ifNotNil: [ root asJQuery css: 'visibility' put: 'hidden' ]",messageSends: ["ifNotNil:", "css:put:", "asJQuery"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "isActive",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(_st(_st(self)._manager())._activeTab()).__eq(self);return $1;}, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLTab)})},args: [],source: "isActive\x0a\x09^ self manager activeTab = self",messageSends: ["=", "activeTab", "manager"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "label",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@label"];if(($receiver = $2) == nil || $receiver == undefined){$1="";} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLTab)})},args: [],source: "label\x0a\x09^ label ifNil: [ '' ]",messageSends: ["ifNil:"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "label:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { self["@label"]=aString;return self}, function($ctx1) {$ctx1.fill(self,"label:",{aString:aString},smalltalk.HLTab)})},args: ["aString"],source: "label: aString\x0a\x09label := aString",messageSends: [],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "manager",category: 'accessing',fn: function (){var self=this;function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}return smalltalk.withContext(function($ctx1) { var $1;$1=_st($HLManager())._current();return $1;}, function($ctx1) {$ctx1.fill(self,"manager",{},smalltalk.HLTab)})},args: [],source: "manager\x0a\x09^ HLManager current",messageSends: ["current"],referencedClasses: ["HLManager"]}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "registerBindings",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self)._widget())._registerBindings();return self}, function($ctx1) {$ctx1.fill(self,"registerBindings",{},smalltalk.HLTab)})},args: [],source: "registerBindings\x0a\x09self widget registerBindings",messageSends: ["registerBindings", "widget"],referencedClasses: []}),smalltalk.HLTab);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 == undefined){$1;} else {_st(_st(self["@root"])._asJQuery())._remove();};return self}, function($ctx1) {$ctx1.fill(self,"remove",{},smalltalk.HLTab)})},args: [],source: "remove\x0a\x09root ifNotNil: [ root asJQuery remove ]",messageSends: ["ifNotNil:", "remove", "asJQuery"],referencedClasses: []}),smalltalk.HLTab);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)._div();_st($1)._class_("tab");$2=_st($1)._yourself();self["@root"]=$2;_st(self)._renderTab();return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},smalltalk.HLTab)})},args: ["html"],source: "renderOn: html\x0a\x09root := html div\x0a\x09\x09class: 'tab';\x0a\x09\x09yourself.\x0a\x09self renderTab",messageSends: ["class:", "div", "yourself", "renderTab"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "renderTab",category: 'rendering',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;_st(self["@root"])._contents_((function(html){return smalltalk.withContext(function($ctx2) {$1=_st(html)._div();_st($1)._class_("amber_box");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx3) {return _st(_st(self)._widget())._renderOn_(html);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $2;}, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderTab",{},smalltalk.HLTab)})},args: [],source: "renderTab\x0a\x09root contents: [ :html |\x0a\x09\x09html div\x0a\x09\x09\x09class: 'amber_box';\x0a\x09\x09\x09with: [ self widget renderOn: html ] ]",messageSends: ["contents:", "class:", "div", "with:", "renderOn:", "widget"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "show",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@root"];if(($receiver = $1) == nil || $receiver == undefined){_st(self)._appendToJQuery_(_st("body")._asJQuery());} else {_st(_st(self["@root"])._asJQuery())._css_put_("visibility","visible");};return self}, function($ctx1) {$ctx1.fill(self,"show",{},smalltalk.HLTab)})},args: [],source: "show\x0a\x09root\x0a\x09\x09ifNil: [ self appendToJQuery: 'body' asJQuery ]\x0a\x09\x09ifNotNil: [ root asJQuery css: 'visibility' put: 'visible' ]",messageSends: ["ifNil:ifNotNil:", "appendToJQuery:", "asJQuery", "css:put:"],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "widget",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@widget"];return $1;}, function($ctx1) {$ctx1.fill(self,"widget",{},smalltalk.HLTab)})},args: [],source: "widget\x0a\x09^ widget",messageSends: [],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "widget:",category: 'accessing',fn: function (aWidget){var self=this;return smalltalk.withContext(function($ctx1) { self["@widget"]=aWidget;return self}, function($ctx1) {$ctx1.fill(self,"widget:",{aWidget:aWidget},smalltalk.HLTab)})},args: ["aWidget"],source: "widget: aWidget\x0a\x09widget := aWidget",messageSends: [],referencedClasses: []}),smalltalk.HLTab);smalltalk.addMethod(smalltalk.method({selector: "on:labelled:",category: 'instance creation',fn: function (aWidget,aString){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$3,$1;$2=_st(self)._new();_st($2)._widget_(aWidget);_st($2)._label_(aString);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"on:labelled:",{aWidget:aWidget,aString:aString},smalltalk.HLTab.klass)})},args: ["aWidget", "aString"],source: "on: aWidget labelled: aString\x0a\x09^ self new\x0a\x09\x09widget: aWidget;\x0a\x09\x09label: aString;\x0a\x09\x09yourself",messageSends: ["widget:", "new", "label:", "yourself"],referencedClasses: []}),smalltalk.HLTab.klass);smalltalk.addClass('HLWidget', smalltalk.Widget, ['wrapper'], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "alert:",category: 'actions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { _st(window)._alert_(aString);return self}, function($ctx1) {$ctx1.fill(self,"alert:",{aString:aString},smalltalk.HLWidget)})},args: ["aString"],source: "alert: aString\x0a\x09window alert: aString",messageSends: ["alert:"],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "canHaveFocus",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return false;}, function($ctx1) {$ctx1.fill(self,"canHaveFocus",{},smalltalk.HLWidget)})},args: [],source: "canHaveFocus\x0a\x09^ false",messageSends: [],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "confirm:",category: 'actions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(window)._confirm_(aString);return $1;}, function($ctx1) {$ctx1.fill(self,"confirm:",{aString:aString},smalltalk.HLWidget)})},args: ["aString"],source: "confirm: aString\x0a\x09^ window confirm: aString",messageSends: ["confirm:"],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "execute:",category: 'actions',fn: function (aCommand){var self=this;function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}return smalltalk.withContext(function($ctx1) { var $1,$2;$1=_st(_st($HLManager())._current())._keyBinder();_st($1)._activate();$2=_st($1)._applyBinding_(_st(aCommand)._asBinding());return self}, function($ctx1) {$ctx1.fill(self,"execute:",{aCommand:aCommand},smalltalk.HLWidget)})},args: ["aCommand"],source: "execute: aCommand\x0a\x09HLManager current keyBinder\x0a\x09\x09activate;\x0a\x09\x09applyBinding: aCommand asBinding",messageSends: ["activate", "keyBinder", "current", "applyBinding:", "asBinding"],referencedClasses: ["HLManager"]}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "manager",category: 'accessing',fn: function (){var self=this;function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}return smalltalk.withContext(function($ctx1) { var $1;$1=_st($HLManager())._current();return $1;}, function($ctx1) {$ctx1.fill(self,"manager",{},smalltalk.HLWidget)})},args: [],source: "manager\x0a\x09^ HLManager current",messageSends: ["current"],referencedClasses: ["HLManager"]}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "refresh",category: 'updating',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;$1=_st(self)._wrapper();if(($receiver = $1) == nil || $receiver == undefined){$2=self;return $2;} else {$1;};_st(_st(_st(self)._wrapper())._asJQuery())._empty();_st((function(html){return smalltalk.withContext(function($ctx2) {return _st(self)._renderContentOn_(html);}, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st(_st(self)._wrapper())._asJQuery());return self}, function($ctx1) {$ctx1.fill(self,"refresh",{},smalltalk.HLWidget)})},args: [],source: "refresh\x0a\x09self wrapper ifNil: [ ^ self ].\x0a    \x0a\x09self wrapper asJQuery empty.\x0a    [ :html | self renderContentOn: html ] appendToJQuery: self wrapper asJQuery",messageSends: ["ifNil:", "wrapper", "empty", "asJQuery", "appendToJQuery:", "renderContentOn:"],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "registerBindings",category: 'keybindings',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._registerBindingsOn_(_st(_st(_st(self)._manager())._keyBinder())._bindings());return self}, function($ctx1) {$ctx1.fill(self,"registerBindings",{},smalltalk.HLWidget)})},args: [],source: "registerBindings\x0a\x09self registerBindingsOn: self manager keyBinder bindings",messageSends: ["registerBindingsOn:", "bindings", "keyBinder", "manager"],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "registerBindingsOn:",category: 'keybindings',fn: function (aBindingGroup){var self=this;return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"registerBindingsOn:",{aBindingGroup:aBindingGroup},smalltalk.HLWidget)})},args: ["aBindingGroup"],source: "registerBindingsOn: aBindingGroup",messageSends: [],referencedClasses: []}),smalltalk.HLWidget);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.HLWidget)})},args: ["html"],source: "renderContentOn: html",messageSends: [],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "renderOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { self["@wrapper"]=_st(html)._div();_st((function(renderer){return smalltalk.withContext(function($ctx2) {return _st(self)._renderContentOn_(renderer);}, function($ctx2) {$ctx2.fillBlock({renderer:renderer},$ctx1)})}))._appendToJQuery_(_st(self["@wrapper"])._asJQuery());return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},smalltalk.HLWidget)})},args: ["html"],source: "renderOn: html\x0a\x09wrapper := html div.\x0a    [ :renderer | self renderContentOn: renderer ] appendToJQuery: wrapper asJQuery",messageSends: ["div", "appendToJQuery:", "asJQuery", "renderContentOn:"],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "wrapper",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@wrapper"];return $1;}, function($ctx1) {$ctx1.fill(self,"wrapper",{},smalltalk.HLWidget)})},args: [],source: "wrapper\x0a\x09^ wrapper",messageSends: [],referencedClasses: []}),smalltalk.HLWidget);smalltalk.addMethod(smalltalk.method({selector: "canBeOpenAsTab",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return false;}, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{},smalltalk.HLWidget.klass)})},args: [],source: "canBeOpenAsTab\x0a\x09^ false",messageSends: [],referencedClasses: []}),smalltalk.HLWidget.klass);smalltalk.addMethod(smalltalk.method({selector: "openAsTab",category: 'accessing',fn: function (){var self=this;function $HLTab(){return smalltalk.HLTab||(typeof HLTab=="undefined"?nil:HLTab)}function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}return smalltalk.withContext(function($ctx1) { var $1,$2;$1=_st(self)._canBeOpenAsTab();if(! smalltalk.assert($1)){$2=self;return $2;};_st(_st($HLManager())._current())._addTab_(_st($HLTab())._on_labelled_(_st(self)._new(),_st(self)._tabLabel()));return self}, function($ctx1) {$ctx1.fill(self,"openAsTab",{},smalltalk.HLWidget.klass)})},args: [],source: "openAsTab\x0a\x09self canBeOpenAsTab ifFalse: [ ^ self ].\x0a\x09HLManager current addTab: (HLTab on: self new labelled: self tabLabel)",messageSends: ["ifFalse:", "canBeOpenAsTab", "addTab:", "on:labelled:", "new", "tabLabel", "current"],referencedClasses: ["HLTab", "HLManager"]}),smalltalk.HLWidget.klass);smalltalk.addMethod(smalltalk.method({selector: "tabLabel",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return "Tab";}, function($ctx1) {$ctx1.fill(self,"tabLabel",{},smalltalk.HLWidget.klass)})},args: [],source: "tabLabel\x0a\x09^ 'Tab'",messageSends: [],referencedClasses: []}),smalltalk.HLWidget.klass);smalltalk.addMethod(smalltalk.method({selector: "tabPriority",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=(500);return $1;}, function($ctx1) {$ctx1.fill(self,"tabPriority",{},smalltalk.HLWidget.klass)})},args: [],source: "tabPriority\x0a\x09^ 500",messageSends: [],referencedClasses: []}),smalltalk.HLWidget.klass);smalltalk.addClass('HLDebugger', smalltalk.HLWidget, [], 'Helios-Core');smalltalk.addClass('HLFocusableWidget', smalltalk.HLWidget, [], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "blur",category: 'events',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(_st(self)._wrapper())._asJQuery())._blur();return self}, function($ctx1) {$ctx1.fill(self,"blur",{},smalltalk.HLFocusableWidget)})},args: [],source: "blur\x0a\x09self wrapper asJQuery blur",messageSends: ["blur", "asJQuery", "wrapper"],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addMethod(smalltalk.method({selector: "canHaveFocus",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return true;}, function($ctx1) {$ctx1.fill(self,"canHaveFocus",{},smalltalk.HLFocusableWidget)})},args: [],source: "canHaveFocus\x0a\x09^ true",messageSends: [],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addMethod(smalltalk.method({selector: "focus",category: 'events',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(_st(self)._wrapper())._asJQuery())._focus();return self}, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.HLFocusableWidget)})},args: [],source: "focus\x0a\x09self wrapper asJQuery focus",messageSends: ["focus", "asJQuery", "wrapper"],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addMethod(smalltalk.method({selector: "focusClass",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return "focused";}, function($ctx1) {$ctx1.fill(self,"focusClass",{},smalltalk.HLFocusableWidget)})},args: [],source: "focusClass\x0a\x09^ 'focused'",messageSends: [],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addMethod(smalltalk.method({selector: "hasFocus",category: 'events',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(_st(_st(self)._wrapper())._notNil())._and_((function(){return smalltalk.withContext(function($ctx2) {return _st(_st(_st(self)._wrapper())._asJQuery())._is_(":focus");}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"hasFocus",{},smalltalk.HLFocusableWidget)})},args: [],source: "hasFocus\x0a\x09^ self wrapper notNil and: [ self wrapper asJQuery is: ':focus' ]",messageSends: ["and:", "is:", "asJQuery", "wrapper", "notNil"],referencedClasses: []}),smalltalk.HLFocusableWidget);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.HLFocusableWidget)})},args: ["html"],source: "renderContentOn: html",messageSends: [],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addMethod(smalltalk.method({selector: "renderOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4;_st(self)._registerBindings();$1=_st(html)._div();_st($1)._class_("hl_widget");$2=_st($1)._yourself();self["@wrapper"]=$2;_st(self["@wrapper"])._with_((function(){return smalltalk.withContext(function($ctx2) {return _st(self)._renderContentOn_(html);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$3=self["@wrapper"];_st($3)._at_put_("tabindex","0");_st($3)._onBlur_((function(){return smalltalk.withContext(function($ctx2) {return _st(_st(_st(self)._wrapper())._asJQuery())._removeClass_(_st(self)._focusClass());}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$4=_st($3)._onFocus_((function(){return smalltalk.withContext(function($ctx2) {return _st(_st(_st(self)._wrapper())._asJQuery())._addClass_(_st(self)._focusClass());}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},smalltalk.HLFocusableWidget)})},args: ["html"],source: "renderOn: html\x0a\x09self registerBindings.\x0a    \x0a    wrapper := html div \x0a    \x09class: 'hl_widget';\x0a\x09\x09yourself.\x0a\x09\x09\x0a       wrapper with: [ self renderContentOn: html ].\x0a\x09\x0a\x09wrapper\x0a\x09\x09at: 'tabindex' put: '0';\x0a\x09\x09onBlur: [ self wrapper asJQuery removeClass: self focusClass ];\x0a        onFocus: [ self wrapper asJQuery addClass: self focusClass ]",messageSends: ["registerBindings", "class:", "div", "yourself", "with:", "renderContentOn:", "at:put:", "onBlur:", "removeClass:", "focusClass", "asJQuery", "wrapper", "onFocus:", "addClass:"],referencedClasses: []}),smalltalk.HLFocusableWidget);smalltalk.addClass('HLListWidget', smalltalk.HLFocusableWidget, ['items', 'selectedItem', 'mapping'], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "activateFirstListItem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._activateListItem_(_st(window)._jQuery_(_st(_st(_st(self["@wrapper"])._asJQuery())._find_("li.inactive"))._get_((0))));return self}, function($ctx1) {$ctx1.fill(self,"activateFirstListItem",{},smalltalk.HLListWidget)})},args: [],source: "activateFirstListItem\x0a\x09self activateListItem: (window jQuery: ((wrapper asJQuery find: 'li.inactive') get: 0))",messageSends: ["activateListItem:", "jQuery:", "get:", "find:", "asJQuery"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "activateItem:",category: 'actions',fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { var $1;var $early={};try {_st(self)._activateListItem_(_st(_st(self["@mapping"])._at_ifAbsent_(anObject,(function(){return smalltalk.withContext(function($ctx2) {$1=self;throw $early=[$1];}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})))._asJQuery());return self}catch(e) {if(e===$early)return e[0]; throw e}}, function($ctx1) {$ctx1.fill(self,"activateItem:",{anObject:anObject},smalltalk.HLListWidget)})},args: ["anObject"],source: "activateItem: anObject\x0a\x09self activateListItem: (mapping \x0a\x09\x09at: anObject\x0a\x09\x09ifAbsent: [ ^ self ]) asJQuery",messageSends: ["activateListItem:", "asJQuery", "at:ifAbsent:"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "activateListItem:",category: 'actions',fn: function (aListItem){var self=this;var item;return smalltalk.withContext(function($ctx1) { var $1,$2,$3;$1=_st(aListItem)._get_((0));if(($receiver = $1) == nil || $receiver == undefined){$2=self;return $2;} else {$1;};_st(_st(_st(aListItem)._parent())._children())._removeClass_("active");_st(aListItem)._addClass_("active");_st(self)._ensureVisible_(aListItem);item=_st(_st(self)._items())._at_(_st(_st(aListItem)._attr_("list-data"))._asNumber());$3=_st(_st(self)._selectedItem()).__eq_eq(item);if(! smalltalk.assert($3)){_st(self)._selectItem_(item);};return self}, function($ctx1) {$ctx1.fill(self,"activateListItem:",{aListItem:aListItem,item:item},smalltalk.HLListWidget)})},args: ["aListItem"],source: "activateListItem: aListItem\x0a\x09| item |\x0a    \x0a\x09(aListItem get: 0) ifNil: [ ^self ].\x0a\x09aListItem parent children removeClass: 'active'.\x0a\x09aListItem addClass: 'active'.\x0a    \x0a\x09self ensureVisible: aListItem.\x0a    \x0a   \x22Activate the corresponding item\x22\x0a   item := (self items at: (aListItem attr: 'list-data') asNumber).\x0a   self selectedItem == item ifFalse: [\x0a\x09   self selectItem: item ]",messageSends: ["ifNil:", "get:", "removeClass:", "children", "parent", "addClass:", "ensureVisible:", "at:", "asNumber", "attr:", "items", "ifFalse:", "selectItem:", "==", "selectedItem"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "activateNextListItem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._activateListItem_(_st(_st(window)._jQuery_(".focused .nav-pills .active"))._next());_st(_st(_st(window)._jQuery_(".focused .nav-pills .active"))._get())._ifEmpty_((function(){return smalltalk.withContext(function($ctx2) {return _st(self)._activateFirstListItem();}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"activateNextListItem",{},smalltalk.HLListWidget)})},args: [],source: "activateNextListItem\x0a\x09self activateListItem: (window jQuery: '.focused .nav-pills .active') next.\x0a\x09\x0a\x09\x22select the first item if none is selected\x22\x0a\x09(window jQuery: '.focused .nav-pills .active') get ifEmpty: [\x0a\x09\x09self activateFirstListItem ]",messageSends: ["activateListItem:", "next", "jQuery:", "ifEmpty:", "activateFirstListItem", "get"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "activatePreviousListItem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._activateListItem_(_st(_st(window)._jQuery_(".focused .nav-pills .active"))._prev());return self}, function($ctx1) {$ctx1.fill(self,"activatePreviousListItem",{},smalltalk.HLListWidget)})},args: [],source: "activatePreviousListItem\x0a\x09self activateListItem: (window jQuery: '.focused .nav-pills .active') prev",messageSends: ["activateListItem:", "prev", "jQuery:"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "cssClassForItem:",category: 'accessing',fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=_st(_st(self)._selectedItem()).__eq(anObject);if(smalltalk.assert($2)){$1="active";} else {$1="inactive";};return $1;}, function($ctx1) {$ctx1.fill(self,"cssClassForItem:",{anObject:anObject},smalltalk.HLListWidget)})},args: ["anObject"],source: "cssClassForItem: anObject\x0a\x09^ self selectedItem = anObject\x0a\x09\x09\x09ifTrue: [ 'active' ]\x0a\x09\x09\x09ifFalse: [ 'inactive' ]",messageSends: ["ifTrue:ifFalse:", "=", "selectedItem"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "defaultItems",category: 'defaults',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=[];return $1;}, function($ctx1) {$ctx1.fill(self,"defaultItems",{},smalltalk.HLListWidget)})},args: [],source: "defaultItems\x0a\x09^ #()",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "ensureVisible:",category: 'actions',fn: function (aListItem){var self=this;var perent,position;return smalltalk.withContext(function($ctx1) { var $1,$2;position=_st(self)._positionOf_(aListItem);parent=_st(aListItem)._parent();$1=_st(_st(_st(aListItem)._position())._top()).__lt((0));if(smalltalk.assert($1)){_st(_st(parent)._get_((0)))._scrollTop_(_st(_st(_st(_st(parent)._get_((0)))._scrollTop()).__plus(_st(_st(aListItem)._position())._top())).__minus((10)));};$2=_st(_st(_st(_st(aListItem)._position())._top()).__plus(_st(aListItem)._height())).__gt(_st(parent)._height());if(smalltalk.assert($2)){_st(_st(parent)._get_((0)))._scrollTop_(_st(_st(_st(_st(_st(parent)._get_((0)))._scrollTop()).__plus(_st(aListItem)._height())).__minus(_st(_st(parent)._height()).__minus(_st(_st(aListItem)._position())._top()))).__plus((10)));};return self}, function($ctx1) {$ctx1.fill(self,"ensureVisible:",{aListItem:aListItem,perent:perent,position:position},smalltalk.HLListWidget)})},args: ["aListItem"],source: "ensureVisible: aListItem\x09\x0a\x09\x22Move the scrollbar to show the active element\x22\x0a\x09\x0a\x09| perent position |\x0a\x09\x0a\x09position := self positionOf: aListItem.\x0a\x09parent := aListItem parent.\x0a\x09\x0a    aListItem position top < 0 ifTrue: [\x0a\x09\x09(parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem position top - 10) ].\x0a    aListItem position top + aListItem height > parent height ifTrue: [ \x0a\x09\x09(parent get: 0) scrollTop: ((parent get: 0) scrollTop + aListItem height - (parent height - aListItem position top)) +10 ]",messageSends: ["positionOf:", "parent", "ifTrue:", "scrollTop:", "-", "+", "top", "position", "scrollTop", "get:", "<", "height", ">"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "focus",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;smalltalk.HLFocusableWidget.fn.prototype._focus.apply(_st(self), []);$1=_st(_st(self)._items())._isEmpty();if(! smalltalk.assert($1)){$2=_st(self)._selectedItem();if(($receiver = $2) == nil || $receiver == undefined){_st(self)._activateFirstListItem();} else {$2;};};return self}, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.HLListWidget)})},args: [],source: "focus\x0a\x09super focus.\x0a    self items isEmpty ifFalse: [ \x0a\x09\x09self selectedItem ifNil: [ self activateFirstListItem ] ]",messageSends: ["focus", "ifFalse:", "ifNil:", "activateFirstListItem", "selectedItem", "isEmpty", "items"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "iconForItem:",category: 'accessing',fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { return "";}, function($ctx1) {$ctx1.fill(self,"iconForItem:",{anObject:anObject},smalltalk.HLListWidget)})},args: ["anObject"],source: "iconForItem: anObject\x0a\x09^ ''",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}return smalltalk.withContext(function($ctx1) { smalltalk.HLFocusableWidget.fn.prototype._initialize.apply(_st(self), []);self["@mapping"]=_st($Dictionary())._new();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.HLListWidget)})},args: [],source: "initialize\x0a\x09super initialize.\x0a\x09\x0a\x09mapping := Dictionary new.",messageSends: ["initialize", "new"],referencedClasses: ["Dictionary"]}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "items",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@items"];if(($receiver = $2) == nil || $receiver == undefined){self["@items"]=_st(self)._defaultItems();$1=self["@items"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"items",{},smalltalk.HLListWidget)})},args: [],source: "items\x0a\x09^ items ifNil: [ items := self defaultItems ]",messageSends: ["ifNil:", "defaultItems"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "items:",category: 'accessing',fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { self["@items"]=aCollection;return self}, function($ctx1) {$ctx1.fill(self,"items:",{aCollection:aCollection},smalltalk.HLListWidget)})},args: ["aCollection"],source: "items: aCollection\x0a\x09items := aCollection",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "positionOf:",category: 'accessing',fn: function (aListItem){var self=this;return smalltalk.withContext(function($ctx1) {     	return aListItem.parent().children().get().indexOf(aListItem.get(0)) + 1	;return self}, function($ctx1) {$ctx1.fill(self,"positionOf:",{aListItem:aListItem},smalltalk.HLListWidget)})},args: ["aListItem"],source: "positionOf: aListItem\x0a\x09<\x0a    \x09return aListItem.parent().children().get().indexOf(aListItem.get(0)) + 1\x0a\x09>",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "refresh",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;var $early={};try {smalltalk.HLFocusableWidget.fn.prototype._refresh.apply(_st(self), []);_st(self)._ensureVisible_(_st(_st(self["@mapping"])._at_ifAbsent_(_st(self)._selectedItem(),(function(){return smalltalk.withContext(function($ctx2) {$1=self;throw $early=[$1];}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})))._asJQuery());return self}catch(e) {if(e===$early)return e[0]; throw e}}, function($ctx1) {$ctx1.fill(self,"refresh",{},smalltalk.HLListWidget)})},args: [],source: "refresh\x0a\x09super refresh.\x0a\x09\x0a\x09self ensureVisible: (mapping \x0a\x09\x09at: self selectedItem\x0a\x09\x09ifAbsent: [ ^ self ]) asJQuery",messageSends: ["refresh", "ensureVisible:", "asJQuery", "at:ifAbsent:", "selectedItem"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "registerMappingFrom:to:",category: 'private',fn: function (anObject,aTag){var self=this;return smalltalk.withContext(function($ctx1) { _st(self["@mapping"])._at_put_(anObject,aTag);return self}, function($ctx1) {$ctx1.fill(self,"registerMappingFrom:to:",{anObject:anObject,aTag:aTag},smalltalk.HLListWidget)})},args: ["anObject", "aTag"],source: "registerMappingFrom: anObject to: aTag\x0a\x09mapping at: anObject put: aTag",messageSends: ["at:put:"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "renderButtonsOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html},smalltalk.HLListWidget)})},args: ["html"],source: "renderButtonsOn: html",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4;$1=_st(html)._ul();_st($1)._class_("nav nav-pills nav-stacked");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {return _st(self)._renderListOn_(html);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$3=_st(html)._div();_st($3)._class_("pane_actions form-actions");$4=_st($3)._with_((function(){return smalltalk.withContext(function($ctx2) {return _st(self)._renderButtonsOn_(html);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));_st(self)._setupKeyBindings();return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLListWidget)})},args: ["html"],source: "renderContentOn: html\x0a\x09html ul \x0a    \x09class: 'nav nav-pills nav-stacked';\x0a        with: [ self renderListOn: html ].\x0a    html div class: 'pane_actions form-actions'; with: [\x0a      \x09self renderButtonsOn: html ].\x0a        \x0a   self setupKeyBindings",messageSends: ["class:", "ul", "with:", "renderListOn:", "div", "renderButtonsOn:", "setupKeyBindings"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "renderItem:on:",category: 'rendering',fn: function (anObject,html){var self=this;var li;return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$2;li=_st(html)._li();_st(self)._registerMappingFrom_to_(anObject,li);$1=li;_st($1)._class_(_st(self)._cssClassForItem_(anObject));_st($1)._at_put_("list-data",_st(_st(_st(self)._items())._indexOf_(anObject))._asString());$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {$3=_st(html)._a();_st($3)._with_((function(){return smalltalk.withContext(function($ctx3) {_st(_st(html)._tag_("i"))._class_(_st(self)._iconForItem_(anObject));return _st(self)._renderItemLabel_on_(anObject,html);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));$4=_st($3)._onClick_((function(){return smalltalk.withContext(function($ctx3) {return _st(self)._activateListItem_(_st(li)._asJQuery());}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $4;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderItem:on:",{anObject:anObject,html:html,li:li},smalltalk.HLListWidget)})},args: ["anObject", "html"],source: "renderItem: anObject on: html\x0a\x09| li |\x0a    \x0a\x09li := html li.\x0a\x09self registerMappingFrom: anObject to: li.\x0a\x09\x0a    li\x0a    \x09class: (self cssClassForItem: anObject);\x0a        at: 'list-data' put: (self items indexOf: anObject) asString;\x0a        with: [ \x0a        \x09html a\x0a            \x09with: [ \x0a            \x09\x09(html tag: 'i') class: (self iconForItem: anObject).\x0a  \x09\x09\x09\x09\x09self renderItemLabel: anObject on: html ];\x0a\x09\x09\x09\x09onClick: [\x0a                  \x09self activateListItem: li asJQuery ] ]",messageSends: ["li", "registerMappingFrom:to:", "class:", "cssClassForItem:", "at:put:", "asString", "indexOf:", "items", "with:", "iconForItem:", "tag:", "renderItemLabel:on:", "a", "onClick:", "activateListItem:", "asJQuery"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "renderItemLabel:on:",category: 'rendering',fn: function (anObject,html){var self=this;return smalltalk.withContext(function($ctx1) { _st(html)._with_(_st(anObject)._asString());return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{anObject:anObject,html:html},smalltalk.HLListWidget)})},args: ["anObject", "html"],source: "renderItemLabel: anObject on: html\x0a\x09html with: anObject asString",messageSends: ["with:", "asString"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "renderListOn:",category: 'rendering',fn: function (html){var self=this;function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}return smalltalk.withContext(function($ctx1) { self["@mapping"]=_st($Dictionary())._new();_st(_st(self)._items())._do_((function(each){return smalltalk.withContext(function($ctx2) {return _st(self)._renderItem_on_(each,html);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderListOn:",{html:html},smalltalk.HLListWidget)})},args: ["html"],source: "renderListOn: html\x0a\x09mapping := Dictionary new.\x0a\x09\x0a\x09self items do: [ :each | \x0a    \x09self renderItem: each on: html ]",messageSends: ["new", "do:", "renderItem:on:", "items"],referencedClasses: ["Dictionary"]}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._selectedItem_(anObject);return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{anObject:anObject},smalltalk.HLListWidget)})},args: ["anObject"],source: "selectItem: anObject\x0a\x09self selectedItem: anObject",messageSends: ["selectedItem:"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "selectedItem",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@selectedItem"];return $1;}, function($ctx1) {$ctx1.fill(self,"selectedItem",{},smalltalk.HLListWidget)})},args: [],source: "selectedItem\x0a\x09^ selectedItem",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "selectedItem:",category: 'accessing',fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { self["@selectedItem"]=anObject;return self}, function($ctx1) {$ctx1.fill(self,"selectedItem:",{anObject:anObject},smalltalk.HLListWidget)})},args: ["anObject"],source: "selectedItem: anObject\x0a\x09selectedItem := anObject",messageSends: [],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addMethod(smalltalk.method({selector: "setupKeyBindings",category: 'events',fn: function (){var self=this;var active,interval,delay,repeatInterval;return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4,$5;active=false;repeatInterval=(70);_st(_st(_st(self)._wrapper())._asJQuery())._unbind_("keydown");_st(_st(_st(self)._wrapper())._asJQuery())._keydown_((function(e){return smalltalk.withContext(function($ctx2) {$1=_st(_st(_st(e)._which()).__eq((38)))._and_((function(){return smalltalk.withContext(function($ctx3) {return _st(active).__eq(false);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));if(smalltalk.assert($1)){active=true;active;_st(self)._activatePreviousListItem();delay=_st((function(){return smalltalk.withContext(function($ctx3) {interval=_st((function(){return smalltalk.withContext(function($ctx4) {return _st(self)._activatePreviousListItem();}, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}))._valueWithInterval_(repeatInterval);return interval;}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._valueWithTimeout_((300));delay;};$2=_st(_st(_st(e)._which()).__eq((40)))._and_((function(){return smalltalk.withContext(function($ctx3) {return _st(active).__eq(false);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));if(smalltalk.assert($2)){active=true;active;_st(self)._activateNextListItem();delay=_st((function(){return smalltalk.withContext(function($ctx3) {interval=_st((function(){return smalltalk.withContext(function($ctx4) {return _st(self)._activateNextListItem();}, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}))._valueWithInterval_(repeatInterval);return interval;}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._valueWithTimeout_((300));return delay;};}, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1)})}));_st(_st(_st(self)._wrapper())._asJQuery())._keyup_((function(e){return smalltalk.withContext(function($ctx2) {$3=active;if(smalltalk.assert($3)){active=false;active;$4=interval;if(($receiver = $4) == nil || $receiver == undefined){$4;} else {_st(interval)._clearInterval();};$5=delay;if(($receiver = $5) == nil || $receiver == undefined){return $5;} else {return _st(delay)._clearTimeout();};};}, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"setupKeyBindings",{active:active,interval:interval,delay:delay,repeatInterval:repeatInterval},smalltalk.HLListWidget)})},args: [],source: "setupKeyBindings\x0a\x09\x22TODO: refactor this!\x22\x0a\x09\x0a\x09| active interval delay repeatInterval |\x0a\x09\x0a\x09active := false.\x0a\x09repeatInterval := 70.\x0a\x09self wrapper asJQuery unbind: 'keydown'.\x0a\x0a\x09self wrapper asJQuery keydown: [ :e |\x0a\x09\x09\x0a        (e which = 38 and: [ active = false ]) ifTrue: [ \x0a\x09\x09\x09active := true.\x0a\x09\x09\x09self activatePreviousListItem.\x0a        \x09delay := [\x0a\x09\x09\x09\x09interval := [ self activatePreviousListItem ]\x0a\x09\x09\x09\x09\x09valueWithInterval: repeatInterval ]\x0a\x09\x09\x09\x09\x09\x09valueWithTimeout: 300 ].\x0a\x09\x09\x09\x0a      \x09(e which = 40 and: [ active = false ]) ifTrue: [\x0a            active := true.\x0a\x09\x09\x09self activateNextListItem.\x0a        \x09delay := [\x0a\x09\x09\x09\x09interval := [ self activateNextListItem ]\x0a\x09\x09\x09\x09\x09valueWithInterval: repeatInterval ]\x0a\x09\x09\x09\x09\x09\x09valueWithTimeout: 300 ] ].\x0a\x09\x0a\x09self wrapper asJQuery keyup: [ :e |\x0a\x09\x09active ifTrue: [\x0a\x09\x09\x09active := false.\x0a\x09\x09\x09interval ifNotNil: [ interval clearInterval ].\x0a\x09\x09\x09delay ifNotNil: [ delay clearTimeout] ] ]",messageSends: ["unbind:", "asJQuery", "wrapper", "keydown:", "ifTrue:", "activatePreviousListItem", "valueWithTimeout:", "valueWithInterval:", "and:", "=", "which", "activateNextListItem", "keyup:", "ifNotNil:", "clearInterval", "clearTimeout"],referencedClasses: []}),smalltalk.HLListWidget);smalltalk.addClass('HLNavigationListWidget', smalltalk.HLListWidget, ['previous', 'next'], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "next",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@next"];return $1;}, function($ctx1) {$ctx1.fill(self,"next",{},smalltalk.HLNavigationListWidget)})},args: [],source: "next\x0a\x09^ next",messageSends: [],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "next:",category: 'accessing',fn: function (aWidget){var self=this;return smalltalk.withContext(function($ctx1) { var $1;self["@next"]=aWidget;$1=_st(_st(aWidget)._previous()).__eq(self);if(! smalltalk.assert($1)){_st(aWidget)._previous_(self);};return self}, function($ctx1) {$ctx1.fill(self,"next:",{aWidget:aWidget},smalltalk.HLNavigationListWidget)})},args: ["aWidget"],source: "next: aWidget\x0a\x09next := aWidget.\x0a    aWidget previous = self ifFalse: [ aWidget previous: self ]",messageSends: ["ifFalse:", "previous:", "=", "previous"],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "nextFocus",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self)._next();if(($receiver = $1) == nil || $receiver == undefined){$1;} else {_st(_st(self)._next())._focus();};return self}, function($ctx1) {$ctx1.fill(self,"nextFocus",{},smalltalk.HLNavigationListWidget)})},args: [],source: "nextFocus\x0a\x09self next ifNotNil: [ self next focus ]",messageSends: ["ifNotNil:", "focus", "next"],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "previous",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@previous"];return $1;}, function($ctx1) {$ctx1.fill(self,"previous",{},smalltalk.HLNavigationListWidget)})},args: [],source: "previous\x0a\x09^ previous",messageSends: [],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "previous:",category: 'accessing',fn: function (aWidget){var self=this;return smalltalk.withContext(function($ctx1) { var $1;self["@previous"]=aWidget;$1=_st(_st(aWidget)._next()).__eq(self);if(! smalltalk.assert($1)){_st(aWidget)._next_(self);};return self}, function($ctx1) {$ctx1.fill(self,"previous:",{aWidget:aWidget},smalltalk.HLNavigationListWidget)})},args: ["aWidget"],source: "previous: aWidget\x0a\x09previous := aWidget.\x0a    aWidget next = self ifFalse: [ aWidget next: self ]",messageSends: ["ifFalse:", "next:", "=", "next"],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "previousFocus",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self)._previous();if(($receiver = $1) == nil || $receiver == undefined){$1;} else {_st(_st(self)._previous())._focus();};return self}, function($ctx1) {$ctx1.fill(self,"previousFocus",{},smalltalk.HLNavigationListWidget)})},args: [],source: "previousFocus\x0a\x09self previous ifNotNil: [ self previous focus ]",messageSends: ["ifNotNil:", "focus", "previous"],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addMethod(smalltalk.method({selector: "setupKeyBindings",category: 'events',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;smalltalk.HLListWidget.fn.prototype._setupKeyBindings.apply(_st(self), []);_st(_st(_st(self)._wrapper())._asJQuery())._keydown_((function(e){return smalltalk.withContext(function($ctx2) {$1=_st(_st(e)._which()).__eq((39));if(smalltalk.assert($1)){_st(self)._nextFocus();};$2=_st(_st(e)._which()).__eq((37));if(smalltalk.assert($2)){return _st(self)._previousFocus();};}, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"setupKeyBindings",{},smalltalk.HLNavigationListWidget)})},args: [],source: "setupKeyBindings\x0a\x09super setupKeyBindings.\x0a\x0a\x09self wrapper asJQuery keydown: [ :e |\x0a        e which = 39 ifTrue: [ \x0a        \x09self nextFocus ].\x0a\x09\x09e which = 37 ifTrue: [ \x0a        \x09self previousFocus ] ]",messageSends: ["setupKeyBindings", "keydown:", "ifTrue:", "nextFocus", "=", "which", "previousFocus", "asJQuery", "wrapper"],referencedClasses: []}),smalltalk.HLNavigationListWidget);smalltalk.addClass('HLManager', smalltalk.HLWidget, ['tabs', 'activeTab', 'keyBinder', 'environment', 'history'], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "activate:",category: 'actions',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;_st(_st(self)._keyBinder())._flushBindings();_st(aTab)._registerBindings();self["@activeTab"]=aTab;$1=self;_st($1)._refresh();_st($1)._addToHistory_(aTab);$2=_st($1)._show_(aTab);return self}, function($ctx1) {$ctx1.fill(self,"activate:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "activate: aTab\x0a\x09self keyBinder flushBindings.\x0a\x09aTab registerBindings.\x0a\x09activeTab := aTab.\x0a\x09\x0a\x09self \x0a\x09\x09refresh;\x0a\x09\x09addToHistory: aTab;\x0a\x09\x09show: aTab",messageSends: ["flushBindings", "keyBinder", "registerBindings", "refresh", "addToHistory:", "show:"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "activeTab",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@activeTab"];return $1;}, function($ctx1) {$ctx1.fill(self,"activeTab",{},smalltalk.HLManager)})},args: [],source: "activeTab\x0a\x09^ activeTab",messageSends: [],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "addTab:",category: 'actions',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self)._tabs())._add_(aTab);_st(self)._activate_(aTab);return self}, function($ctx1) {$ctx1.fill(self,"addTab:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "addTab: aTab\x0a\x09self tabs add: aTab.\x0a    self activate: aTab",messageSends: ["add:", "tabs", "activate:"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "addToHistory:",category: 'actions',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._removeFromHistory_(aTab);_st(_st(self)._history())._add_(aTab);return self}, function($ctx1) {$ctx1.fill(self,"addToHistory:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "addToHistory: aTab\x0a\x09self removeFromHistory: aTab.\x0a\x09self history add: aTab",messageSends: ["removeFromHistory:", "add:", "history"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "defaultEnvironment",category: 'defaults',fn: function (){var self=this;function $Environment(){return smalltalk.Environment||(typeof Environment=="undefined"?nil:Environment)}return smalltalk.withContext(function($ctx1) { var $1,$2,$3;$1=_st(window)._parent();if(($receiver = $1) == nil || $receiver == undefined){$2=_st($Environment())._new();return $2;} else {$1;};$3=_st(_st(_st(_st(window)._parent())._at_("smalltalk"))._at_("Environment"))._new();return $3;}, function($ctx1) {$ctx1.fill(self,"defaultEnvironment",{},smalltalk.HLManager)})},args: [],source: "defaultEnvironment\x0a\x09\x22If helios is loaded from within a frame, answer the parent window environment\x22\x0a\x09\x0a\x09window parent ifNil: [ ^ Environment new ].\x0a\x09\x0a\x09^ ((window parent at: 'smalltalk')\x0a\x09\x09at: 'Environment') new",messageSends: ["ifNil:", "new", "parent", "at:"],referencedClasses: ["Environment"]}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "environment",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@environment"];if(($receiver = $2) == nil || $receiver == undefined){self["@environment"]=_st(self)._defaultEnvironment();$1=self["@environment"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"environment",{},smalltalk.HLManager)})},args: [],source: "environment\x0a\x09\x22The default environment used by all Helios objects\x22\x0a    \x0a\x09^ environment ifNil: [ environment := self defaultEnvironment ]",messageSends: ["ifNil:", "defaultEnvironment"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "environment:",category: 'accessing',fn: function (anEnvironment){var self=this;return smalltalk.withContext(function($ctx1) { self["@environment"]=anEnvironment;return self}, function($ctx1) {$ctx1.fill(self,"environment:",{anEnvironment:anEnvironment},smalltalk.HLManager)})},args: ["anEnvironment"],source: "environment: anEnvironment\x0a\x09environment := anEnvironment",messageSends: [],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "history",category: 'accessing',fn: function (){var self=this;function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@history"];if(($receiver = $2) == nil || $receiver == undefined){self["@history"]=_st($OrderedCollection())._new();$1=self["@history"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"history",{},smalltalk.HLManager)})},args: [],source: "history\x0a\x09^ history ifNil: [ history := OrderedCollection new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["OrderedCollection"]}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "history:",category: 'accessing',fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { self["@history"]=aCollection;return self}, function($ctx1) {$ctx1.fill(self,"history:",{aCollection:aCollection},smalltalk.HLManager)})},args: ["aCollection"],source: "history: aCollection\x0a\x09history := aCollection",messageSends: [],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { smalltalk.HLWidget.fn.prototype._initialize.apply(_st(self), []);_st(_st(self)._keyBinder())._setupEvents();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.HLManager)})},args: [],source: "initialize\x0a\x09super initialize.\x0a    self keyBinder setupEvents",messageSends: ["initialize", "setupEvents", "keyBinder"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "keyBinder",category: 'accessing',fn: function (){var self=this;function $HLKeyBinder(){return smalltalk.HLKeyBinder||(typeof HLKeyBinder=="undefined"?nil:HLKeyBinder)}return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@keyBinder"];if(($receiver = $2) == nil || $receiver == undefined){self["@keyBinder"]=_st($HLKeyBinder())._new();$1=self["@keyBinder"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"keyBinder",{},smalltalk.HLManager)})},args: [],source: "keyBinder\x0a\x09^ keyBinder ifNil: [ keyBinder := HLKeyBinder new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["HLKeyBinder"]}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "refresh",category: 'rendering',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(window)._jQuery_(".navbar"))._remove();_st(self)._appendToJQuery_(_st("body")._asJQuery());return self}, function($ctx1) {$ctx1.fill(self,"refresh",{},smalltalk.HLManager)})},args: [],source: "refresh\x0a\x09(window jQuery: '.navbar') remove.\x0a\x09self appendToJQuery: 'body' asJQuery",messageSends: ["remove", "jQuery:", "appendToJQuery:", "asJQuery"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "removeActiveTab",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._removeTab_(_st(self)._activeTab());return self}, function($ctx1) {$ctx1.fill(self,"removeActiveTab",{},smalltalk.HLManager)})},args: [],source: "removeActiveTab\x0a\x09self removeTab: self activeTab",messageSends: ["removeTab:", "activeTab"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "removeFromHistory:",category: 'actions',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._history_(_st(_st(self)._history())._reject_((function(each){return smalltalk.withContext(function($ctx2) {return _st(each).__eq_eq(aTab);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));return self}, function($ctx1) {$ctx1.fill(self,"removeFromHistory:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "removeFromHistory: aTab\x0a\x09self history: (self history reject: [ :each | each == aTab ])",messageSends: ["history:", "reject:", "==", "history"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "removeTab:",category: 'actions',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;$1=_st(_st(self)._tabs())._includes_(aTab);if(! smalltalk.assert($1)){$2=self;return $2;};_st(self)._removeFromHistory_(aTab);_st(_st(self)._tabs())._remove_(aTab);_st(_st(self)._keyBinder())._flushBindings();_st(aTab)._remove();_st(self)._refresh();_st(_st(self)._history())._ifNotEmpty_((function(){return smalltalk.withContext(function($ctx2) {return _st(_st(_st(self)._history())._last())._activate();}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"removeTab:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "removeTab: aTab\x0a\x09(self tabs includes: aTab) ifFalse: [ ^ self ].\x0a\x0a\x09self removeFromHistory: aTab.\x0a\x09self tabs remove: aTab.\x0a\x09self keyBinder flushBindings.\x0a\x09aTab remove.\x0a\x09self refresh.\x0a\x09self history ifNotEmpty: [\x0a\x09\x09self history last activate ]",messageSends: ["ifFalse:", "includes:", "tabs", "removeFromHistory:", "remove:", "flushBindings", "keyBinder", "remove", "refresh", "ifNotEmpty:", "activate", "last", "history"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "renderAddOn:",category: 'rendering',fn: function (html){var self=this;function $HLWidget(){return smalltalk.HLWidget||(typeof HLWidget=="undefined"?nil:HLWidget)}return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$5,$7,$8,$6,$2;$1=_st(html)._li();_st($1)._class_("dropdown");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {$3=_st(html)._a();_st($3)._class_("dropdown-toggle");_st($3)._at_put_("data-toggle","dropdown");$4=_st($3)._with_((function(){return smalltalk.withContext(function($ctx3) {_st(html)._with_("Open...");return _st(_st(html)._tag_("b"))._class_("caret");}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));$4;$5=_st(html)._ul();_st($5)._class_("dropdown-menu");$6=_st($5)._with_((function(){return smalltalk.withContext(function($ctx3) {return _st(_st(_st(_st($HLWidget())._withAllSubclasses())._select_((function(each){return smalltalk.withContext(function($ctx4) {return _st(each)._canBeOpenAsTab();}, function($ctx4) {$ctx4.fillBlock({each:each},$ctx1)})})))._sorted_((function(a,b){return smalltalk.withContext(function($ctx4) {return _st(_st(a)._tabPriority()).__lt(_st(b)._tabPriority());}, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx1)})})))._do_((function(each){return smalltalk.withContext(function($ctx4) {return _st(_st(html)._li())._with_((function(){return smalltalk.withContext(function($ctx5) {$7=_st(html)._a();_st($7)._with_(_st(each)._tabLabel());$8=_st($7)._onClick_((function(){return smalltalk.withContext(function($ctx6) {return _st(each)._openAsTab();}, function($ctx6) {$ctx6.fillBlock({},$ctx1)})}));return $8;}, function($ctx5) {$ctx5.fillBlock({},$ctx1)})}));}, function($ctx4) {$ctx4.fillBlock({each:each},$ctx1)})}));}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $6;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderAddOn:",{html:html},smalltalk.HLManager)})},args: ["html"],source: "renderAddOn: html\x0a    html li \x0a    \x09class: 'dropdown';\x0a        with: [ \x0a\x09\x09\x09html a \x0a        \x09\x09class: 'dropdown-toggle';\x0a           \x09 \x09at: 'data-toggle' put: 'dropdown';\x0a            \x09with: [ \x0a            \x09\x09html with: 'Open...'.\x0a  \x09\x09\x09\x09\x09(html tag: 'b') class: 'caret' ].\x0a           html ul \x0a           \x09\x09class: 'dropdown-menu';\x0a                with: [\x0a                  \x09((HLWidget withAllSubclasses\x0a                    \x09select: [ :each | each canBeOpenAsTab ])\x0a                        sorted: [ :a :b | a tabPriority < b tabPriority ])\x0a                        do: [ :each |\x0a  \x09\x09\x09\x09\x09\x09\x09html li with: [\x0a                      \x09\x09\x09html a \x0a                                \x09with: each tabLabel;\x0a      \x09\x09\x09\x09\x09\x09\x09\x09onClick: [ each openAsTab ] ] ] ] ]",messageSends: ["class:", "li", "with:", "a", "at:put:", "tag:", "ul", "do:", "tabLabel", "onClick:", "openAsTab", "sorted:", "<", "tabPriority", "select:", "canBeOpenAsTab", "withAllSubclasses"],referencedClasses: ["HLWidget"]}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$2;$1=_st(html)._div();_st($1)._class_("navbar navbar-fixed-top");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {$3=_st(html)._div();_st($3)._class_("navbar-inner");$4=_st($3)._with_((function(){return smalltalk.withContext(function($ctx3) {return _st(self)._renderTabsOn_(html);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $4;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLManager)})},args: ["html"],source: "renderContentOn: html\x0a\x09html div \x0a\x09\x09class: 'navbar navbar-fixed-top';\x0a\x09\x09with: [ html div \x0a\x09\x09\x09class: 'navbar-inner';\x0a\x09\x09\x09with: [ self renderTabsOn: html ] ]",messageSends: ["class:", "div", "with:", "renderTabsOn:"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "renderTabsOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$6,$5,$8,$9,$7,$2;$1=_st(html)._ul();_st($1)._class_("nav");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {_st(_st(self)._tabs())._do_((function(each){return smalltalk.withContext(function($ctx3) {$3=_st(html)._li();$4=$3;$6=_st(each)._isActive();if(smalltalk.assert($6)){$5="active";} else {$5="inactive";};_st($4)._class_($5);$7=_st($3)._with_((function(){return smalltalk.withContext(function($ctx4) {$8=_st(html)._a();_st($8)._with_((function(){return smalltalk.withContext(function($ctx5) {_st(_st(_st(html)._tag_("i"))._class_("icon-remove"))._onClick_((function(){return smalltalk.withContext(function($ctx6) {return _st(self)._removeTab_(each);}, function($ctx6) {$ctx6.fillBlock({},$ctx1)})}));return _st(html)._with_(_st(each)._displayLabel());}, function($ctx5) {$ctx5.fillBlock({},$ctx1)})}));$9=_st($8)._onClick_((function(){return smalltalk.withContext(function($ctx5) {return _st(each)._activate();}, function($ctx5) {$ctx5.fillBlock({},$ctx1)})}));return $9;}, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));return $7;}, function($ctx3) {$ctx3.fillBlock({each:each},$ctx1)})}));return _st(self)._renderAddOn_(html);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderTabsOn:",{html:html},smalltalk.HLManager)})},args: ["html"],source: "renderTabsOn: html\x0a\x09html ul \x0a\x09\x09class: 'nav';\x0a\x09\x09with: [ \x0a        \x09self tabs do: [ :each |\x0a\x09\x09\x09\x09html li \x0a\x09\x09\x09\x09\x09class: (each isActive ifTrue: [ 'active' ] ifFalse: [ 'inactive' ]);\x0a\x09\x09\x09\x09\x09with: [\x0a\x09\x09\x09\x09\x09\x09html a\x0a\x09\x09\x09\x09\x09\x09\x09with: [\x0a      \x09\x09\x09\x09\x09\x09\x09((html tag: 'i') class: 'icon-remove')\x0a  \x09\x09\x09\x09\x09\x09\x09\x09\x09onClick: [ self removeTab: each ].\x0a                              \x09html with: each displayLabel ];\x0a\x09\x09\x09\x09\x09\x09\x09onClick: [ each activate ] ] ].\x0a\x09\x09\x09self renderAddOn: html ]",messageSends: ["class:", "ul", "with:", "do:", "ifTrue:ifFalse:", "isActive", "li", "onClick:", "removeTab:", "tag:", "displayLabel", "a", "activate", "tabs", "renderAddOn:"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "show:",category: 'rendering',fn: function (aTab){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;_st(_st(self)._tabs())._do_((function(each){return smalltalk.withContext(function($ctx2) {return _st(each)._hide();}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));$1=aTab;_st($1)._show();$2=_st($1)._focus();return self}, function($ctx1) {$ctx1.fill(self,"show:",{aTab:aTab},smalltalk.HLManager)})},args: ["aTab"],source: "show: aTab\x0a\x09self tabs do: [ :each | each hide ].\x0a\x09aTab show; focus",messageSends: ["do:", "hide", "tabs", "show", "focus"],referencedClasses: []}),smalltalk.HLManager);smalltalk.addMethod(smalltalk.method({selector: "tabs",category: 'accessing',fn: function (){var self=this;function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@tabs"];if(($receiver = $2) == nil || $receiver == undefined){self["@tabs"]=_st($OrderedCollection())._new();$1=self["@tabs"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"tabs",{},smalltalk.HLManager)})},args: [],source: "tabs\x0a\x09^ tabs ifNil: [ tabs := OrderedCollection new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["OrderedCollection"]}),smalltalk.HLManager);smalltalk.HLManager.klass.iVarNames = ['current'];smalltalk.addMethod(smalltalk.method({selector: "current",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@current"];if(($receiver = $2) == nil || $receiver == undefined){self["@current"]=_st(_st(self)._basicNew())._initialize();$1=self["@current"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"current",{},smalltalk.HLManager.klass)})},args: [],source: "current\x0a\x09^ current ifNil: [ current := self basicNew initialize ]",messageSends: ["ifNil:", "initialize", "basicNew"],referencedClasses: []}),smalltalk.HLManager.klass);smalltalk.addMethod(smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(_st(self)._current())._appendToJQuery_(_st("body")._asJQuery());return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.HLManager.klass)})},args: [],source: "initialize\x0a\x09self current appendToJQuery: 'body' asJQuery",messageSends: ["appendToJQuery:", "asJQuery", "current"],referencedClasses: []}),smalltalk.HLManager.klass);smalltalk.addMethod(smalltalk.method({selector: "new",category: 'instance creation',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self)._shouldNotImplement();return self}, function($ctx1) {$ctx1.fill(self,"new",{},smalltalk.HLManager.klass)})},args: [],source: "new\x0a\x09\x22Use current instead\x22\x0a\x0a\x09self shouldNotImplement",messageSends: ["shouldNotImplement"],referencedClasses: []}),smalltalk.HLManager.klass);smalltalk.addClass('HLSUnit', smalltalk.HLWidget, [], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "canBeOpenAsTab",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return true;}, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{},smalltalk.HLSUnit.klass)})},args: [],source: "canBeOpenAsTab\x0a\x09^ true",messageSends: [],referencedClasses: []}),smalltalk.HLSUnit.klass);smalltalk.addMethod(smalltalk.method({selector: "tabLabel",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return "SUnit";}, function($ctx1) {$ctx1.fill(self,"tabLabel",{},smalltalk.HLSUnit.klass)})},args: [],source: "tabLabel\x0a\x09^ 'SUnit'",messageSends: [],referencedClasses: []}),smalltalk.HLSUnit.klass);smalltalk.addMethod(smalltalk.method({selector: "tabPriority",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=(1000);return $1;}, function($ctx1) {$ctx1.fill(self,"tabPriority",{},smalltalk.HLSUnit.klass)})},args: [],source: "tabPriority\x0a\x09^ 1000",messageSends: [],referencedClasses: []}),smalltalk.HLSUnit.klass);smalltalk.addClass('HLTranscript', smalltalk.HLWidget, [], 'Helios-Core');smalltalk.addMethod(smalltalk.method({selector: "canBeOpenAsTab",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return true;}, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{},smalltalk.HLTranscript.klass)})},args: [],source: "canBeOpenAsTab\x0a\x09^ true",messageSends: [],referencedClasses: []}),smalltalk.HLTranscript.klass);smalltalk.addMethod(smalltalk.method({selector: "tabLabel",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return "Transcript";}, function($ctx1) {$ctx1.fill(self,"tabLabel",{},smalltalk.HLTranscript.klass)})},args: [],source: "tabLabel\x0a\x09^ 'Transcript'",messageSends: [],referencedClasses: []}),smalltalk.HLTranscript.klass);smalltalk.addMethod(smalltalk.method({selector: "tabPriority",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=(600);return $1;}, function($ctx1) {$ctx1.fill(self,"tabPriority",{},smalltalk.HLTranscript.klass)})},args: [],source: "tabPriority\x0a\x09^ 600",messageSends: [],referencedClasses: []}),smalltalk.HLTranscript.klass);
 |