12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070 |
- smalltalk.addPackage('Helios-Core', {});
- 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, ['wrapper'], '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;
- var $1;
- $1 = smalltalk.send(self, "_wrapper", []);
- if (($receiver = $1) == nil || $receiver == undefined) {
- return self;
- } else {
- }
- smalltalk.send(smalltalk.send(smalltalk.send(self, "_wrapper", []), "_asJQuery", []), "_empty", []);
- smalltalk.send(function (html) {return smalltalk.send(self, "_renderContentOn_", [html]);}, "_appendToJQuery_", [smalltalk.send(smalltalk.send(self, "_wrapper", []), "_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["@wrapper"]=smalltalk.send(html,"_div",[]);
- smalltalk.send((function(renderer){
- return smalltalk.send(self,"_renderContentOn_",[renderer]);
- }),"_appendToJQuery_",[smalltalk.send(self["@wrapper"],"_asJQuery",[])]);
- return self}
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_wrapper",
- smalltalk.method({
- selector: "wrapper",
- fn: function () {
- var self = this;
- return self['@wrapper'];
- }
- }),
- 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(smalltalk.send(self, "_wrapper", []), "_notNil", []), "_and_", [function () {return smalltalk.send(smalltalk.send(smalltalk.send(self, "_wrapper", []), "_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(smalltalk.send(self, "_wrapper", []), "_asJQuery", []), "_removeClass_", [smalltalk.send(self, "_focusClass", [])]);}]);
- $2 = smalltalk.send($1, "_onFocus_", [function () {return smalltalk.send(smalltalk.send(smalltalk.send(self, "_wrapper", []), "_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['@wrapper'] = $2;
- return self;
- }
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addClass('HLListWidget', smalltalk.HLFocusableWidget, ['items', 'selectedItem'], 'Helios-Core');
- smalltalk.addMethod(
- "_activateFirstListItem",
- smalltalk.method({
- selector: "activateFirstListItem",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_activateListItem_",[smalltalk.send(window,"_jQuery_",[smalltalk.send(smalltalk.send(smalltalk.send(self["@wrapper"],"_asJQuery",[]),"_find_",["li"]),"_get_",[(0)])])]);
- return self}
- }),
- smalltalk.HLListWidget);
- 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 {
- }
- 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(
- "_defaultItems",
- smalltalk.method({
- selector: "defaultItems",
- fn: function () {
- var self = this;
- return [];
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_focus",
- smalltalk.method({
- selector: "focus",
- fn: function (){
- var self=this;
- var $1,$2;
- smalltalk.send(self,"_focus",[],smalltalk.HLFocusableWidget);
- $1=smalltalk.send(smalltalk.send(self,"_items",[]),"_isEmpty",[]);
- if(! smalltalk.assert($1)){
- $2=smalltalk.send(self,"_selectedItem",[]);
- if(($receiver = $2) == nil || $receiver == undefined){
- smalltalk.send(self,"_activateFirstListItem",[]);
- } else {
- $2;
- };
- };
- return self}
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_iconForItem_",
- smalltalk.method({
- selector: "iconForItem:",
- fn: function (anObject) {
- var self = this;
- return "";
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_items",
- smalltalk.method({
- selector: "items",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@items']) == nil || $receiver == undefined) {
- self['@items'] = smalltalk.send(self, "_defaultItems", []);
- $1 = self['@items'];
- } 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"]);$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) {
- } 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) {
- } 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', 'environment'], '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(
- "_defaultEnvironment",
- smalltalk.method({
- selector: "defaultEnvironment",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.HLLocalEnvironment || HLLocalEnvironment, "_new", []);
- return $1;
- }
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_environment",
- smalltalk.method({
- selector: "environment",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@environment']) == nil || $receiver == undefined) {
- self['@environment'] = smalltalk.send(self, "_defaultEnvironment", []);
- $1 = self['@environment'];
- } else {
- $1 = self['@environment'];
- }
- return $1;
- }
- }),
- smalltalk.HLManager);
- smalltalk.addMethod(
- "_environment_",
- smalltalk.method({
- selector: "environment:",
- fn: function (anEnvironment) {
- var self = this;
- self['@environment'] = anEnvironment;
- 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);
|