|
@@ -1,19 +1,20 @@
|
|
-smalltalk.addPackage('Helios-Layout', {});
|
|
|
|
|
|
+smalltalk.addPackage('Helios-Layout');
|
|
smalltalk.addClass('HLContainer', smalltalk.Widget, ['splitter'], 'Helios-Layout');
|
|
smalltalk.addClass('HLContainer', smalltalk.Widget, ['splitter'], 'Helios-Layout');
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
"_renderOn_",
|
|
"_renderOn_",
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "renderOn:",
|
|
selector: "renderOn:",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function (html) {
|
|
|
|
- var self = this;
|
|
|
|
- var $1, $2;
|
|
|
|
- $1 = smalltalk.send(html, "_div", []);
|
|
|
|
- smalltalk.send($1, "_id_", ["container"]);
|
|
|
|
- $2 = smalltalk.send($1, "_with_", [smalltalk.send(self, "_splitter", [])]);
|
|
|
|
- smalltalk.send(smalltalk.send(window, "_jQuery_", [window]), "_bind_do_", ["resize", function () {return smalltalk.send(smalltalk.send(self, "_splitter", []), "_resize", []);}]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (html){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1,$2;
|
|
|
|
+$1=_st(html)._div();
|
|
|
|
+_st($1)._id_("container");
|
|
|
|
+$2=_st($1)._with_(_st(self)._splitter());
|
|
|
|
+_st(_st(window)._jQuery_(window))._bind_do_("resize",(function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
return _st(_st(self)._splitter())._resize();
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html}, smalltalk.HLContainer)})},
|
|
args: ["html"],
|
|
args: ["html"],
|
|
source: "renderOn: html\x0a\x09html div \x0a \x09id: 'container'; \x0a with: self splitter.\x0a \x0a (window jQuery: window) bind: 'resize' do: [ self splitter resize ]",
|
|
source: "renderOn: html\x0a\x09html div \x0a \x09id: 'container'; \x0a with: self splitter.\x0a \x0a (window jQuery: window) bind: 'resize' do: [ self splitter resize ]",
|
|
messageSends: ["id:", "div", "with:", "splitter", "bind:do:", "resize", "jQuery:"],
|
|
messageSends: ["id:", "div", "with:", "splitter", "bind:do:", "resize", "jQuery:"],
|
|
@@ -26,10 +27,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "splitter",
|
|
selector: "splitter",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return self['@splitter'];
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=self["@splitter"];
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"splitter",{}, smalltalk.HLContainer)})},
|
|
args: [],
|
|
args: [],
|
|
source: "splitter\x0a\x09^ splitter",
|
|
source: "splitter\x0a\x09^ splitter",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -42,11 +45,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "splitter:",
|
|
selector: "splitter:",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function (aSplitter) {
|
|
|
|
- var self = this;
|
|
|
|
- self['@splitter'] = aSplitter;
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aSplitter){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
self["@splitter"]=aSplitter;
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"splitter:",{aSplitter:aSplitter}, smalltalk.HLContainer)})},
|
|
args: ["aSplitter"],
|
|
args: ["aSplitter"],
|
|
source: "splitter: aSplitter\x0a\x09splitter := aSplitter",
|
|
source: "splitter: aSplitter\x0a\x09splitter := aSplitter",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -60,15 +62,15 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "with:",
|
|
selector: "with:",
|
|
category: 'instance creation',
|
|
category: 'instance creation',
|
|
-fn: function (aSplitter) {
|
|
|
|
- var self = this;
|
|
|
|
- var $2, $3, $1;
|
|
|
|
- $2 = smalltalk.send(self, "_new", []);
|
|
|
|
- smalltalk.send($2, "_splitter_", [aSplitter]);
|
|
|
|
- $3 = smalltalk.send($2, "_yourself", []);
|
|
|
|
- $1 = $3;
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aSplitter){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
|
|
|
|
+$2=_st(self)._new();
|
|
|
|
+_st($2)._splitter_(aSplitter);
|
|
|
|
+$3=_st($2)._yourself();
|
|
|
|
+$1=$3;
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"with:",{aSplitter:aSplitter}, smalltalk.HLContainer.klass)})},
|
|
args: ["aSplitter"],
|
|
args: ["aSplitter"],
|
|
source: "with: aSplitter\x0a\x09^ self new \x0a \x09splitter: aSplitter; \x0a yourself",
|
|
source: "with: aSplitter\x0a\x09^ self new \x0a \x09splitter: aSplitter; \x0a yourself",
|
|
messageSends: ["splitter:", "new", "yourself"],
|
|
messageSends: ["splitter:", "new", "yourself"],
|
|
@@ -83,10 +85,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "cssClass",
|
|
selector: "cssClass",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return "splitter";
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
return "splitter";
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"cssClass",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "cssClass\x0a\x09^ 'splitter'",
|
|
source: "cssClass\x0a\x09^ 'splitter'",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -99,10 +101,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "firstWidget",
|
|
selector: "firstWidget",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return self['@firstWidget'];
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=self["@firstWidget"];
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"firstWidget",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "firstWidget\x0a\x09^ firstWidget",
|
|
source: "firstWidget\x0a\x09^ firstWidget",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -115,11 +119,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "firstWidget:",
|
|
selector: "firstWidget:",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function (aWidget) {
|
|
|
|
- var self = this;
|
|
|
|
- self['@firstWidget'] = aWidget;
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aWidget){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
self["@firstWidget"]=aWidget;
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"firstWidget:",{aWidget:aWidget}, smalltalk.HLSplitter)})},
|
|
args: ["aWidget"],
|
|
args: ["aWidget"],
|
|
source: "firstWidget: aWidget\x0a\x09firstWidget := aWidget",
|
|
source: "firstWidget: aWidget\x0a\x09firstWidget := aWidget",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -132,10 +135,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "isHeliosSplitter",
|
|
selector: "isHeliosSplitter",
|
|
category: 'testing',
|
|
category: 'testing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return true;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
return true;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"isHeliosSplitter",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "isHeliosSplitter\x0a\x09^ true",
|
|
source: "isHeliosSplitter\x0a\x09^ true",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -148,10 +151,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "panesCssClass",
|
|
selector: "panesCssClass",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return "panes";
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
return "panes";
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"panesCssClass",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "panesCssClass\x0a\x09^ 'panes'",
|
|
source: "panesCssClass\x0a\x09^ 'panes'",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -164,16 +167,29 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "renderOn:",
|
|
selector: "renderOn:",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function (html) {
|
|
|
|
- var self = this;
|
|
|
|
- var $1, $3, $4, $5, $6, $2, $7;
|
|
|
|
- $1 = smalltalk.send(html, "_div", []);
|
|
|
|
- smalltalk.send($1, "_class_", [smalltalk.send(self, "_panesCssClass", [])]);
|
|
|
|
- $2 = smalltalk.send($1, "_with_", [function () {$3 = smalltalk.send(html, "_div", []);smalltalk.send($3, "_class_", ["pane"]);$4 = smalltalk.send($3, "_with_", [smalltalk.send(self, "_firstWidget", [])]);self['@firstPane'] = $4;self['@firstPane'];self['@splitter'] = smalltalk.send(smalltalk.send(html, "_div", []), "_class_", [smalltalk.send(self, "_cssClass", [])]);self['@splitter'];$5 = smalltalk.send(html, "_div", []);smalltalk.send($5, "_class_", ["pane"]);$6 = smalltalk.send($5, "_with_", [smalltalk.send(self, "_secondWidget", [])]);self['@secondPane'] = $6;return self['@secondPane'];}]);
|
|
|
|
- smalltalk.send(self, "_setupSplitter", []);
|
|
|
|
- $7 = smalltalk.send(self, "_resize", []);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (html){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1,$3,$4,$5,$6,$2,$7,$8;
|
|
|
|
+$1=_st(html)._div();
|
|
|
|
+_st($1)._class_(_st(self)._panesCssClass());
|
|
|
|
+$2=_st($1)._with_((function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
$3=_st(html)._div();
|
|
|
|
+_st($3)._class_("pane");
|
|
|
|
+$4=_st($3)._with_(_st(self)._firstWidget());
|
|
|
|
+self["@firstPane"]=$4;
|
|
|
|
+self["@firstPane"];
|
|
|
|
+self["@splitter"]=_st(_st(html)._div())._class_(_st(self)._cssClass());
|
|
|
|
+self["@splitter"];
|
|
|
|
+$5=_st(html)._div();
|
|
|
|
+_st($5)._class_("pane");
|
|
|
|
+$6=_st($5)._with_(_st(self)._secondWidget());
|
|
|
|
+self["@secondPane"]=$6;
|
|
|
|
+return self["@secondPane"];
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+$7=self;
|
|
|
|
+_st($7)._setupSplitter();
|
|
|
|
+$8=_st($7)._resize();
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html}, smalltalk.HLSplitter)})},
|
|
args: ["html"],
|
|
args: ["html"],
|
|
source: "renderOn: html\x0a\x09html div class: self panesCssClass; with: [\x0a\x09\x09firstPane := html div class: 'pane'; with: self firstWidget.\x0a \x09splitter := html div class: self cssClass.\x0a \x09secondPane := html div class: 'pane'; with: self secondWidget ].\x0a \x0a\x09self \x0a \x09setupSplitter;\x0a resize",
|
|
source: "renderOn: html\x0a\x09html div class: self panesCssClass; with: [\x0a\x09\x09firstPane := html div class: 'pane'; with: self firstWidget.\x0a \x09splitter := html div class: self cssClass.\x0a \x09secondPane := html div class: 'pane'; with: self secondWidget ].\x0a \x0a\x09self \x0a \x09setupSplitter;\x0a resize",
|
|
messageSends: ["class:", "panesCssClass", "div", "with:", "firstWidget", "cssClass", "secondWidget", "setupSplitter", "resize"],
|
|
messageSends: ["class:", "panesCssClass", "div", "with:", "firstWidget", "cssClass", "secondWidget", "setupSplitter", "resize"],
|
|
@@ -186,19 +202,18 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "resize",
|
|
selector: "resize",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- var $1, $2;
|
|
|
|
- $1 = smalltalk.send(smalltalk.send(self, "_firstWidget", []), "_isHeliosSplitter", []);
|
|
|
|
- if (smalltalk.assert($1)) {
|
|
|
|
- smalltalk.send(smalltalk.send(self, "_firstWidget", []), "_resize", []);
|
|
|
|
- }
|
|
|
|
- $2 = smalltalk.send(smalltalk.send(self, "_secondWidget", []), "_isHeliosSplitter", []);
|
|
|
|
- if (smalltalk.assert($2)) {
|
|
|
|
- smalltalk.send(smalltalk.send(self, "_secondWidget", []), "_resize", []);
|
|
|
|
- }
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1,$2;
|
|
|
|
+$1=_st(_st(self)._firstWidget())._isHeliosSplitter();
|
|
|
|
+if(smalltalk.assert($1)){
|
|
|
|
+_st(_st(self)._firstWidget())._resize();
|
|
|
|
+};
|
|
|
|
+$2=_st(_st(self)._secondWidget())._isHeliosSplitter();
|
|
|
|
+if(smalltalk.assert($2)){
|
|
|
|
+_st(_st(self)._secondWidget())._resize();
|
|
|
|
+};
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"resize",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "resize\x0a\x09self firstWidget isHeliosSplitter ifTrue: [ self firstWidget resize ].\x0a self secondWidget isHeliosSplitter ifTrue: [ self secondWidget resize ]",
|
|
source: "resize\x0a\x09self firstWidget isHeliosSplitter ifTrue: [ self firstWidget resize ].\x0a self secondWidget isHeliosSplitter ifTrue: [ self secondWidget resize ]",
|
|
messageSends: ["ifTrue:", "resize", "firstWidget", "isHeliosSplitter", "secondWidget"],
|
|
messageSends: ["ifTrue:", "resize", "firstWidget", "isHeliosSplitter", "secondWidget"],
|
|
@@ -211,10 +226,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "secondWidget",
|
|
selector: "secondWidget",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return self['@secondWidget'];
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=self["@secondWidget"];
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"secondWidget",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "secondWidget\x0a\x09^ secondWidget",
|
|
source: "secondWidget\x0a\x09^ secondWidget",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -227,11 +244,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "secondWidget:",
|
|
selector: "secondWidget:",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function (aWidget) {
|
|
|
|
- var self = this;
|
|
|
|
- self['@secondWidget'] = aWidget;
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aWidget){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
self["@secondWidget"]=aWidget;
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"secondWidget:",{aWidget:aWidget}, smalltalk.HLSplitter)})},
|
|
args: ["aWidget"],
|
|
args: ["aWidget"],
|
|
source: "secondWidget: aWidget\x0a\x09secondWidget := aWidget",
|
|
source: "secondWidget: aWidget\x0a\x09secondWidget := aWidget",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -244,10 +260,9 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "setupSplitter",
|
|
selector: "setupSplitter",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
return self}, function($ctx1) {$ctx1.fill(self,"setupSplitter",{}, smalltalk.HLSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "setupSplitter",
|
|
source: "setupSplitter",
|
|
messageSends: [],
|
|
messageSends: [],
|
|
@@ -261,16 +276,16 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "with:with:",
|
|
selector: "with:with:",
|
|
category: 'instance creation',
|
|
category: 'instance creation',
|
|
-fn: function (aWidget, anotherWidget) {
|
|
|
|
- var self = this;
|
|
|
|
- var $2, $3, $1;
|
|
|
|
- $2 = smalltalk.send(self, "_new", []);
|
|
|
|
- smalltalk.send($2, "_firstWidget_", [aWidget]);
|
|
|
|
- smalltalk.send($2, "_secondWidget_", [anotherWidget]);
|
|
|
|
- $3 = smalltalk.send($2, "_yourself", []);
|
|
|
|
- $1 = $3;
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aWidget,anotherWidget){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
|
|
|
|
+$2=_st(self)._new();
|
|
|
|
+_st($2)._firstWidget_(aWidget);
|
|
|
|
+_st($2)._secondWidget_(anotherWidget);
|
|
|
|
+$3=_st($2)._yourself();
|
|
|
|
+$1=$3;
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"with:with:",{aWidget:aWidget,anotherWidget:anotherWidget}, smalltalk.HLSplitter.klass)})},
|
|
args: ["aWidget", "anotherWidget"],
|
|
args: ["aWidget", "anotherWidget"],
|
|
source: "with: aWidget with: anotherWidget\x0a\x09^ self new\x0a \x09\x09firstWidget: aWidget;\x0a secondWidget: anotherWidget;\x0a yourself",
|
|
source: "with: aWidget with: anotherWidget\x0a\x09^ self new\x0a \x09\x09firstWidget: aWidget;\x0a secondWidget: anotherWidget;\x0a yourself",
|
|
messageSends: ["firstWidget:", "new", "secondWidget:", "yourself"],
|
|
messageSends: ["firstWidget:", "new", "secondWidget:", "yourself"],
|
|
@@ -285,12 +300,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "cssClass",
|
|
selector: "cssClass",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- var $1;
|
|
|
|
- $1 = smalltalk.send(smalltalk.send(self, "_cssClass", [], smalltalk.HLSplitter), "__comma", [" horizontal"]);
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=_st(smalltalk.HLSplitter.fn.prototype._cssClass.apply(_st(self), [])).__comma(" horizontal");
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"cssClass",{}, smalltalk.HLHorizontalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "cssClass\x0a\x09^ super cssClass, ' horizontal'",
|
|
source: "cssClass\x0a\x09^ super cssClass, ' horizontal'",
|
|
messageSends: [",", "cssClass"],
|
|
messageSends: [",", "cssClass"],
|
|
@@ -303,12 +318,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "panesCssClass",
|
|
selector: "panesCssClass",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- var $1;
|
|
|
|
- $1 = smalltalk.send(smalltalk.send(self, "_panesCssClass", [], smalltalk.HLSplitter), "__comma", [" horizontal"]);
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=_st(smalltalk.HLSplitter.fn.prototype._panesCssClass.apply(_st(self), [])).__comma(" horizontal");
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"panesCssClass",{}, smalltalk.HLHorizontalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "panesCssClass\x0a\x09^ super panesCssClass, ' horizontal'",
|
|
source: "panesCssClass\x0a\x09^ super panesCssClass, ' horizontal'",
|
|
messageSends: [",", "panesCssClass"],
|
|
messageSends: [",", "panesCssClass"],
|
|
@@ -321,11 +336,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "resize",
|
|
selector: "resize",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(self, "_resize_", [smalltalk.send(smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_offset", []), "_top", [])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(self)._resize_(_st(_st(_st(self["@splitter"])._asJQuery())._offset())._top());
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"resize",{}, smalltalk.HLHorizontalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "resize\x0a\x09self resize: splitter asJQuery offset top",
|
|
source: "resize\x0a\x09self resize: splitter asJQuery offset top",
|
|
messageSends: ["resize:", "top", "offset", "asJQuery"],
|
|
messageSends: ["resize:", "top", "offset", "asJQuery"],
|
|
@@ -338,17 +352,15 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "resize:",
|
|
selector: "resize:",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function (anInteger) {
|
|
|
|
- var self = this;
|
|
|
|
- var container;
|
|
|
|
- var position;
|
|
|
|
- container = smalltalk.send(smalltalk.send(self['@firstPane'], "_asJQuery", []), "_parent", []);
|
|
|
|
- position = smalltalk.send(anInteger, "__minus", [smalltalk.send(smalltalk.send(container, "_offset", []), "_top", [])]);
|
|
|
|
- smalltalk.send(smalltalk.send(self['@firstPane'], "_asJQuery", []), "_height_", [smalltalk.send(smalltalk.send(position, "_min_", [smalltalk.send(smalltalk.send(container, "_height", []), "__minus", [100])]), "_max_", [100])]);
|
|
|
|
- smalltalk.send(smalltalk.send(self['@secondPane'], "_asJQuery", []), "_height_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(container, "_height", []), "__minus", [position]), "_min_", [smalltalk.send(smalltalk.send(container, "_height", []), "__minus", [100])]), "_max_", [100]), "__minus", [6])]);
|
|
|
|
- smalltalk.send(self, "_resize", [], smalltalk.HLSplitter);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (anInteger){
|
|
|
|
+var self=this;
|
|
|
|
+var container,position;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
container=_st(_st(self["@firstPane"])._asJQuery())._parent();
|
|
|
|
+position=_st(anInteger).__minus(_st(_st(container)._offset())._top());
|
|
|
|
+_st(_st(self["@firstPane"])._asJQuery())._height_(_st(_st(position)._min_(_st(_st(container)._height()).__minus((100))))._max_((100)));
|
|
|
|
+_st(_st(self["@secondPane"])._asJQuery())._height_(_st(_st(_st(_st(_st(container)._height()).__minus(position))._min_(_st(_st(container)._height()).__minus((100))))._max_((100))).__minus((6)));
|
|
|
|
+smalltalk.HLSplitter.fn.prototype._resize.apply(_st(self), []);
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"resize:",{anInteger:anInteger,container:container,position:position}, smalltalk.HLHorizontalSplitter)})},
|
|
args: ["anInteger"],
|
|
args: ["anInteger"],
|
|
source: "resize: anInteger\x0a\x09| container position |\x0a \x0a container := firstPane asJQuery parent.\x0a position := anInteger - container offset top.\x0a \x0a\x09firstPane asJQuery height: ((position min: container height - 100) max: 100).\x0a secondPane asJQuery height: (((container height - position) min: container height - 100) max: 100) - 6.\x0a \x0a super resize",
|
|
source: "resize: anInteger\x0a\x09| container position |\x0a \x0a container := firstPane asJQuery parent.\x0a position := anInteger - container offset top.\x0a \x0a\x09firstPane asJQuery height: ((position min: container height - 100) max: 100).\x0a secondPane asJQuery height: (((container height - position) min: container height - 100) max: 100) - 6.\x0a \x0a super resize",
|
|
messageSends: ["parent", "asJQuery", "-", "top", "offset", "height:", "max:", "min:", "height", "resize"],
|
|
messageSends: ["parent", "asJQuery", "-", "top", "offset", "height:", "max:", "min:", "height", "resize"],
|
|
@@ -361,11 +373,14 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "setupSplitter",
|
|
selector: "setupSplitter",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_draggable_", [smalltalk.HashedCollection._fromPairs_([smalltalk.send("axis", "__minus_gt", ["y"]), smalltalk.send("containment", "__minus_gt", [smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_parent", [])]), smalltalk.send("helper", "__minus_gt", ["clone"]), smalltalk.send("start", "__minus_gt", [function (e, ui) {return smalltalk.send(self, "_startResizing_", [smalltalk.send(ui, "_helper", [])]);}]), smalltalk.send("drag", "__minus_gt", [function (e, ui) {return smalltalk.send(self, "_resize_", [smalltalk.send(smalltalk.send(ui, "_offset", []), "_top", [])]);}])])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(_st(self["@splitter"])._asJQuery())._draggable_(smalltalk.HashedCollection._fromPairs_([_st("axis").__minus_gt("y"),_st("containment").__minus_gt(_st(_st(self["@splitter"])._asJQuery())._parent()),_st("helper").__minus_gt("clone"),_st("start").__minus_gt((function(e,ui){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
return _st(self)._startResizing_(_st(ui)._helper());
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({e:e,ui:ui},$ctx1)})})),_st("drag").__minus_gt((function(e,ui){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
return _st(self)._resize_(_st(_st(ui)._offset())._top());
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({e:e,ui:ui},$ctx1)})}))]));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"setupSplitter",{}, smalltalk.HLHorizontalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "setupSplitter\x0a\x09splitter asJQuery draggable: #{ \x0a \x09'axis' -> 'y'. \x0a 'containment' -> splitter asJQuery parent.\x0a 'helper' -> 'clone'.\x0a 'start' -> [ :e :ui | self startResizing: ui helper ].\x0a 'drag' -> [ :e :ui | self resize: ui offset top ] }",
|
|
source: "setupSplitter\x0a\x09splitter asJQuery draggable: #{ \x0a \x09'axis' -> 'y'. \x0a 'containment' -> splitter asJQuery parent.\x0a 'helper' -> 'clone'.\x0a 'start' -> [ :e :ui | self startResizing: ui helper ].\x0a 'drag' -> [ :e :ui | self resize: ui offset top ] }",
|
|
messageSends: ["draggable:", "->", "parent", "asJQuery", "startResizing:", "helper", "resize:", "top", "offset"],
|
|
messageSends: ["draggable:", "->", "parent", "asJQuery", "startResizing:", "helper", "resize:", "top", "offset"],
|
|
@@ -378,11 +393,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "startResizing:",
|
|
selector: "startResizing:",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function (aSplitter) {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(aSplitter, "_width_", [smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_width", [])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aSplitter){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(aSplitter)._width_(_st(_st(self["@splitter"])._asJQuery())._width());
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"startResizing:",{aSplitter:aSplitter}, smalltalk.HLHorizontalSplitter)})},
|
|
args: ["aSplitter"],
|
|
args: ["aSplitter"],
|
|
source: "startResizing: aSplitter\x0a\x09aSplitter width: splitter asJQuery width",
|
|
source: "startResizing: aSplitter\x0a\x09aSplitter width: splitter asJQuery width",
|
|
messageSends: ["width:", "width", "asJQuery"],
|
|
messageSends: ["width:", "width", "asJQuery"],
|
|
@@ -398,12 +412,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "cssClass",
|
|
selector: "cssClass",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- var $1;
|
|
|
|
- $1 = smalltalk.send(smalltalk.send(self, "_cssClass", [], smalltalk.HLSplitter), "__comma", [" vertical"]);
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=_st(smalltalk.HLSplitter.fn.prototype._cssClass.apply(_st(self), [])).__comma(" vertical");
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"cssClass",{}, smalltalk.HLVerticalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "cssClass\x0a\x09^ super cssClass, ' vertical'",
|
|
source: "cssClass\x0a\x09^ super cssClass, ' vertical'",
|
|
messageSends: [",", "cssClass"],
|
|
messageSends: [",", "cssClass"],
|
|
@@ -416,12 +430,12 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "panesCssClass",
|
|
selector: "panesCssClass",
|
|
category: 'accessing',
|
|
category: 'accessing',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- var $1;
|
|
|
|
- $1 = smalltalk.send(smalltalk.send(self, "_panesCssClass", [], smalltalk.HLSplitter), "__comma", [" vertical"]);
|
|
|
|
- return $1;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
var $1;
|
|
|
|
+$1=_st(smalltalk.HLSplitter.fn.prototype._panesCssClass.apply(_st(self), [])).__comma(" vertical");
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"panesCssClass",{}, smalltalk.HLVerticalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "panesCssClass\x0a\x09^ super panesCssClass, ' vertical'",
|
|
source: "panesCssClass\x0a\x09^ super panesCssClass, ' vertical'",
|
|
messageSends: [",", "panesCssClass"],
|
|
messageSends: [",", "panesCssClass"],
|
|
@@ -434,11 +448,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "resize",
|
|
selector: "resize",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(self, "_resize_", [smalltalk.send(smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_offset", []), "_left", [])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(self)._resize_(_st(_st(_st(self["@splitter"])._asJQuery())._offset())._left());
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"resize",{}, smalltalk.HLVerticalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "resize\x0a\x09self resize: splitter asJQuery offset left",
|
|
source: "resize\x0a\x09self resize: splitter asJQuery offset left",
|
|
messageSends: ["resize:", "left", "offset", "asJQuery"],
|
|
messageSends: ["resize:", "left", "offset", "asJQuery"],
|
|
@@ -451,17 +464,15 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "resize:",
|
|
selector: "resize:",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function (anInteger) {
|
|
|
|
- var self = this;
|
|
|
|
- var container;
|
|
|
|
- var position;
|
|
|
|
- container = smalltalk.send(smalltalk.send(self['@firstPane'], "_asJQuery", []), "_parent", []);
|
|
|
|
- position = smalltalk.send(anInteger, "__minus", [smalltalk.send(smalltalk.send(container, "_offset", []), "_left", [])]);
|
|
|
|
- smalltalk.send(smalltalk.send(self['@firstPane'], "_asJQuery", []), "_width_", [smalltalk.send(smalltalk.send(position, "_min_", [smalltalk.send(smalltalk.send(container, "_width", []), "__minus", [100])]), "_max_", [100])]);
|
|
|
|
- smalltalk.send(smalltalk.send(self['@secondPane'], "_asJQuery", []), "_width_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(container, "_width", []), "__minus", [position]), "_min_", [smalltalk.send(smalltalk.send(container, "_width", []), "__minus", [100])]), "_max_", [100]), "__minus", [6])]);
|
|
|
|
- smalltalk.send(self, "_resize", [], smalltalk.HLSplitter);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (anInteger){
|
|
|
|
+var self=this;
|
|
|
|
+var container,position;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
container=_st(_st(self["@firstPane"])._asJQuery())._parent();
|
|
|
|
+position=_st(anInteger).__minus(_st(_st(container)._offset())._left());
|
|
|
|
+_st(_st(self["@firstPane"])._asJQuery())._width_(_st(_st(position)._min_(_st(_st(container)._width()).__minus((100))))._max_((100)));
|
|
|
|
+_st(_st(self["@secondPane"])._asJQuery())._width_(_st(_st(_st(_st(_st(container)._width()).__minus(position))._min_(_st(_st(container)._width()).__minus((100))))._max_((100))).__minus((6)));
|
|
|
|
+smalltalk.HLSplitter.fn.prototype._resize.apply(_st(self), []);
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"resize:",{anInteger:anInteger,container:container,position:position}, smalltalk.HLVerticalSplitter)})},
|
|
args: ["anInteger"],
|
|
args: ["anInteger"],
|
|
source: "resize: anInteger\x0a\x09| container position |\x0a \x0a container := firstPane asJQuery parent.\x0a position := anInteger - container offset left.\x0a \x0a\x09firstPane asJQuery width: ((position min: container width - 100) max: 100).\x0a secondPane asJQuery width: (((container width - position) min: container width - 100) max: 100) - 6.\x0a \x0a super resize",
|
|
source: "resize: anInteger\x0a\x09| container position |\x0a \x0a container := firstPane asJQuery parent.\x0a position := anInteger - container offset left.\x0a \x0a\x09firstPane asJQuery width: ((position min: container width - 100) max: 100).\x0a secondPane asJQuery width: (((container width - position) min: container width - 100) max: 100) - 6.\x0a \x0a super resize",
|
|
messageSends: ["parent", "asJQuery", "-", "left", "offset", "width:", "max:", "min:", "width", "resize"],
|
|
messageSends: ["parent", "asJQuery", "-", "left", "offset", "width:", "max:", "min:", "width", "resize"],
|
|
@@ -474,11 +485,14 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "setupSplitter",
|
|
selector: "setupSplitter",
|
|
category: 'rendering',
|
|
category: 'rendering',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_draggable_", [smalltalk.HashedCollection._fromPairs_([smalltalk.send("axis", "__minus_gt", ["x"]), smalltalk.send("containment", "__minus_gt", [smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_parent", [])]), smalltalk.send("helper", "__minus_gt", ["clone"]), smalltalk.send("start", "__minus_gt", [function (e, ui) {return smalltalk.send(self, "_startResizing_", [smalltalk.send(ui, "_helper", [])]);}]), smalltalk.send("drag", "__minus_gt", [function (e, ui) {return smalltalk.send(self, "_resize_", [smalltalk.send(smalltalk.send(ui, "_offset", []), "_left", [])]);}])])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(_st(self["@splitter"])._asJQuery())._draggable_(smalltalk.HashedCollection._fromPairs_([_st("axis").__minus_gt("x"),_st("containment").__minus_gt(_st(_st(self["@splitter"])._asJQuery())._parent()),_st("helper").__minus_gt("clone"),_st("start").__minus_gt((function(e,ui){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
return _st(self)._startResizing_(_st(ui)._helper());
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({e:e,ui:ui},$ctx1)})})),_st("drag").__minus_gt((function(e,ui){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
return _st(self)._resize_(_st(_st(ui)._offset())._left());
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({e:e,ui:ui},$ctx1)})}))]));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"setupSplitter",{}, smalltalk.HLVerticalSplitter)})},
|
|
args: [],
|
|
args: [],
|
|
source: "setupSplitter\x0a\x09splitter asJQuery draggable: #{ \x0a \x09'axis' -> 'x'. \x0a 'containment' -> splitter asJQuery parent.\x0a 'helper' -> 'clone'.\x0a 'start' -> [ :e :ui | self startResizing: ui helper ].\x0a 'drag' -> [ :e :ui | self resize: ui offset left ] }",
|
|
source: "setupSplitter\x0a\x09splitter asJQuery draggable: #{ \x0a \x09'axis' -> 'x'. \x0a 'containment' -> splitter asJQuery parent.\x0a 'helper' -> 'clone'.\x0a 'start' -> [ :e :ui | self startResizing: ui helper ].\x0a 'drag' -> [ :e :ui | self resize: ui offset left ] }",
|
|
messageSends: ["draggable:", "->", "parent", "asJQuery", "startResizing:", "helper", "resize:", "left", "offset"],
|
|
messageSends: ["draggable:", "->", "parent", "asJQuery", "startResizing:", "helper", "resize:", "left", "offset"],
|
|
@@ -491,11 +505,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "startResizing:",
|
|
selector: "startResizing:",
|
|
category: 'actions',
|
|
category: 'actions',
|
|
-fn: function (aSplitter) {
|
|
|
|
- var self = this;
|
|
|
|
- smalltalk.send(aSplitter, "_height_", [smalltalk.send(smalltalk.send(self['@splitter'], "_asJQuery", []), "_height", [])]);
|
|
|
|
- return self;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (aSplitter){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
_st(aSplitter)._height_(_st(_st(self["@splitter"])._asJQuery())._height());
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"startResizing:",{aSplitter:aSplitter}, smalltalk.HLVerticalSplitter)})},
|
|
args: ["aSplitter"],
|
|
args: ["aSplitter"],
|
|
source: "startResizing: aSplitter\x0a\x09aSplitter height: splitter asJQuery height",
|
|
source: "startResizing: aSplitter\x0a\x09aSplitter height: splitter asJQuery height",
|
|
messageSends: ["height:", "height", "asJQuery"],
|
|
messageSends: ["height:", "height", "asJQuery"],
|
|
@@ -510,10 +523,10 @@ smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "isHeliosSplitter",
|
|
selector: "isHeliosSplitter",
|
|
category: '*Helios-Layout',
|
|
category: '*Helios-Layout',
|
|
-fn: function () {
|
|
|
|
- var self = this;
|
|
|
|
- return false;
|
|
|
|
-},
|
|
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
return false;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"isHeliosSplitter",{}, smalltalk.Object)})},
|
|
args: [],
|
|
args: [],
|
|
source: "isHeliosSplitter\x0a\x09^ false",
|
|
source: "isHeliosSplitter\x0a\x09^ false",
|
|
messageSends: [],
|
|
messageSends: [],
|