12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463 |
- smalltalk.addPackage('Helios-KeyBindings');
- smalltalk.addClass('HLBinding', smalltalk.Object, ['key', 'label'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "applyOn:",
- fn: function (aKeyBinder){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "atKey:",
- fn: function (aKey){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return nil;
- }, function($ctx1) {$ctx1.fill(self,"atKey:",{aKey:aKey},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "displayLabel",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self)._label();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLBinding)})},
- messageSends: ["label"]}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self)._subclassResponsibility();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBinding)})},
- messageSends: ["subclassResponsibility"]}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isFinal",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return false;
- }, function($ctx1) {$ctx1.fill(self,"isFinal",{},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "key",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@key"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "key:",
- fn: function (anInteger){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@key"]=anInteger;
- return self}, function($ctx1) {$ctx1.fill(self,"key:",{anInteger:anInteger},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@label"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@label"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"label:",{aString:aString},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "release",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"release",{},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderActionFor:html:",
- fn: function (aBinder,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$4,$5,$6,$2;
- $1=_st(html)._span();
- _st($1)._class_("command");
- $2=_st($1)._with_((function(){
- return smalltalk.withContext(function($ctx2) {
- $3=_st(html)._span();
- _st($3)._class_("label");
- $4=_st($3)._with_(_st(_st(self)._shortcut())._asLowercase());
- $4;
- $5=_st(html)._a();
- _st($5)._class_("action");
- _st($5)._with_(_st(self)._displayLabel());
- $6=_st($5)._onClick_((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(aBinder)._applyBinding_(self);
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- return $6;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"renderActionFor:html:",{aBinder:aBinder,html:html},smalltalk.HLBinding)})},
- messageSends: ["class:", "span", "with:", "asLowercase", "shortcut", "a", "displayLabel", "onClick:", "applyBinding:"]}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderOn:html:",
- fn: function (aBindingHelper,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html},smalltalk.HLBinding)})},
- messageSends: []}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "shortcut",
- fn: function (){
- var self=this;
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st($String())._fromCharCode_(_st(self)._key());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"shortcut",{},smalltalk.HLBinding)})},
- messageSends: ["fromCharCode:", "key"]}),
- smalltalk.HLBinding);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:labelled:",
- fn: function (anInteger,aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._key_(anInteger);
- _st($2)._label_(aString);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:labelled:",{anInteger:anInteger,aString:aString},smalltalk.HLBinding.klass)})},
- messageSends: ["key:", "new", "label:", "yourself"]}),
- smalltalk.HLBinding.klass);
- smalltalk.addClass('HLBindingAction', smalltalk.HLBinding, ['command'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "applyOn:",
- fn: function (aKeyBinder){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._command())._isInputRequired();
- if(smalltalk.assert($1)){
- _st(aKeyBinder)._selectBinding_(_st(self)._inputBinding());
- } else {
- _st(_st(self)._command())._execute();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder},smalltalk.HLBindingAction)})},
- messageSends: ["ifTrue:ifFalse:", "selectBinding:", "inputBinding", "execute", "command", "isInputRequired"]}),
- smalltalk.HLBindingAction);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "command",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@command"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"command",{},smalltalk.HLBindingAction)})},
- messageSends: []}),
- smalltalk.HLBindingAction);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "command:",
- fn: function (aCommand){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@command"]=aCommand;
- return self}, function($ctx1) {$ctx1.fill(self,"command:",{aCommand:aCommand},smalltalk.HLBindingAction)})},
- messageSends: []}),
- smalltalk.HLBindingAction);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "inputBinding",
- fn: function (){
- var self=this;
- function $HLBindingInput(){return smalltalk.HLBindingInput||(typeof HLBindingInput=="undefined"?nil:HLBindingInput)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$4,$5,$1;
- $2=_st($HLBindingInput())._new();
- _st($2)._label_(_st(_st(self)._command())._inputLabel());
- _st($2)._ghostText_(_st(_st(self)._command())._displayLabel());
- _st($2)._defaultValue_(_st(_st(self)._command())._defaultInput());
- _st($2)._inputCompletion_(_st(_st(self)._command())._inputCompletion());
- _st($2)._callback_((function(val){
- return smalltalk.withContext(function($ctx2) {
- $3=_st(self)._command();
- _st($3)._input_(val);
- $4=_st($3)._execute();
- return $4;
- }, function($ctx2) {$ctx2.fillBlock({val:val},$ctx1)})}));
- $5=_st($2)._yourself();
- $1=$5;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"inputBinding",{},smalltalk.HLBindingAction)})},
- messageSends: ["label:", "inputLabel", "command", "new", "ghostText:", "displayLabel", "defaultValue:", "defaultInput", "inputCompletion:", "inputCompletion", "callback:", "input:", "execute", "yourself"]}),
- smalltalk.HLBindingAction);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._command())._isActive();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBindingAction)})},
- messageSends: ["isActive", "command"]}),
- smalltalk.HLBindingAction);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isFinal",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._command())._isInputRequired())._not();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isFinal",{},smalltalk.HLBindingAction)})},
- messageSends: ["not", "isInputRequired", "command"]}),
- smalltalk.HLBindingAction);
- smalltalk.addClass('HLBindingGroup', smalltalk.HLBinding, ['bindings'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "activeBindings",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._bindings())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._isActive();
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"activeBindings",{},smalltalk.HLBindingGroup)})},
- messageSends: ["select:", "isActive", "bindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "add:",
- fn: function (aBinding){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._bindings())._add_(aBinding);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"add:",{aBinding:aBinding},smalltalk.HLBindingGroup)})},
- messageSends: ["add:", "bindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "addActionKey:labelled:callback:",
- fn: function (anInteger,aString,aBlock){
- var self=this;
- function $HLBindingAction(){return smalltalk.HLBindingAction||(typeof HLBindingAction=="undefined"?nil:HLBindingAction)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st($HLBindingAction())._on_labelled_(anInteger,aString);
- _st($1)._callback_(aBlock);
- $2=_st($1)._yourself();
- _st(self)._add_($2);
- return self}, function($ctx1) {$ctx1.fill(self,"addActionKey:labelled:callback:",{anInteger:anInteger,aString:aString,aBlock:aBlock},smalltalk.HLBindingGroup)})},
- messageSends: ["add:", "callback:", "on:labelled:", "yourself"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "addGroupKey:labelled:",
- fn: function (anInteger,aString){
- var self=this;
- function $HLBindingGroup(){return smalltalk.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._add_(_st($HLBindingGroup())._on_labelled_(anInteger,aString));
- return self}, function($ctx1) {$ctx1.fill(self,"addGroupKey:labelled:",{anInteger:anInteger,aString:aString},smalltalk.HLBindingGroup)})},
- messageSends: ["add:", "on:labelled:"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "at:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._bindings())._detect_ifNone_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(each)._label()).__eq(aString);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return nil;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString},smalltalk.HLBindingGroup)})},
- messageSends: ["detect:ifNone:", "=", "label", "bindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "at:add:",
- fn: function (aString,aBinding){
- var self=this;
- var binding;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- binding=_st(self)._at_(aString);
- $1=binding;
- if(($receiver = $1) == nil || $receiver == undefined){
- $2=self;
- return $2;
- } else {
- $1;
- };
- _st(binding)._add_(aBinding);
- return self}, function($ctx1) {$ctx1.fill(self,"at:add:",{aString:aString,aBinding:aBinding,binding:binding},smalltalk.HLBindingGroup)})},
- messageSends: ["at:", "ifNil:", "add:"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "atKey:",
- fn: function (anInteger){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._bindings())._detect_ifNone_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(each)._key()).__eq(anInteger);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return nil;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"atKey:",{anInteger:anInteger},smalltalk.HLBindingGroup)})},
- messageSends: ["detect:ifNone:", "=", "key", "bindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "bindings",
- fn: function (){
- var self=this;
- function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@bindings"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@bindings"]=_st($OrderedCollection())._new();
- $1=self["@bindings"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"bindings",{},smalltalk.HLBindingGroup)})},
- messageSends: ["ifNil:", "new"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "displayLabel",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(smalltalk.HLBinding.fn.prototype._displayLabel.apply(_st(self), [])).__comma("...");
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLBindingGroup)})},
- messageSends: [",", "displayLabel"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._activeBindings())._notEmpty();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBindingGroup)})},
- messageSends: ["notEmpty", "activeBindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "release",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._bindings())._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._release();
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"release",{},smalltalk.HLBindingGroup)})},
- messageSends: ["do:", "release", "bindings"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderOn:html:",
- fn: function (aBindingHelper,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self)._isActive();
- if(smalltalk.assert($1)){
- _st(aBindingHelper)._renderBindingGroup_on_(self,html);
- };
- return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html},smalltalk.HLBindingGroup)})},
- messageSends: ["ifTrue:", "renderBindingGroup:on:", "isActive"]}),
- smalltalk.HLBindingGroup);
- smalltalk.addClass('HLBindingInput', smalltalk.HLBinding, ['input', 'callback', 'status', 'wrapper', 'binder', 'ghostText', 'isFinal', 'message', 'messageTag', 'inputCompletion', 'defaultValue'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "applyOn:",
- fn: function (aKeyBinder){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._isFinal_(true);
- _st(self)._evaluate_(_st(_st(_st(self)._input())._asJQuery())._val());
- return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder},smalltalk.HLBindingInput)})},
- messageSends: ["isFinal:", "evaluate:", "val", "asJQuery", "input"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "atKey:",
- fn: function (aKey){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(aKey).__eq((13));
- if(! smalltalk.assert($1)){
- return nil;
- };
- return self}, function($ctx1) {$ctx1.fill(self,"atKey:",{aKey:aKey},smalltalk.HLBindingInput)})},
- messageSends: ["ifFalse:", "="]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "callback",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@callback"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@callback"]=(function(value){
- return smalltalk.withContext(function($ctx2) {
- }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})});
- $1=self["@callback"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"callback",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "callback:",
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@callback"]=aBlock;
- return self}, function($ctx1) {$ctx1.fill(self,"callback:",{aBlock:aBlock},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "clearStatus",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._status_("info");
- _st(self)._message_("");
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"clearStatus",{},smalltalk.HLBindingInput)})},
- messageSends: ["status:", "message:", "refresh"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultValue",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@defaultValue"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1="";
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"defaultValue",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultValue:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@defaultValue"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"defaultValue:",{aString:aString},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "errorStatus",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._status_("error");
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"errorStatus",{},smalltalk.HLBindingInput)})},
- messageSends: ["status:", "refresh"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "evaluate:",
- fn: function (aString){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._callback())._value_(aString);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(ex){
- return smalltalk.withContext(function($ctx2) {
- _st(_st(_st(self)._input())._asJQuery())._one_do_("keydown",(function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(self)._clearStatus();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- _st(self)._message_(_st(ex)._messageText());
- _st(self)._errorStatus();
- return _st(self)._isFinal_(false);
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"evaluate:",{aString:aString},smalltalk.HLBindingInput)})},
- messageSends: ["on:do:", "one:do:", "clearStatus", "asJQuery", "input", "message:", "messageText", "errorStatus", "isFinal:", "value:", "callback"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "ghostText",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@ghostText"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"ghostText",{},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "ghostText:",
- fn: function (aText){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@ghostText"]=aText;
- return self}, function($ctx1) {$ctx1.fill(self,"ghostText:",{aText:aText},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "input",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@input"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"input",{},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "inputCompletion",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@inputCompletion"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=[];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "inputCompletion:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@inputCompletion"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"inputCompletion:",{aCollection:aCollection},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return true;
- }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isFinal",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@isFinal"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@isFinal"]=smalltalk.HLBinding.fn.prototype._isFinal.apply(_st(self), []);
- $1=self["@isFinal"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isFinal",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:", "isFinal"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isFinal:",
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@isFinal"]=aBoolean;
- return self}, function($ctx1) {$ctx1.fill(self,"isFinal:",{aBoolean:aBoolean},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "message",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@message"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@message"]="";
- $1=self["@message"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"message",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "message:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@message"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"message:",{aString:aString},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "refresh",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@wrapper"];
- if(($receiver = $1) == nil || $receiver == undefined){
- $2=self;
- return $2;
- } else {
- $1;
- };
- _st(self["@wrapper"])._class_(_st(self)._status());
- _st(self["@messageTag"])._contents_(_st(self)._message());
- return self}, function($ctx1) {$ctx1.fill(self,"refresh",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:", "class:", "status", "contents:", "message"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "release",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@status"]=nil;
- self["@wrapper"]=nil;
- self["@binder"]=nil;
- return self}, function($ctx1) {$ctx1.fill(self,"release",{},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderOn:html:",
- fn: function (aBinder,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$4,$5,$6,$7,$3;
- self["@binder"]=aBinder;
- $1=self["@wrapper"];
- if(($receiver = $1) == nil || $receiver == undefined){
- self["@wrapper"]=_st(html)._span();
- self["@wrapper"];
- } else {
- $1;
- };
- $2=self["@wrapper"];
- _st($2)._class_(_st(self)._status());
- $3=_st($2)._with_((function(){
- return smalltalk.withContext(function($ctx2) {
- $4=_st(html)._input();
- _st($4)._placeholder_(_st(self)._ghostText());
- _st($4)._value_(_st(self)._defaultValue());
- $5=_st($4)._yourself();
- self["@input"]=$5;
- self["@input"];
- _st(_st(self["@input"])._asJQuery())._typeahead_(smalltalk.HashedCollection._fromPairs_([_st("source").__minus_gt(_st(self)._inputCompletion())]));
- $6=_st(html)._span();
- _st($6)._class_("help-inline");
- _st($6)._with_(_st(self)._message());
- $7=_st($6)._yourself();
- self["@messageTag"]=$7;
- return self["@messageTag"];
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self["@input"])._asJQuery())._focus();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithTimeout_((10));
- return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBinder:aBinder,html:html},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:", "span", "class:", "status", "with:", "placeholder:", "ghostText", "input", "value:", "defaultValue", "yourself", "typeahead:", "->", "inputCompletion", "asJQuery", "message", "valueWithTimeout:", "focus"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "status",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@status"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@status"]="info";
- $1=self["@status"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"status",{},smalltalk.HLBindingInput)})},
- messageSends: ["ifNil:"]}),
- smalltalk.HLBindingInput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "status:",
- fn: function (aStatus){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@status"]=aStatus;
- return self}, function($ctx1) {$ctx1.fill(self,"status:",{aStatus:aStatus},smalltalk.HLBindingInput)})},
- messageSends: []}),
- smalltalk.HLBindingInput);
- smalltalk.addClass('HLKeyBinder', smalltalk.Object, ['modifierKey', 'helper', 'bindings', 'selectedBinding'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "activate",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._helper())._show();
- return self}, function($ctx1) {$ctx1.fill(self,"activate",{},smalltalk.HLKeyBinder)})},
- messageSends: ["show", "helper"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "activationKey",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=(32);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"activationKey",{},smalltalk.HLKeyBinder)})},
- messageSends: []}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "activationKeyLabel",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "ctrl + space";
- }, function($ctx1) {$ctx1.fill(self,"activationKeyLabel",{},smalltalk.HLKeyBinder)})},
- messageSends: []}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "applyBinding:",
- fn: function (aBinding){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3;
- $1=_st(aBinding)._isActive();
- if(! smalltalk.assert($1)){
- $2=self;
- return $2;
- };
- _st(self)._selectBinding_(aBinding);
- _st(aBinding)._applyOn_(self);
- $3=_st(aBinding)._isFinal();
- if(smalltalk.assert($3)){
- _st(self)._deactivate();
- };
- return self}, function($ctx1) {$ctx1.fill(self,"applyBinding:",{aBinding:aBinding},smalltalk.HLKeyBinder)})},
- messageSends: ["ifFalse:", "isActive", "selectBinding:", "applyOn:", "ifTrue:", "deactivate", "isFinal"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "bindings",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@bindings"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@bindings"]=_st(self)._defaultBindings();
- $1=self["@bindings"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"bindings",{},smalltalk.HLKeyBinder)})},
- messageSends: ["ifNil:", "defaultBindings"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "deactivate",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@selectedBinding"];
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- _st(self["@selectedBinding"])._release();
- };
- self["@selectedBinding"]=nil;
- _st(_st(self)._helper())._hide();
- return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},smalltalk.HLKeyBinder)})},
- messageSends: ["ifNotNil:", "release", "hide", "helper"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultBindings",
- fn: function (){
- var self=this;
- var group;
- function $HLBindingGroup(){return smalltalk.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
- function $HLCloseTabCommand(){return smalltalk.HLCloseTabCommand||(typeof HLCloseTabCommand=="undefined"?nil:HLCloseTabCommand)}
- function $HLOpenCommand(){return smalltalk.HLOpenCommand||(typeof HLOpenCommand=="undefined"?nil:HLOpenCommand)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3;
- $1=_st($HLBindingGroup())._new();
- _st($1)._addGroupKey_labelled_((86),"View");
- _st($1)._add_(_st(_st($HLCloseTabCommand())._new())._asBinding());
- $2=_st($1)._yourself();
- group=$2;
- _st($HLOpenCommand())._registerConcreteClassesOn_(group);
- $3=group;
- return $3;
- }, function($ctx1) {$ctx1.fill(self,"defaultBindings",{group:group},smalltalk.HLKeyBinder)})},
- messageSends: ["addGroupKey:labelled:", "new", "add:", "asBinding", "yourself", "registerConcreteClassesOn:"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "escapeKey",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=(27);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"escapeKey",{},smalltalk.HLKeyBinder)})},
- messageSends: []}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "flushBindings",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@bindings"]=nil;
- return self}, function($ctx1) {$ctx1.fill(self,"flushBindings",{},smalltalk.HLKeyBinder)})},
- messageSends: []}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "handleActiveKeyDown:",
- fn: function (event){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(_st(_st(event)._which()).__eq(_st(self)._escapeKey()))._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(_st(event)._which()).__eq((71)))._and_((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(event)._ctrlKey();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- if(smalltalk.assert($1)){
- _st(self)._deactivate();
- _st(event)._preventDefault();
- return false;
- };
- $2=_st(self)._handleBindingFor_(event);
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"handleActiveKeyDown:",{event:event},smalltalk.HLKeyBinder)})},
- messageSends: ["ifTrue:", "deactivate", "preventDefault", "or:", "and:", "ctrlKey", "=", "which", "escapeKey", "handleBindingFor:"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "handleBindingFor:",
- fn: function (anEvent){
- var self=this;
- var binding;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- binding=_st(_st(self)._selectedBinding())._atKey_(_st(anEvent)._which());
- $1=binding;
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- _st(self)._applyBinding_(binding);
- _st(anEvent)._preventDefault();
- return false;
- };
- return self}, function($ctx1) {$ctx1.fill(self,"handleBindingFor:",{anEvent:anEvent,binding:binding},smalltalk.HLKeyBinder)})},
- messageSends: ["atKey:", "which", "selectedBinding", "ifNotNil:", "applyBinding:", "preventDefault"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "handleInactiveKeyDown:",
- fn: function (event){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(_st(event)._which()).__eq(_st(self)._activationKey());
- if(smalltalk.assert($1)){
- $2=_st(event)._ctrlKey();
- if(smalltalk.assert($2)){
- _st(self)._activate();
- _st(event)._preventDefault();
- return false;
- };
- };
- return self}, function($ctx1) {$ctx1.fill(self,"handleInactiveKeyDown:",{event:event},smalltalk.HLKeyBinder)})},
- messageSends: ["ifTrue:", "activate", "preventDefault", "ctrlKey", "=", "activationKey", "which"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "handleKeyDown:",
- fn: function (event){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=_st(self)._isActive();
- if(smalltalk.assert($2)){
- $1=_st(self)._handleActiveKeyDown_(event);
- } else {
- $1=_st(self)._handleInactiveKeyDown_(event);
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{event:event},smalltalk.HLKeyBinder)})},
- messageSends: ["ifTrue:ifFalse:", "handleActiveKeyDown:", "handleInactiveKeyDown:", "isActive"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "helper",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@helper"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"helper",{},smalltalk.HLKeyBinder)})},
- messageSends: []}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- function $HLKeyBinderHelper(){return smalltalk.HLKeyBinderHelper||(typeof HLKeyBinderHelper=="undefined"?nil:HLKeyBinderHelper)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);
- self["@helper"]=_st($HLKeyBinderHelper())._on_(self);
- $1=self["@helper"];
- _st($1)._renderStart();
- $2=_st($1)._renderCog();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.HLKeyBinder)})},
- messageSends: ["initialize", "on:", "renderStart", "renderCog"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isActive",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(".").__comma(_st(_st(self)._helper())._cssClass()))._asJQuery())._is_(":visible");
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLKeyBinder)})},
- messageSends: ["is:", "asJQuery", ",", "cssClass", "helper"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selectBinding:",
- fn: function (aBinding){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(aBinding).__eq(self["@selectedBinding"]);
- if(smalltalk.assert($1)){
- $2=self;
- return $2;
- };
- self["@selectedBinding"]=aBinding;
- _st(_st(self)._helper())._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"selectBinding:",{aBinding:aBinding},smalltalk.HLKeyBinder)})},
- messageSends: ["ifTrue:", "=", "refresh", "helper"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selectedBinding",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@selectedBinding"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=_st(self)._bindings();
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},smalltalk.HLKeyBinder)})},
- messageSends: ["ifNil:", "bindings"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setupEvents",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(window)._jQuery_("body"))._keydown_((function(event){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._handleKeyDown_(event);
- }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"setupEvents",{},smalltalk.HLKeyBinder)})},
- messageSends: ["keydown:", "handleKeyDown:", "jQuery:"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "systemIsMac",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(navigator)._platform())._match_("Mac");
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"systemIsMac",{},smalltalk.HLKeyBinder)})},
- messageSends: ["match:", "platform"]}),
- smalltalk.HLKeyBinder);
- smalltalk.addClass('HLKeyBinderHelper', smalltalk.HLWidget, ['keyBinder'], 'Helios-KeyBindings');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "cssClass",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "key_helper";
- }, function($ctx1) {$ctx1.fill(self,"cssClass",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: []}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "hide",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(_st(".").__comma(_st(self)._cssClass()))._asJQuery())._remove();
- _st(self)._showCog();
- return self}, function($ctx1) {$ctx1.fill(self,"hide",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["remove", "asJQuery", ",", "cssClass", "showCog"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "hideCog",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st("#cog-helper")._asJQuery())._hide();
- return self}, function($ctx1) {$ctx1.fill(self,"hideCog",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["hide", "asJQuery"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "keyBinder",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@keyBinder"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"keyBinder",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: []}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "keyBinder:",
- fn: function (aKeyBinder){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@keyBinder"]=aKeyBinder;
- return self}, function($ctx1) {$ctx1.fill(self,"keyBinder:",{aKeyBinder:aKeyBinder},smalltalk.HLKeyBinderHelper)})},
- messageSends: []}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "registerBindings",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"registerBindings",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: []}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderBindingGroup:on:",
- fn: function (aBindingGroup,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(_st(aBindingGroup)._activeBindings())._sorted_((function(a,b){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(a)._key()).__lt(_st(b)._key());
- }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._renderActionFor_html_(_st(self)._keyBinder(),html);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"renderBindingGroup:on:",{aBindingGroup:aBindingGroup,html:html},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["do:", "renderActionFor:html:", "keyBinder", "sorted:", "<", "key", "activeBindings"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderBindingOn:",
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._selectedBinding())._renderOn_html_(self,html);
- return self}, function($ctx1) {$ctx1.fill(self,"renderBindingOn:",{html:html},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["renderOn:html:", "selectedBinding"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderCloseOn:",
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(html)._a();
- _st($1)._class_("close");
- _st($1)._with_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(html)._tag_("i"))._class_("icon-remove");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- $2=_st($1)._onClick_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._keyBinder())._deactivate();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"renderCloseOn:",{html:html},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["class:", "a", "with:", "tag:", "onClick:", "deactivate", "keyBinder"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderCog",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$4,$2;
- _st((function(html){
- return smalltalk.withContext(function($ctx2) {
- $1=_st(html)._div();
- _st($1)._id_("cog-helper");
- $2=_st($1)._with_((function(){
- return smalltalk.withContext(function($ctx3) {
- $3=_st(html)._a();
- _st($3)._with_((function(){
- return smalltalk.withContext(function($ctx4) {
- return _st(_st(html)._tag_("i"))._class_("icon-cog");
- }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));
- $4=_st($3)._onClick_((function(){
- return smalltalk.withContext(function($ctx4) {
- return _st(_st(self)._keyBinder())._activate();
- }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));
- return $4;
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- return $2;
- }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st("body")._asJQuery());
- return self}, function($ctx1) {$ctx1.fill(self,"renderCog",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["appendToJQuery:", "asJQuery", "id:", "div", "with:", "class:", "tag:", "a", "onClick:", "activate", "keyBinder"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderContentOn:",
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$4,$2;
- $1=_st(html)._div();
- _st($1)._class_(_st(self)._cssClass());
- $2=_st($1)._with_((function(){
- return smalltalk.withContext(function($ctx2) {
- $3=self;
- _st($3)._renderSelectionOn_(html);
- _st($3)._renderBindingOn_(html);
- $4=_st($3)._renderCloseOn_(html);
- return $4;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["class:", "cssClass", "div", "with:", "renderSelectionOn:", "renderBindingOn:", "renderCloseOn:"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderSelectionOn:",
- fn: function (html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$5,$4,$2;
- $1=_st(html)._span();
- _st($1)._class_("selected");
- $3=$1;
- $5=_st(_st(self)._selectedBinding())._label();
- if(($receiver = $5) == nil || $receiver == undefined){
- $4="Action";
- } else {
- $4=$5;
- };
- $2=_st($3)._with_($4);
- return self}, function($ctx1) {$ctx1.fill(self,"renderSelectionOn:",{html:html},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["class:", "span", "with:", "ifNil:", "label", "selectedBinding"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderStart",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- _st(_st(window)._jQuery_("#helper"))._remove();
- _st((function(html){
- return smalltalk.withContext(function($ctx2) {
- $1=_st(html)._div();
- _st($1)._id_("helper");
- $2=_st($1)._with_(_st(_st("Press ").__comma(_st(_st(self)._keyBinder())._activationKeyLabel())).__comma(" to start"));
- return $2;
- }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st("body")._asJQuery());
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(window)._jQuery_("#helper"))._fadeOut_((1000));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithTimeout_((2000));
- return self}, function($ctx1) {$ctx1.fill(self,"renderStart",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["remove", "jQuery:", "appendToJQuery:", "asJQuery", "id:", "div", "with:", ",", "activationKeyLabel", "keyBinder", "valueWithTimeout:", "fadeOut:"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selectedBinding",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._keyBinder())._selectedBinding();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["selectedBinding", "keyBinder"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "show",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._hideCog();
- _st(self)._appendToJQuery_(_st("body")._asJQuery());
- return self}, function($ctx1) {$ctx1.fill(self,"show",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["hideCog", "appendToJQuery:", "asJQuery"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "showCog",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st("#cog-helper")._asJQuery())._show();
- return self}, function($ctx1) {$ctx1.fill(self,"showCog",{},smalltalk.HLKeyBinderHelper)})},
- messageSends: ["show", "asJQuery"]}),
- smalltalk.HLKeyBinderHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:",
- fn: function (aKeyBinder){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._keyBinder_(aKeyBinder);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:",{aKeyBinder:aKeyBinder},smalltalk.HLKeyBinderHelper.klass)})},
- messageSends: ["keyBinder:", "new", "yourself"]}),
- smalltalk.HLKeyBinderHelper.klass);
|