123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188 |
- smalltalk.addPackage('Helios-Widgets', {});
- smalltalk.addClass('HLTab', smalltalk.Object, ['widget', 'label'], 'Helios-Widgets');
- 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.HLTabManager || HLTabManager, "_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-Widgets');
- smalltalk.addMethod(
- "_announce_",
- smalltalk.method({
- selector: "announce:",
- fn: function (anObject) {
- var self = this;
- smalltalk.send(smalltalk.send(self, "_announcer", []), "_announce_", [anObject]);
- return self;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_announcer",
- smalltalk.method({
- selector: "announcer",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(self, "_manager", []), "_announcer", []);
- return $1;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function () {
- var self = this;
- smalltalk.send(self, "_initialize", [], smalltalk.Widget);
- smalltalk.send(self, "_subscribe", []);
- return self;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_manager",
- smalltalk.method({
- selector: "manager",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.HLTabManager || HLTabManager, "_current", []);
- return $1;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_on_do_",
- smalltalk.method({
- selector: "on:do:",
- fn: function (anAnnouncement, aBlock) {
- var self = this;
- smalltalk.send(smalltalk.send(self, "_announcer", []), "_on_do_", [anAnnouncement, aBlock]);
- return self;
- }
- }),
- 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(
- "_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;
- self['@rootDiv'] = smalltalk.send(smalltalk.send(html, "_div", []), "_with_", [function () {return smalltalk.send(self, "_renderContentOn_", [html]);}]);
- return self;
- }
- }),
- smalltalk.HLWidget);
- smalltalk.addMethod(
- "_subscribe",
- smalltalk.method({
- selector: "subscribe",
- fn: function () {
- 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.HLTabManager || HLTabManager, "_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('HLBrowser', smalltalk.HLWidget, ['environment', 'selectedPackage', 'selectedClass', 'packagesListWidget', 'classesListWidget'], 'Helios-Widgets');
- smalltalk.addMethod(
- "_classesListWidget",
- smalltalk.method({
- selector: "classesListWidget",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@classesListWidget']) == nil ||
- $receiver == undefined) {
- self['@classesListWidget'] = smalltalk.send(smalltalk.HLClassesListWidget || HLClassesListWidget, "_on_", [self]);
- $1 = self['@classesListWidget'];
- } else {
- $1 = self['@classesListWidget'];
- }
- return $1;
- }
- }),
- smalltalk.HLBrowser);
- 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(smalltalk.Smalltalk || Smalltalk, "_current", []);
- $1 = self['@environment'];
- } else {
- $1 = self['@environment'];
- }
- return $1;
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_environment_",
- smalltalk.method({
- selector: "environment:",
- fn: function (anEnvironment) {
- var self = this;
- self['@environment'] = anEnvironment;
- return self;
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_packagesListWidget",
- smalltalk.method({
- selector: "packagesListWidget",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@packagesListWidget']) == nil ||
- $receiver == undefined) {
- self['@packagesListWidget'] = smalltalk.send(smalltalk.HLPackagesListWidget || HLPackagesListWidget, "_on_", [self]);
- $1 = self['@packagesListWidget'];
- } else {
- $1 = self['@packagesListWidget'];
- }
- return $1;
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- smalltalk.send(html,"_with_",[smalltalk.send((smalltalk.HLContainer || HLContainer),"_with_",[smalltalk.send((smalltalk.HLHorizontalSplitter || HLHorizontalSplitter),"_with_with_",[smalltalk.send((smalltalk.HLVerticalSplitter || HLVerticalSplitter),"_with_with_",[smalltalk.send((smalltalk.HLVerticalSplitter || HLVerticalSplitter),"_with_with_",[smalltalk.send(self,"_packagesListWidget",[]),smalltalk.send(self,"_classesListWidget",[])]),smalltalk.send((smalltalk.HLVerticalSplitter || HLVerticalSplitter),"_with_with_",["Protocols","Methods"])]),"Source Code"])])]);
- return self}
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_renderTopPanesOn_",
- smalltalk.method({
- selector: "renderTopPanesOn:",
- fn: function (html) {
- var self = this;
- var $1, $2, $3, $4, $5, $6, $7, $8;
- $1 = smalltalk.send(html, "_div", []);
- smalltalk.send($1, "_class_", ["pane"]);
- $2 = smalltalk.send($1, "_with_", [smalltalk.send(self, "_packagesListWidget", [])]);
- $3 = smalltalk.send(html, "_div", []);
- smalltalk.send($3, "_class_", ["pane"]);
- $4 = smalltalk.send($3, "_with_", [smalltalk.send(self, "_classesListWidget", [])]);
- $5 = smalltalk.send(html, "_div", []);
- smalltalk.send($5, "_class_", ["pane"]);
- $6 = smalltalk.send($5, "_with_", ["hello"]);
- $7 = smalltalk.send(html, "_div", []);
- smalltalk.send($7, "_class_", ["pane"]);
- $8 = smalltalk.send($7, "_with_", ["world"]);
- return self;
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_selectPackage_",
- smalltalk.method({
- selector: "selectPackage:",
- fn: function (aPackage) {
- var self = this;
- self['@selectedPackage'] = aPackage;
- self['@selectedClass'] = nil;
- smalltalk.send(smalltalk.send(self, "_classesListWidget", []), "_package_", [aPackage]);
- return self;
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.addMethod(
- "_selectedPackage",
- smalltalk.method({
- selector: "selectedPackage",
- fn: function () {
- var self = this;
- return self['@selectedPackage'];
- }
- }),
- smalltalk.HLBrowser);
- smalltalk.HLBrowser.klass.iVarNames = ['nextId'];
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- fn: function () {
- var self = this;
- return true;
- }
- }),
- smalltalk.HLBrowser.klass);
- smalltalk.addMethod(
- "_nextId",
- smalltalk.method({
- selector: "nextId",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@nextId']) == nil || $receiver == undefined) {
- self['@nextId'] = 0;
- self['@nextId'];
- } else {
- self['@nextId'];
- }
- $1 = smalltalk.send("browser_", "__comma", [smalltalk.send(smalltalk.send(self['@nextId'], "__plus", [1]), "_asString", [])]);
- return $1;
- }
- }),
- smalltalk.HLBrowser.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- fn: function () {
- var self = this;
- return "Browser";
- }
- }),
- smalltalk.HLBrowser.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- fn: function () {
- var self = this;
- return 0;
- }
- }),
- smalltalk.HLBrowser.klass);
- smalltalk.addClass('HLDebugger', smalltalk.HLWidget, [], 'Helios-Widgets');
- smalltalk.addClass('HLFocusableWidget', smalltalk.HLWidget, ['hiddenInput'], 'Helios-Widgets');
- smalltalk.addMethod(
- "_blur",
- smalltalk.method({
- selector: "blur",
- fn: function () {
- var self = this;
- smalltalk.send(smalltalk.send(self['@rootDiv'], "_asJQuery", []), "_removeClass_", [smalltalk.send(self, "_focusClass", [])]);
- return self;
- }
- }),
- smalltalk.HLFocusableWidget);
- smalltalk.addMethod(
- "_focus",
- smalltalk.method({
- selector: "focus",
- fn: function () {
- var self = this;
- smalltalk.send(smalltalk.send(self['@rootDiv'], "_asJQuery", []), "_addClass_", [smalltalk.send(self, "_focusClass", [])]);
- 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(self, "_blur", []);}]);
- $2 = smalltalk.send($1, "_onFocus_", [function () {return smalltalk.send(self, "_focus", []);}]);
- 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, "_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-Widgets');
- smalltalk.addMethod(
- "_activateListItem_",
- smalltalk.method({
- selector: "activateListItem:",
- fn: function (aListItem) {
- var self = this;
- smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aListItem, "_asJQuery", []), "_parent", []), "_children", []), "_removeClass_", ["active"]);
- smalltalk.send(smalltalk.send(aListItem, "_asJQuery", []), "_addClass_", ["active"]);
- 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(
- "_items",
- smalltalk.method({
- selector: "items",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_subclassResponsibility", []);
- return $1;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html) {
- var self = this;
- var $1, $2;
- $1 = smalltalk.send(html, "_ul", []);
- smalltalk.send($1, "_class_", ["nav nav-pills nav-stacked"]);
- $2 = smalltalk.send($1, "_with_", [function () {return smalltalk.send(smalltalk.send(self, "_items", []), "_do_", [function (each) {return smalltalk.send(self, "_renderItem_on_", [each, html]);}]);}]);
- 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])]);
- $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(anObject, "_heliosListIcon", [])]);return smalltalk.send(self, "_renderItemLabel_on_", [anObject, html]);}]);$3 = smalltalk.send($2, "_onClick_", [function () {smalltalk.send(self, "_activateListItem_", [li]);return smalltalk.send(self, "_selectItem_", [anObject]);}]);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(
- "_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;
- var $1;
- if (($receiver = self['@selectedItem']) == nil ||
- $receiver == undefined) {
- $1 = smalltalk.send(smalltalk.send(self, "_items", []), "_ifNotEmpty_", [function () {return smalltalk.send(smalltalk.send(self, "_items", []), "_first", []);}]);
- } else {
- $1 = self['@selectedItem'];
- }
- return $1;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addMethod(
- "_selectedItem_",
- smalltalk.method({
- selector: "selectedItem:",
- fn: function (anObject) {
- var self = this;
- self['@selectedItem'] = anObject;
- return self;
- }
- }),
- smalltalk.HLListWidget);
- smalltalk.addClass('HLBrowserListWidget', smalltalk.HLListWidget, ['browser'], 'Helios-Widgets');
- smalltalk.addMethod(
- "_browser",
- smalltalk.method({
- selector: "browser",
- fn: function () {
- var self = this;
- return self['@browser'];
- }
- }),
- smalltalk.HLBrowserListWidget);
- smalltalk.addMethod(
- "_browser_",
- smalltalk.method({
- selector: "browser:",
- fn: function (aBrowser) {
- var self = this;
- self['@browser'] = aBrowser;
- return self;
- }
- }),
- smalltalk.HLBrowserListWidget);
- smalltalk.addMethod(
- "_on_",
- smalltalk.method({
- selector: "on:",
- fn: function (aBrowser) {
- var self = this;
- var $2, $3, $1;
- $2 = smalltalk.send(self, "_new", []);
- smalltalk.send($2, "_browser_", [aBrowser]);
- $3 = smalltalk.send($2, "_yourself", []);
- $1 = $3;
- return $1;
- }
- }),
- smalltalk.HLBrowserListWidget.klass);
- smalltalk.addClass('HLClassesListWidget', smalltalk.HLBrowserListWidget, ['package'], 'Helios-Widgets');
- smalltalk.addMethod(
- "_items",
- smalltalk.method({
- selector: "items",
- fn: function () {
- var self = this;
- var $2, $1;
- $2 = smalltalk.send(self, "_package", []);
- if (($receiver = $2) == nil || $receiver == undefined) {
- $1 = [];
- } else {
- $1 = smalltalk.send(smalltalk.send(self, "_package", []), "_classes", []);
- }
- return $1;
- }
- }),
- smalltalk.HLClassesListWidget);
- smalltalk.addMethod(
- "_package",
- smalltalk.method({
- selector: "package",
- fn: function () {
- var self = this;
- return self['@package'];
- }
- }),
- smalltalk.HLClassesListWidget);
- smalltalk.addMethod(
- "_package_",
- smalltalk.method({
- selector: "package:",
- fn: function (aPackage) {
- var self = this;
- self['@package'] = aPackage;
- smalltalk.send(self, "_refresh", []);
- return self;
- }
- }),
- smalltalk.HLClassesListWidget);
- smalltalk.addClass('HLPackagesListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Widgets');
- smalltalk.addMethod(
- "_browser",
- smalltalk.method({
- selector: "browser",
- fn: function () {
- var self = this;
- return self['@browser'];
- }
- }),
- smalltalk.HLPackagesListWidget);
- smalltalk.addMethod(
- "_browser_",
- smalltalk.method({
- selector: "browser:",
- fn: function (aBrowser) {
- var self = this;
- self['@browser'] = aBrowser;
- return self;
- }
- }),
- smalltalk.HLPackagesListWidget);
- smalltalk.addMethod(
- "_environment",
- smalltalk.method({
- selector: "environment",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(self, "_browser", []), "_environment", []);
- return $1;
- }
- }),
- smalltalk.HLPackagesListWidget);
- smalltalk.addMethod(
- "_items",
- smalltalk.method({
- selector: "items",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(self, "_environment", []), "_packages", []);
- return $1;
- }
- }),
- smalltalk.HLPackagesListWidget);
- smalltalk.addMethod(
- "_selectItem_",
- smalltalk.method({
- selector: "selectItem:",
- fn: function (aPackage) {
- var self = this;
- smalltalk.send(self, "_selectItem_", [aPackage], smalltalk.HLBrowserListWidget);
- smalltalk.send(smalltalk.send(self, "_browser", []), "_selectPackage_", [aPackage]);
- return self;
- }
- }),
- smalltalk.HLPackagesListWidget);
- smalltalk.addClass('HLInspector', smalltalk.HLWidget, [], 'Helios-Widgets');
- smalltalk.addClass('HLSUnit', smalltalk.HLWidget, [], 'Helios-Widgets');
- 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('HLTabManager', smalltalk.HLWidget, ['tabs', 'activeTab', 'announcer'], 'Helios-Widgets');
- smalltalk.addMethod(
- "_activate_",
- smalltalk.method({
- selector: "activate:",
- fn: function (aTab) {
- var self = this;
- var $1;
- self['@activeTab'] = aTab;
- smalltalk.send(self, "_refresh", []);
- $1 = smalltalk.send(self, "_show_", [aTab]);
- return self;
- }
- }),
- smalltalk.HLTabManager);
- smalltalk.addMethod(
- "_activeTab",
- smalltalk.method({
- selector: "activeTab",
- fn: function () {
- var self = this;
- return self['@activeTab'];
- }
- }),
- smalltalk.HLTabManager);
- 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.HLTabManager);
- smalltalk.addMethod(
- "_announcer",
- smalltalk.method({
- selector: "announcer",
- fn: function () {
- var self = this;
- var $1;
- if (($receiver = self['@announcer']) == nil || $receiver == undefined) {
- self['@announcer'] = smalltalk.send(smalltalk.Announcer || Announcer, "_new", []);
- $1 = self['@announcer'];
- } else {
- $1 = self['@announcer'];
- }
- return $1;
- }
- }),
- smalltalk.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- 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.HLTabManager);
- smalltalk.HLTabManager.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.HLTabManager.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.HLTabManager.klass);
- smalltalk.addMethod(
- "_new",
- smalltalk.method({
- selector: "new",
- fn: function () {
- var self = this;
- smalltalk.send(self, "_shouldNotImplement", []);
- return self;
- }
- }),
- smalltalk.HLTabManager.klass);
- smalltalk.addClass('HLTranscript', smalltalk.HLWidget, [], 'Helios-Widgets');
- 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);
- smalltalk.addClass('HLWorkspace', smalltalk.HLWidget, [], 'Helios-Widgets');
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- fn: function () {
- var self = this;
- return true;
- }
- }),
- smalltalk.HLWorkspace.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- fn: function () {
- var self = this;
- return "Workspace";
- }
- }),
- smalltalk.HLWorkspace.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- fn: function () {
- var self = this;
- return 10;
- }
- }),
- smalltalk.HLWorkspace.klass);
- smalltalk.addMethod(
- "_heliosListIcon",
- smalltalk.method({
- selector: "heliosListIcon",
- fn: function () {
- var self = this;
- return "";
- }
- }),
- smalltalk.Object);
|