|
@@ -579,6 +579,22 @@ referencedClasses: ["Importer"]
|
|
}),
|
|
}),
|
|
smalltalk.SourceArea);
|
|
smalltalk.SourceArea);
|
|
|
|
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+"_focus",
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "focus",
|
|
|
|
+category: 'actions',
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+smalltalk.send(smalltalk.send(self,"_editor",[]),"_focus",[]);
|
|
|
|
+return self},
|
|
|
|
+args: [],
|
|
|
|
+source: "focus\x0a self editor focus.",
|
|
|
|
+messageSends: ["focus", "editor"],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.SourceArea);
|
|
|
|
+
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
"_handleKeyDown_",
|
|
"_handleKeyDown_",
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
@@ -731,11 +747,11 @@ category: 'actions',
|
|
fn: function (){
|
|
fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
smalltalk.send(self,"_print_",[smalltalk.send(smalltalk.send(self,"_doIt",[]),"_printString",[])]);
|
|
smalltalk.send(self,"_print_",[smalltalk.send(smalltalk.send(self,"_doIt",[]),"_printString",[])]);
|
|
-smalltalk.send(smalltalk.send(self,"_editor",[]),"_focus",[]);
|
|
|
|
|
|
+smalltalk.send(self,"_focus",[]);
|
|
return self},
|
|
return self},
|
|
args: [],
|
|
args: [],
|
|
-source: "printIt\x0a self print: self doIt printString.\x0a self editor focus.",
|
|
|
|
-messageSends: ["print:", "printString", "doIt", "focus", "editor"],
|
|
|
|
|
|
+source: "printIt\x0a self print: self doIt printString.\x0a\x09self focus.",
|
|
|
|
+messageSends: ["print:", "printString", "doIt", "focus"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
smalltalk.SourceArea);
|
|
smalltalk.SourceArea);
|
|
@@ -5808,6 +5824,23 @@ referencedClasses: []
|
|
}),
|
|
}),
|
|
smalltalk.Workspace);
|
|
smalltalk.Workspace);
|
|
|
|
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+"_show",
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "show",
|
|
|
|
+category: 'actions',
|
|
|
|
+fn: function (){
|
|
|
|
+var self=this;
|
|
|
|
+smalltalk.send(self,"_show",[],smalltalk.TabWidget);
|
|
|
|
+smalltalk.send(self["@sourceArea"],"_focus",[]);
|
|
|
|
+return self},
|
|
|
|
+args: [],
|
|
|
|
+source: "show\x0a\x09super show.\x0a\x09sourceArea focus.",
|
|
|
|
+messageSends: ["show", "focus"],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.Workspace);
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|