1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606 |
- smalltalk.addPackage('Helios-Core', {});
- smalltalk.addClass('HLEnvironment', smalltalk.Object, [], 'Helios-Core');
- smalltalk.addMethod(
- "_eval_on_",
- smalltalk.method({
- selector: "eval:on:",
- fn: function (someCode,aReceiver){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_subclassResponsibility",[]);
- return $1;
- }
- }),
- smalltalk.HLEnvironment);
- smalltalk.addMethod(
- "_packages",
- smalltalk.method({
- selector: "packages",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_subclassResponsibility",[]);
- return $1;
- }
- }),
- smalltalk.HLEnvironment);
- smalltalk.addClass('HLLocalEnvironment', smalltalk.HLEnvironment, [], 'Helios-Core');
- smalltalk.addMethod(
- "_eval_on_",
- smalltalk.method({
- selector: "eval:on:",
- fn: function (someCode,aReceiver){
- var self=this;
- var $1,$2;
- var $early={};
- try {
- var compiler;
- compiler=smalltalk.send((smalltalk.Compiler || Compiler),"_new",[]);
- smalltalk.send((function(){
- return smalltalk.send(compiler,"_parseExpression_",[someCode]);
- }),"_on_do_",[(smalltalk.Error || Error),(function(ex){
- $1=smalltalk.send(window,"_alert_",[smalltalk.send(ex,"_messageText",[])]);
- throw $early=[$1];
- })]);
- $2=smalltalk.send(smalltalk.send(smalltalk.send(compiler,"_eval_",[smalltalk.send(compiler,"_compile_forClass_",[smalltalk.send(smalltalk.send("doIt ^[","__comma",[someCode]),"__comma",["] value"]),(smalltalk.DoIt || DoIt)])]),"_fn",[]),"_applyTo_arguments_",[aReceiver,[]]);
- return $2;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }
- }),
- smalltalk.HLLocalEnvironment);
- smalltalk.addMethod(
- "_packages",
- smalltalk.method({
- selector: "packages",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk),"_current",[]),"_packages",[]);
- return $1;
- }
- }),
- smalltalk.HLLocalEnvironment);
- smalltalk.addClass('HLRemoteEnvironment', smalltalk.HLEnvironment, [], 'Helios-Core');
- smalltalk.addMethod(
- "_eval_on_",
- smalltalk.method({
- selector: "eval:on:",
- fn: function (someCode,aReceiver){
- var self=this;
- smalltalk.send(self,"_notYetImplemented",[]);
- return self}
- }),
- smalltalk.HLRemoteEnvironment);
- smalltalk.addMethod(
- "_packages",
- smalltalk.method({
- selector: "packages",
- fn: function (){
- var self=this;
- return self}
- }),
- smalltalk.HLRemoteEnvironment);
- smalltalk.addClass('HLRemoteObject', smalltalk.Object, [], 'Helios-Core');
- smalltalk.addMethod(
- "_doesNotUnderstand_",
- smalltalk.method({
- selector: "doesNotUnderstand:",
- fn: function (aMessage){
- var self=this;
- return self}
- }),
- smalltalk.HLRemoteObject);
- smalltalk.addMethod(
- "_inspectOn_",
- smalltalk.method({
- selector: "inspectOn:",
- fn: function (anInspector){
- var self=this;
- return self}
- }),
- smalltalk.HLRemoteObject);
- smalltalk.addMethod(
- "_printString",
- smalltalk.method({
- selector: "printString",
- fn: function (){
- var self=this;
- return "this is a remote object";
- }
- }),
- smalltalk.HLRemoteObject);
- smalltalk.addClass('HLSourceArea', smalltalk.Widget, ['editor', 'textarea', 'div', 'receiver', 'onDoIt'], 'Helios-Core');
- smalltalk.addMethod(
- "_clear",
- smalltalk.method({
- selector: "clear",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_contents_",[""]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_contents",
- smalltalk.method({
- selector: "contents",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@editor"],"_getValue",[]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_contents_",
- smalltalk.method({
- selector: "contents:",
- fn: function (aString){
- var self=this;
- smalltalk.send(self["@editor"],"_setValue_",[aString]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_currentLine",
- smalltalk.method({
- selector: "currentLine",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@editor"],"_getLine_",[smalltalk.send(smalltalk.send(self["@editor"],"_getCursor",[]),"_line",[])]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_currentLineOrSelection",
- smalltalk.method({
- selector: "currentLineOrSelection",
- fn: function (){
- var self=this;
- var $2,$1;
- $2=smalltalk.send(self["@editor"],"_somethingSelected",[]);
- if(smalltalk.assert($2)){
- $1=smalltalk.send(self,"_selection",[]);
- } else {
- $1=smalltalk.send(self,"_currentLine",[]);
- };
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_doIt",
- smalltalk.method({
- selector: "doIt",
- fn: function (){
- var self=this;
- var $1;
- var result;
- result=smalltalk.send(self,"_eval_",[smalltalk.send(self,"_currentLineOrSelection",[])]);
- $1=smalltalk.send(self,"_onDoIt",[]);
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- smalltalk.send(smalltalk.send(self,"_onDoIt",[]),"_value",[]);
- };
- return result;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_editor",
- smalltalk.method({
- selector: "editor",
- fn: function (){
- var self=this;
- return self["@editor"];
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_eval_",
- smalltalk.method({
- selector: "eval:",
- fn: function (aString){
- var self=this;
- var $1,$2;
- var $early={};
- try {
- var compiler;
- compiler=smalltalk.send((smalltalk.Compiler || Compiler),"_new",[]);
- smalltalk.send((function(){
- return smalltalk.send(compiler,"_parseExpression_",[aString]);
- }),"_on_do_",[(smalltalk.Error || Error),(function(ex){
- $1=smalltalk.send(window,"_alert_",[smalltalk.send(ex,"_messageText",[])]);
- throw $early=[$1];
- })]);
- $2=smalltalk.send(smalltalk.send(smalltalk.send(compiler,"_eval_",[smalltalk.send(compiler,"_compile_forClass_",[smalltalk.send(smalltalk.send("doIt ^[","__comma",[aString]),"__comma",["] value"]),(smalltalk.DoIt || DoIt)])]),"_fn",[]),"_applyTo_arguments_",[smalltalk.send(self,"_receiver",[]),[]]);
- return $2;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_fileIn",
- smalltalk.method({
- selector: "fileIn",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.Importer || Importer),"_new",[]),"_import_",[smalltalk.send(smalltalk.send(self,"_currentLineOrSelection",[]),"_readStream",[])]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_handleKeyDown_",
- smalltalk.method({
- selector: "handleKeyDown:",
- fn: function (anEvent){
- var self=this;
- if(anEvent.ctrlKey) {
- if(anEvent.keyCode === 80) {
- self._printIt();
- anEvent.preventDefault();
- return false;
- }
- if(anEvent.keyCode === 68) {
- self._doIt();
- anEvent.preventDefault();
- return false;
- }
- if(anEvent.keyCode === 73) {
- self._inspectIt();
- anEvent.preventDefault();
- return false;
- }
- };
- ;
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_inspectIt",
- smalltalk.method({
- selector: "inspectIt",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_doIt",[]),"_inspect",[]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_onDoIt",
- smalltalk.method({
- selector: "onDoIt",
- fn: function (){
- var self=this;
- return self["@onDoIt"];
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_onDoIt_",
- smalltalk.method({
- selector: "onDoIt:",
- fn: function (aBlock){
- var self=this;
- self["@onDoIt"]=aBlock;
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_onKeyDown_",
- smalltalk.method({
- selector: "onKeyDown:",
- fn: function (aBlock){
- var self=this;
- smalltalk.send(self["@div"],"_onKeyDown_",[aBlock]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_onKeyUp_",
- smalltalk.method({
- selector: "onKeyUp:",
- fn: function (aBlock){
- var self=this;
- smalltalk.send(self["@div"],"_onKeyUp_",[aBlock]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_print_",
- smalltalk.method({
- selector: "print:",
- fn: function (aString){
- var self=this;
- var start;
- var stop;
- start=smalltalk.send((smalltalk.HashedCollection || HashedCollection),"_new",[]);
- stop=smalltalk.send((smalltalk.HashedCollection || HashedCollection),"_new",[]);
- smalltalk.send(start,"_at_put_",["line",smalltalk.send(smalltalk.send(self["@editor"],"_getCursor_",[false]),"_line",[])]);
- smalltalk.send(start,"_at_put_",["ch",smalltalk.send(smalltalk.send(self["@editor"],"_getCursor_",[false]),"_ch",[])]);
- smalltalk.send(stop,"_at_put_",["line",smalltalk.send(start,"_at_",["line"])]);
- smalltalk.send(stop,"_at_put_",["ch",smalltalk.send(smalltalk.send(smalltalk.send(start,"_at_",["ch"]),"__plus",[smalltalk.send(aString,"_size",[])]),"__plus",[(2)])]);
- smalltalk.send(self["@editor"],"_replaceSelection_",[smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self["@editor"],"_getSelection",[]),"__comma",[" "]),"__comma",[aString]),"__comma",[" "])]);
- smalltalk.send(self["@editor"],"_setCursor_",[smalltalk.send(self["@editor"],"_getCursor_",[true])]);
- smalltalk.send(self["@editor"],"_setSelection_end_",[stop,start]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_printIt",
- smalltalk.method({
- selector: "printIt",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_print_",[smalltalk.send(smalltalk.send(self,"_doIt",[]),"_printString",[])]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_receiver",
- smalltalk.method({
- selector: "receiver",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@receiver"]) == nil || $receiver == undefined){
- $1=smalltalk.send((smalltalk.DoIt || DoIt),"_new",[]);
- } else {
- $1=self["@receiver"];
- };
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_receiver_",
- smalltalk.method({
- selector: "receiver:",
- fn: function (anObject){
- var self=this;
- self["@receiver"]=anObject;
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_renderOn_",
- smalltalk.method({
- selector: "renderOn:",
- fn: function (html){
- var self=this;
- self["@div"]=smalltalk.send(smalltalk.send(html,"_div",[]),"_class_",["source"]);
- smalltalk.send(self["@div"],"_with_",[(function(){
- self["@textarea"]=smalltalk.send(html,"_textarea",[]);
- return self["@textarea"];
- })]);
- smalltalk.send(self,"_setEditorOn_",[smalltalk.send(self["@textarea"],"_element",[])]);
- smalltalk.send(self["@div"],"_onKeyDown_",[(function(e){
- return smalltalk.send(self,"_handleKeyDown_",[e]);
- })]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_selection",
- smalltalk.method({
- selector: "selection",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@editor"],"_getSelection",[]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_selectionEnd",
- smalltalk.method({
- selector: "selectionEnd",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self["@textarea"],"_element",[]),"_selectionEnd",[]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_selectionEnd_",
- smalltalk.method({
- selector: "selectionEnd:",
- fn: function (anInteger){
- var self=this;
- smalltalk.send(smalltalk.send(self["@textarea"],"_element",[]),"_selectionEnd_",[anInteger]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_selectionStart",
- smalltalk.method({
- selector: "selectionStart",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self["@textarea"],"_element",[]),"_selectionStart",[]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_selectionStart_",
- smalltalk.method({
- selector: "selectionStart:",
- fn: function (anInteger){
- var self=this;
- smalltalk.send(smalltalk.send(self["@textarea"],"_element",[]),"_selectionStart_",[anInteger]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_setEditorOn_",
- smalltalk.method({
- selector: "setEditorOn:",
- fn: function (aTextarea){
- var self=this;
- self['@editor'] = CodeMirror.fromTextArea(aTextarea, {
- theme: 'amber',
- lineNumbers: true,
- enterMode: 'flat',
- matchBrackets: true,
- electricChars: false
- });
- ;
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_val",
- smalltalk.method({
- selector: "val",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@editor"],"_getValue",[]);
- return $1;
- }
- }),
- smalltalk.HLSourceArea);
- smalltalk.addMethod(
- "_val_",
- smalltalk.method({
- selector: "val:",
- fn: function (aString){
- var self=this;
- smalltalk.send(self["@editor"],"_setValue_",[aString]);
- return self}
- }),
- smalltalk.HLSourceArea);
- smalltalk.addClass('HLTab', smalltalk.Object, ['widget', 'label'], 'Helios-Core');
- smalltalk.addMethod(
- "_activate",
- smalltalk.method({
- selector: "activate",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_manager",[]),"_activate_",[self]);
- return self}
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_add",
- smalltalk.method({
- selector: "add",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_manager",[]),"_addTab_",[self]);
- return self}
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_isActive",
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(smalltalk.send(self,"_manager",[]),"_activeTab",[]),"__eq",[self]);
- return $1;
- }
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_label",
- smalltalk.method({
- selector: "label",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@label"]) == nil || $receiver == undefined){
- $1="";
- } else {
- $1=self["@label"];
- };
- return $1;
- }
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_label_",
- smalltalk.method({
- selector: "label:",
- fn: function (aString){
- var self=this;
- self["@label"]=aString;
- return self}
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_manager",
- smalltalk.method({
- selector: "manager",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send((smalltalk.HLManager || HLManager),"_current",[]);
- return $1;
- }
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_widget",
- smalltalk.method({
- selector: "widget",
- fn: function (){
- var self=this;
- return self["@widget"];
- }
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_widget_",
- smalltalk.method({
- selector: "widget:",
- fn: function (aWidget){
- var self=this;
- self["@widget"]=aWidget;
- return self}
- }),
- smalltalk.HLTab);
- smalltalk.addMethod(
- "_on_labelled_",
- smalltalk.method({
- selector: "on:labelled:",
- fn: function (aWidget,aString){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send(self,"_new",[]);
- smalltalk.send($2,"_widget_",[aWidget]);
- smalltalk.send($2,"_label_",[aString]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- }
- }),
- smalltalk.HLTab.klass);
- smalltalk.addClass('HLWidget', smalltalk.Widget, ['rootDiv'], 'Helios-Core');
- smalltalk.addMethod(
- "_manager",
- smalltalk.method({
- selector: "manager",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send((smalltalk.HLManager || HLManager),"_current",[]);
- return $1;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_refresh",
- smalltalk.method({
- selector: "refresh",
- fn: function (){
- var self=this;
- if(($receiver = self["@rootDiv"]) == nil || $receiver == undefined){
- return self;
- } else {
- self["@rootDiv"];
- };
- smalltalk.send(smalltalk.send(self["@rootDiv"],"_asJQuery",[]),"_empty",[]);
- smalltalk.send((function(html){
- return smalltalk.send(self,"_renderContentOn_",[html]);
- }),"_appendToJQuery_",[smalltalk.send(self["@rootDiv"],"_asJQuery",[])]);
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_registerBindings",
- smalltalk.method({
- selector: "registerBindings",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_registerBindingsOn_",[smalltalk.send(smalltalk.send(smalltalk.send(self,"_manager",[]),"_keyBinder",[]),"_bindings",[])]);
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_registerBindingsOn_",
- smalltalk.method({
- selector: "registerBindingsOn:",
- fn: function (aBindingGroup){
- var self=this;
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_renderOn_",
- smalltalk.method({
- selector: "renderOn:",
- fn: function (html){
- var self=this;
- smalltalk.send(self,"_registerBindings",[]);
- self["@rootDiv"]=smalltalk.send(smalltalk.send(html,"_div",[]),"_with_",[(function(){
- return smalltalk.send(self,"_renderContentOn_",[html]);
- })]);
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_subscribeTo_",
- smalltalk.method({
- selector: "subscribeTo:",
- fn: function (anAnnouncer){
- var self=this;
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- fn: function (){
- var self=this;
- return false;
- }
- }),
- smalltalk.HLWidget.klass);
- smalltalk.addMethod(
- "_openAsTab",
- smalltalk.method({
- selector: "openAsTab",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.HLManager || HLManager),"_current",[]),"_addTab_",[smalltalk.send((smalltalk.HLTab || HLTab),"_on_labelled_",[smalltalk.send(self,"_new",[]),smalltalk.send(self,"_tabLabel",[])])]);
- return self}
- }),
- smalltalk.HLWidget.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- fn: function (){
- var self=this;
- return "Tab";
- }
- }),
- smalltalk.HLWidget.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- fn: function (){
- var self=this;
- return (500);
- }
- }),
- smalltalk.HLWidget.klass);
- smalltalk.addClass('HLDebugger', smalltalk.HLWidget, [], 'Helios-Core');
- smalltalk.addClass('HLFocusableWidget', smalltalk.HLWidget, ['hiddenInput'], 'Helios-Core');
- smalltalk.addMethod(
- "_blur",
- smalltalk.method({
- selector: "blur",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_blur",[]);
- return self}
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_focus",
- smalltalk.method({
- selector: "focus",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_focus",[]);
- return self}
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_focusClass",
- smalltalk.method({
- selector: "focusClass",
- fn: function (){
- var self=this;
- return "focused";
- }
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_hasFocus",
- smalltalk.method({
- selector: "hasFocus",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self["@rootDiv"],"_notNil",[]),"_and_",[(function(){
- return smalltalk.send(smalltalk.send(self["@rootDiv"],"_asJQuery",[]),"_hasClass_",[smalltalk.send(self,"_focusClass",[])]);
- })]);
- return $1;
- }
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- return self}
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_renderHiddenInputOn_",
- smalltalk.method({
- selector: "renderHiddenInputOn:",
- fn: function (html){
- var self=this;
- var $1,$2;
- $1=smalltalk.send(html,"_input",[]);
- smalltalk.send($1,"_style_",["position: absolute; left: -100000px;"]);
- smalltalk.send($1,"_onBlur_",[(function(){
- return smalltalk.send(smalltalk.send(self["@rootDiv"],"_asJQuery",[]),"_removeClass_",[smalltalk.send(self,"_focusClass",[])]);
- })]);
- $2=smalltalk.send($1,"_onFocus_",[(function(){
- return smalltalk.send(smalltalk.send(self["@rootDiv"],"_asJQuery",[]),"_addClass_",[smalltalk.send(self,"_focusClass",[])]);
- })]);
- self["@hiddenInput"]=$2;
- return self}
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_renderOn_",
- smalltalk.method({
- selector: "renderOn:",
- fn: function (html){
- var self=this;
- var $1,$2;
- smalltalk.send(self,"_registerBindings",[]);
- smalltalk.send(self,"_renderHiddenInputOn_",[html]);
- $1=smalltalk.send(html,"_div",[]);
- smalltalk.send($1,"_class_",["hl_widget"]);
- smalltalk.send($1,"_onClick_",[(function(){
- return smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_focus",[]);
- })]);
- $2=smalltalk.send($1,"_with_",[(function(){
- return smalltalk.send(self,"_renderContentOn_",[html]);
- })]);
- self["@rootDiv"]=$2;
- return self}
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addClass('HLListWidget', smalltalk.HLFocusableWidget, ['items', 'selectedItem'], 'Helios-Core');
- smalltalk.addMethod(
- "_activateListItem_",
- smalltalk.method({
- selector: "activateListItem:",
- fn: function (aListItem){
- var self=this;
- var $1,$2,$3;
- var parent;
- var position;
- $1=smalltalk.send(aListItem,"_get_",[(0)]);
- if(($receiver = $1) == nil || $receiver == undefined){
- return self;
- } else {
- $1;
- };
- position = aListItem.parent().children().get().indexOf(aListItem.get(0)) + 1;
- ;
- parent=smalltalk.send(aListItem,"_parent",[]);
- smalltalk.send(smalltalk.send(parent,"_children",[]),"_removeClass_",["active"]);
- smalltalk.send(aListItem,"_addClass_",["active"]);
- $2=smalltalk.send(smalltalk.send(smalltalk.send(aListItem,"_position",[]),"_top",[]),"__lt",[(0)]);
- if(smalltalk.assert($2)){
- smalltalk.send(smalltalk.send(parent,"_get_",[(0)]),"_scrollTop_",[smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(parent,"_get_",[(0)]),"_scrollTop",[]),"__plus",[smalltalk.send(smalltalk.send(aListItem,"_position",[]),"_top",[])]),"__minus",[(10)])]);
- };
- $3=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aListItem,"_position",[]),"_top",[]),"__plus",[smalltalk.send(aListItem,"_height",[])]),"__gt",[smalltalk.send(parent,"_height",[])]);
- if(smalltalk.assert($3)){
- smalltalk.send(smalltalk.send(parent,"_get_",[(0)]),"_scrollTop_",[smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(parent,"_get_",[(0)]),"_scrollTop",[]),"__plus",[smalltalk.send(aListItem,"_height",[])]),"__minus",[smalltalk.send(smalltalk.send(parent,"_height",[]),"__minus",[smalltalk.send(smalltalk.send(aListItem,"_position",[]),"_top",[])])]),"__plus",[(10)])]);
- };
- smalltalk.send(self,"_selectItem_",[smalltalk.send(smalltalk.send(self,"_items",[]),"_at_",[smalltalk.send(smalltalk.send(aListItem,"_attr_",["list-data"]),"_asNumber",[])])]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_cssClassForItem_",
- smalltalk.method({
- selector: "cssClassForItem:",
- fn: function (anObject){
- var self=this;
- var $2,$1;
- $2=smalltalk.send(smalltalk.send(self,"_selectedItem",[]),"__eq",[anObject]);
- if(smalltalk.assert($2)){
- $1="active";
- } else {
- $1="inactive";
- };
- return $1;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_iconForItem_",
- smalltalk.method({
- selector: "iconForItem:",
- fn: function (anObject){
- var self=this;
- return "";
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_initializeItems",
- smalltalk.method({
- selector: "initializeItems",
- fn: function (){
- var self=this;
- var $1;
- self["@items"]=[];
- $1=self["@items"];
- return $1;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_items",
- smalltalk.method({
- selector: "items",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@items"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeItems",[]);
- } else {
- $1=self["@items"];
- };
- return $1;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_items_",
- smalltalk.method({
- selector: "items:",
- fn: function (aCollection){
- var self=this;
- self["@items"]=aCollection;
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderButtonsOn_",
- smalltalk.method({
- selector: "renderButtonsOn:",
- fn: function (html){
- var self=this;
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- var $1,$2,$3,$4;
- $1=smalltalk.send(html,"_ul",[]);
- smalltalk.send($1,"_class_",["nav nav-pills nav-stacked"]);
- $2=smalltalk.send($1,"_with_",[(function(){
- return smalltalk.send(self,"_renderListOn_",[html]);
- })]);
- $3=smalltalk.send(html,"_div",[]);
- smalltalk.send($3,"_class_",["pane_actions form-actions"]);
- $4=smalltalk.send($3,"_with_",[(function(){
- return smalltalk.send(self,"_renderButtonsOn_",[html]);
- })]);
- smalltalk.send(self,"_setupKeyBindings",[]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderItem_on_",
- smalltalk.method({
- selector: "renderItem:on:",
- fn: function (anObject,html){
- var self=this;
- var $2,$3,$1;
- var li;
- li=smalltalk.send(html,"_li",[]);
- smalltalk.send(li,"_class_",[smalltalk.send(self,"_cssClassForItem_",[anObject])]);
- smalltalk.send(li,"_at_put_",["list-data",smalltalk.send(smalltalk.send(smalltalk.send(self,"_items",[]),"_indexOf_",[anObject]),"_asString",[])]);
- $1=smalltalk.send(li,"_with_",[(function(){
- $2=smalltalk.send(html,"_a",[]);
- smalltalk.send($2,"_with_",[(function(){
- smalltalk.send(smalltalk.send(html,"_tag_",["i"]),"_class_",[smalltalk.send(self,"_iconForItem_",[anObject])]);
- return smalltalk.send(self,"_renderItemLabel_on_",[anObject,html]);
- })]);
- $3=smalltalk.send($2,"_onClick_",[(function(){
- return smalltalk.send(self,"_activateListItem_",[smalltalk.send(li,"_asJQuery",[])]);
- })]);
- return $3;
- })]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderItemLabel_on_",
- smalltalk.method({
- selector: "renderItemLabel:on:",
- fn: function (anObject,html){
- var self=this;
- smalltalk.send(html,"_with_",[smalltalk.send(anObject,"_asString",[])]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderListOn_",
- smalltalk.method({
- selector: "renderListOn:",
- fn: function (html){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_items",[]),"_do_",[(function(each){
- return smalltalk.send(self,"_renderItem_on_",[each,html]);
- })]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_selectItem_",
- smalltalk.method({
- selector: "selectItem:",
- fn: function (anObject){
- var self=this;
- smalltalk.send(self,"_selectedItem_",[anObject]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_selectedItem",
- smalltalk.method({
- selector: "selectedItem",
- fn: function (){
- var self=this;
- return self["@selectedItem"];
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_selectedItem_",
- smalltalk.method({
- selector: "selectedItem:",
- fn: function (anObject){
- var self=this;
- self["@selectedItem"]=anObject;
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_setupKeyBindings",
- smalltalk.method({
- selector: "setupKeyBindings",
- fn: function (){
- var self=this;
- var $1,$2,$3;
- var next;
- smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_unbind_",["keydown"]);
- smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_keydown_",[(function(e){
- var selected;
- selected=smalltalk.send(window,"_jQuery_",[".focused .nav-pills .active"]);
- selected;
- $1=smalltalk.send(smalltalk.send(e,"_which",[]),"__eq",[(38)]);
- if(smalltalk.assert($1)){
- smalltalk.send(self,"_activateListItem_",[smalltalk.send(selected,"_prev",[])]);
- };
- $2=smalltalk.send(smalltalk.send(e,"_which",[]),"__eq",[(40)]);
- if(smalltalk.assert($2)){
- next=smalltalk.send(selected,"_next",[]);
- next;
- $3=smalltalk.send(next,"_get_",[(0)]);
- if(($receiver = $3) == nil || $receiver == undefined){
- next=smalltalk.send(window,"_jQuery_",[".focused .nav-pills li:first-child"]);
- next;
- } else {
- $3;
- };
- return smalltalk.send(self,"_activateListItem_",[next]);
- };
- })]);
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addClass('HLNavigationListWidget', smalltalk.HLListWidget, ['previous', 'next'], 'Helios-Core');
- smalltalk.addMethod(
- "_next",
- smalltalk.method({
- selector: "next",
- fn: function (){
- var self=this;
- return self["@next"];
- }
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_next_",
- smalltalk.method({
- selector: "next:",
- fn: function (aWidget){
- var self=this;
- var $1;
- self["@next"]=aWidget;
- $1=smalltalk.send(smalltalk.send(aWidget,"_previous",[]),"__eq",[self]);
- if(! smalltalk.assert($1)){
- smalltalk.send(aWidget,"_previous_",[self]);
- };
- return self}
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_nextFocus",
- smalltalk.method({
- selector: "nextFocus",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_next",[]);
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- smalltalk.send(smalltalk.send(self,"_next",[]),"_focus",[]);
- };
- return self}
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_previous",
- smalltalk.method({
- selector: "previous",
- fn: function (){
- var self=this;
- return self["@previous"];
- }
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_previous_",
- smalltalk.method({
- selector: "previous:",
- fn: function (aWidget){
- var self=this;
- var $1;
- self["@previous"]=aWidget;
- $1=smalltalk.send(smalltalk.send(aWidget,"_next",[]),"__eq",[self]);
- if(! smalltalk.assert($1)){
- smalltalk.send(aWidget,"_next_",[self]);
- };
- return self}
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_previousFocus",
- smalltalk.method({
- selector: "previousFocus",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_previous",[]);
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- smalltalk.send(smalltalk.send(self,"_previous",[]),"_focus",[]);
- };
- return self}
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addMethod(
- "_setupKeyBindings",
- smalltalk.method({
- selector: "setupKeyBindings",
- fn: function (){
- var self=this;
- var $1,$2;
- smalltalk.send(self,"_setupKeyBindings",[],smalltalk.HLListWidget);
- smalltalk.send(smalltalk.send(self["@hiddenInput"],"_asJQuery",[]),"_keydown_",[(function(e){
- $1=smalltalk.send(smalltalk.send(e,"_which",[]),"__eq",[(39)]);
- if(smalltalk.assert($1)){
- smalltalk.send(self,"_nextFocus",[]);
- };
- $2=smalltalk.send(smalltalk.send(e,"_which",[]),"__eq",[(37)]);
- if(smalltalk.assert($2)){
- return smalltalk.send(self,"_previousFocus",[]);
- };
- })]);
- return self}
- }),
- smalltalk.HLNavigationListWidget);
- smalltalk.addClass('HLManager', smalltalk.HLWidget, ['tabs', 'activeTab', 'keyBinder'], 'Helios-Core');
- smalltalk.addMethod(
- "_activate_",
- smalltalk.method({
- selector: "activate:",
- fn: function (aTab){
- var self=this;
- var $1;
- smalltalk.send(smalltalk.send(self,"_keyBinder",[]),"_flushBindings",[]);
- self["@activeTab"]=aTab;
- smalltalk.send(self,"_refresh",[]);
- $1=smalltalk.send(self,"_show_",[aTab]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_activeTab",
- smalltalk.method({
- selector: "activeTab",
- fn: function (){
- var self=this;
- return self["@activeTab"];
- }
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_addTab_",
- smalltalk.method({
- selector: "addTab:",
- fn: function (aTab){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_tabs",[]),"_add_",[aTab]);
- smalltalk.send(self,"_activate_",[aTab]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.HLWidget);
- smalltalk.send(smalltalk.send(self,"_keyBinder",[]),"_setupEvents",[]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_keyBinder",
- smalltalk.method({
- selector: "keyBinder",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@keyBinder"]) == nil || $receiver == undefined){
- self["@keyBinder"]=smalltalk.send((smalltalk.HLKeyBinder || HLKeyBinder),"_new",[]);
- $1=self["@keyBinder"];
- } else {
- $1=self["@keyBinder"];
- };
- return $1;
- }
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_refresh",
- smalltalk.method({
- selector: "refresh",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(window,"_jQuery_",[".navbar"]),"_remove",[]);
- smalltalk.send(smalltalk.send(window,"_jQuery_",["#container"]),"_remove",[]);
- smalltalk.send(self,"_appendToJQuery_",[smalltalk.send("body","_asJQuery",[])]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_removeTab_",
- smalltalk.method({
- selector: "removeTab:",
- fn: function (aTab){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_tabs",[]),"_includes_",[aTab]);
- if(! smalltalk.assert($1)){
- return self;
- };
- smalltalk.send(smalltalk.send(self,"_tabs",[]),"_remove_",[aTab]);
- smalltalk.send(self,"_refresh",[]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_renderAddOn_",
- smalltalk.method({
- selector: "renderAddOn:",
- fn: function (html){
- var self=this;
- var $1,$3,$4,$5,$7,$8,$6,$2;
- $1=smalltalk.send(html,"_li",[]);
- smalltalk.send($1,"_class_",["dropdown"]);
- $2=smalltalk.send($1,"_with_",[(function(){
- $3=smalltalk.send(html,"_a",[]);
- smalltalk.send($3,"_class_",["dropdown-toggle"]);
- smalltalk.send($3,"_at_put_",["data-toggle","dropdown"]);
- $4=smalltalk.send($3,"_with_",[(function(){
- smalltalk.send(html,"_with_",["Open..."]);
- return smalltalk.send(smalltalk.send(html,"_tag_",["b"]),"_class_",["caret"]);
- })]);
- $4;
- $5=smalltalk.send(html,"_ul",[]);
- smalltalk.send($5,"_class_",["dropdown-menu"]);
- $6=smalltalk.send($5,"_with_",[(function(){
- return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.HLWidget || HLWidget),"_withAllSubclasses",[]),"_select_",[(function(each){
- return smalltalk.send(each,"_canBeOpenAsTab",[]);
- })]),"_sorted_",[(function(a,b){
- return smalltalk.send(smalltalk.send(a,"_tabPriority",[]),"__lt",[smalltalk.send(b,"_tabPriority",[])]);
- })]),"_do_",[(function(each){
- return smalltalk.send(smalltalk.send(html,"_li",[]),"_with_",[(function(){
- $7=smalltalk.send(html,"_a",[]);
- smalltalk.send($7,"_with_",[smalltalk.send(each,"_tabLabel",[])]);
- $8=smalltalk.send($7,"_onClick_",[(function(){
- return smalltalk.send(each,"_openAsTab",[]);
- })]);
- return $8;
- })]);
- })]);
- })]);
- return $6;
- })]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- var $1,$3,$4,$2;
- $1=smalltalk.send(html,"_div",[]);
- smalltalk.send($1,"_class_",["navbar navbar-fixed-top"]);
- $2=smalltalk.send($1,"_with_",[(function(){
- $3=smalltalk.send(html,"_div",[]);
- smalltalk.send($3,"_class_",["navbar-inner"]);
- $4=smalltalk.send($3,"_with_",[(function(){
- return smalltalk.send(self,"_renderTabsOn_",[html]);
- })]);
- return $4;
- })]);
- smalltalk.send(smalltalk.send(html,"_div",[]),"_id_",["container"]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_renderTabsOn_",
- smalltalk.method({
- selector: "renderTabsOn:",
- fn: function (html){
- var self=this;
- var $1,$3,$5,$4,$7,$8,$6,$2;
- $1=smalltalk.send(html,"_ul",[]);
- smalltalk.send($1,"_class_",["nav"]);
- $2=smalltalk.send($1,"_with_",[(function(){
- smalltalk.send(smalltalk.send(self,"_tabs",[]),"_do_",[(function(each){
- $3=smalltalk.send(html,"_li",[]);
- $5=smalltalk.send(each,"_isActive",[]);
- if(smalltalk.assert($5)){
- $4="active";
- } else {
- $4="inactive";
- };
- smalltalk.send($3,"_class_",[$4]);
- $6=smalltalk.send($3,"_with_",[(function(){
- $7=smalltalk.send(html,"_a",[]);
- smalltalk.send($7,"_with_",[(function(){
- smalltalk.send(smalltalk.send(smalltalk.send(html,"_tag_",["i"]),"_class_",["icon-remove-circle"]),"_onClick_",[(function(){
- return smalltalk.send(self,"_removeTab_",[each]);
- })]);
- return smalltalk.send(html,"_with_",[smalltalk.send(each,"_label",[])]);
- })]);
- $8=smalltalk.send($7,"_onClick_",[(function(){
- return smalltalk.send(each,"_activate",[]);
- })]);
- return $8;
- })]);
- return $6;
- })]);
- return smalltalk.send(self,"_renderAddOn_",[html]);
- })]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_show_",
- smalltalk.method({
- selector: "show:",
- fn: function (aTab){
- var self=this;
- smalltalk.send(smalltalk.send(window,"_jQuery_",["#container"]),"_empty",[]);
- smalltalk.send(smalltalk.send(aTab,"_widget",[]),"_appendToJQuery_",[smalltalk.send("#container","_asJQuery",[])]);
- return self}
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_tabs",
- smalltalk.method({
- selector: "tabs",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@tabs"]) == nil || $receiver == undefined){
- self["@tabs"]=smalltalk.send((smalltalk.OrderedCollection || OrderedCollection),"_new",[]);
- $1=self["@tabs"];
- } else {
- $1=self["@tabs"];
- };
- return $1;
- }
- }),
- smalltalk.HLManager);
- smalltalk.HLManager.klass.iVarNames = ['current'];
- smalltalk.addMethod(
- "_current",
- smalltalk.method({
- selector: "current",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@current"]) == nil || $receiver == undefined){
- self["@current"]=smalltalk.send(smalltalk.send(self,"_basicNew",[]),"_initialize",[]);
- $1=self["@current"];
- } else {
- $1=self["@current"];
- };
- return $1;
- }
- }),
- smalltalk.HLManager.klass);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_current",[]),"_appendToJQuery_",[smalltalk.send("body","_asJQuery",[])]);
- return self}
- }),
- smalltalk.HLManager.klass);
- smalltalk.addMethod(
- "_new",
- smalltalk.method({
- selector: "new",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_shouldNotImplement",[]);
- return self}
- }),
- smalltalk.HLManager.klass);
- smalltalk.addClass('HLSUnit', smalltalk.HLWidget, [], 'Helios-Core');
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- fn: function (){
- var self=this;
- return true;
- }
- }),
- smalltalk.HLSUnit.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- fn: function (){
- var self=this;
- return "SUnit";
- }
- }),
- smalltalk.HLSUnit.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- fn: function (){
- var self=this;
- return (1000);
- }
- }),
- smalltalk.HLSUnit.klass);
- smalltalk.addClass('HLTranscript', smalltalk.HLWidget, [], 'Helios-Core');
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- fn: function (){
- var self=this;
- return true;
- }
- }),
- smalltalk.HLTranscript.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- fn: function (){
- var self=this;
- return "Transcript";
- }
- }),
- smalltalk.HLTranscript.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- fn: function (){
- var self=this;
- return (600);
- }
- }),
- smalltalk.HLTranscript.klass);
|