Helios-KeyBindings.js 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367
  1. define("amber_core/Helios-KeyBindings", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_vm/globals", "amber_core/Kernel-Objects", "amber_core/Helios-Core"], function(smalltalk,nil,_st, globals){
  2. smalltalk.addPackage('Helios-KeyBindings');
  3. smalltalk.packages["Helios-KeyBindings"].transport = {"type":"amd","amdNamespace":"amber_core"};
  4. smalltalk.addClass('HLBinding', globals.Object, ['key', 'label'], 'Helios-KeyBindings');
  5. globals.HLBinding.comment="I am the abstract representation of a keybinding in Helios. My instances hold a key (integer value) and a label. \x0a\x0aBindings are built into a tree of keys, so pressing a key may result in more key choices (for example, to open a workspace, 'o' is pressed first then 'w' is pressed).\x0a\x0aBinding action handling and selection is handled by the `current` instance of `HLKeyBinder`.\x0a\x0aSubclasses implement specific behavior like evaluating actions or (sub-)grouping other bindings.";
  6. smalltalk.addMethod(
  7. smalltalk.method({
  8. selector: "apply",
  9. protocol: 'actions',
  10. fn: function (){
  11. var self=this;
  12. return self},
  13. args: [],
  14. source: "apply",
  15. messageSends: [],
  16. referencedClasses: []
  17. }),
  18. globals.HLBinding);
  19. smalltalk.addMethod(
  20. smalltalk.method({
  21. selector: "atKey:",
  22. protocol: 'accessing',
  23. fn: function (aKey){
  24. var self=this;
  25. return nil;
  26. },
  27. args: ["aKey"],
  28. source: "atKey: aKey\x0a\x09\x22Answer the sub-binding at key aKey.\x0a\x09Always answer nil here. See HLBindingGroup for more.\x22\x0a\x09\x0a\x09^ nil",
  29. messageSends: [],
  30. referencedClasses: []
  31. }),
  32. globals.HLBinding);
  33. smalltalk.addMethod(
  34. smalltalk.method({
  35. selector: "displayLabel",
  36. protocol: 'accessing',
  37. fn: function (){
  38. var self=this;
  39. return smalltalk.withContext(function($ctx1) {
  40. var $1;
  41. $1=self._label();
  42. return $1;
  43. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},globals.HLBinding)})},
  44. args: [],
  45. source: "displayLabel\x0a\x09^ self label",
  46. messageSends: ["label"],
  47. referencedClasses: []
  48. }),
  49. globals.HLBinding);
  50. smalltalk.addMethod(
  51. smalltalk.method({
  52. selector: "isActive",
  53. protocol: 'testing',
  54. fn: function (){
  55. var self=this;
  56. return smalltalk.withContext(function($ctx1) {
  57. var $1;
  58. $1=self._subclassResponsibility();
  59. return $1;
  60. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLBinding)})},
  61. args: [],
  62. source: "isActive\x0a\x09^ self subclassResponsibility",
  63. messageSends: ["subclassResponsibility"],
  64. referencedClasses: []
  65. }),
  66. globals.HLBinding);
  67. smalltalk.addMethod(
  68. smalltalk.method({
  69. selector: "key",
  70. protocol: 'accessing',
  71. fn: function (){
  72. var self=this;
  73. var $1;
  74. $1=self["@key"];
  75. return $1;
  76. },
  77. args: [],
  78. source: "key\x0a\x09^ key",
  79. messageSends: [],
  80. referencedClasses: []
  81. }),
  82. globals.HLBinding);
  83. smalltalk.addMethod(
  84. smalltalk.method({
  85. selector: "key:",
  86. protocol: 'accessing',
  87. fn: function (anInteger){
  88. var self=this;
  89. self["@key"]=anInteger;
  90. return self},
  91. args: ["anInteger"],
  92. source: "key: anInteger\x0a\x09key := anInteger",
  93. messageSends: [],
  94. referencedClasses: []
  95. }),
  96. globals.HLBinding);
  97. smalltalk.addMethod(
  98. smalltalk.method({
  99. selector: "label",
  100. protocol: 'accessing',
  101. fn: function (){
  102. var self=this;
  103. var $1;
  104. $1=self["@label"];
  105. return $1;
  106. },
  107. args: [],
  108. source: "label\x0a\x09^ label",
  109. messageSends: [],
  110. referencedClasses: []
  111. }),
  112. globals.HLBinding);
  113. smalltalk.addMethod(
  114. smalltalk.method({
  115. selector: "label:",
  116. protocol: 'accessing',
  117. fn: function (aString){
  118. var self=this;
  119. self["@label"]=aString;
  120. return self},
  121. args: ["aString"],
  122. source: "label: aString\x0a\x09label := aString",
  123. messageSends: [],
  124. referencedClasses: []
  125. }),
  126. globals.HLBinding);
  127. smalltalk.addMethod(
  128. smalltalk.method({
  129. selector: "release",
  130. protocol: 'actions',
  131. fn: function (){
  132. var self=this;
  133. return self},
  134. args: [],
  135. source: "release",
  136. messageSends: [],
  137. referencedClasses: []
  138. }),
  139. globals.HLBinding);
  140. smalltalk.addMethod(
  141. smalltalk.method({
  142. selector: "renderOn:html:",
  143. protocol: 'rendering',
  144. fn: function (aBindingHelper,html){
  145. var self=this;
  146. return self},
  147. args: ["aBindingHelper", "html"],
  148. source: "renderOn: aBindingHelper html: html",
  149. messageSends: [],
  150. referencedClasses: []
  151. }),
  152. globals.HLBinding);
  153. smalltalk.addMethod(
  154. smalltalk.method({
  155. selector: "shortcut",
  156. protocol: 'accessing',
  157. fn: function (){
  158. var self=this;
  159. function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
  160. return smalltalk.withContext(function($ctx1) {
  161. var $1;
  162. $1=_st($String())._fromCharCode_(self._key());
  163. return $1;
  164. }, function($ctx1) {$ctx1.fill(self,"shortcut",{},globals.HLBinding)})},
  165. args: [],
  166. source: "shortcut\x0a\x09^ String fromCharCode: self key",
  167. messageSends: ["fromCharCode:", "key"],
  168. referencedClasses: ["String"]
  169. }),
  170. globals.HLBinding);
  171. smalltalk.addMethod(
  172. smalltalk.method({
  173. selector: "on:labelled:",
  174. protocol: 'instance creation',
  175. fn: function (anInteger,aString){
  176. var self=this;
  177. return smalltalk.withContext(function($ctx1) {
  178. var $2,$3,$1;
  179. $2=self._new();
  180. _st($2)._key_(anInteger);
  181. _st($2)._label_(aString);
  182. $3=_st($2)._yourself();
  183. $1=$3;
  184. return $1;
  185. }, function($ctx1) {$ctx1.fill(self,"on:labelled:",{anInteger:anInteger,aString:aString},globals.HLBinding.klass)})},
  186. args: ["anInteger", "aString"],
  187. source: "on: anInteger labelled: aString\x0a\x09^ self new\x0a \x09key: anInteger;\x0a label: aString;\x0a yourself",
  188. messageSends: ["key:", "new", "label:", "yourself"],
  189. referencedClasses: []
  190. }),
  191. globals.HLBinding.klass);
  192. smalltalk.addClass('HLBindingAction', globals.HLBinding, ['command'], 'Helios-KeyBindings');
  193. globals.HLBindingAction.comment="My instances are the leafs of the binding tree. They evaluate actions through commands, instances of concrete subclasses of `HLCommand`.\x0a\x0aThe `#apply` methods is used to evaluate the `command`. If the command requires user input, an `inputWidget` will be displayed to the user.";
  194. smalltalk.addMethod(
  195. smalltalk.method({
  196. selector: "apply",
  197. protocol: 'actions',
  198. fn: function (){
  199. var self=this;
  200. function $HLKeyBinder(){return globals.HLKeyBinder||(typeof HLKeyBinder=="undefined"?nil:HLKeyBinder)}
  201. return smalltalk.withContext(function($ctx1) {
  202. var $1;
  203. $1=_st(self._command())._isInputRequired();
  204. if(smalltalk.assert($1)){
  205. _st(_st(_st($HLKeyBinder())._current())._helper())._showWidget_(self._inputWidget());
  206. } else {
  207. self._executeCommand();
  208. };
  209. return self}, function($ctx1) {$ctx1.fill(self,"apply",{},globals.HLBindingAction)})},
  210. args: [],
  211. source: "apply\x0a\x09self command isInputRequired\x0a\x09\x09ifTrue: [ HLKeyBinder current helper showWidget: self inputWidget ]\x0a\x09\x09ifFalse: [ self executeCommand ]",
  212. messageSends: ["ifTrue:ifFalse:", "isInputRequired", "command", "showWidget:", "helper", "current", "inputWidget", "executeCommand"],
  213. referencedClasses: ["HLKeyBinder"]
  214. }),
  215. globals.HLBindingAction);
  216. smalltalk.addMethod(
  217. smalltalk.method({
  218. selector: "command",
  219. protocol: 'accessing',
  220. fn: function (){
  221. var self=this;
  222. var $1;
  223. $1=self["@command"];
  224. return $1;
  225. },
  226. args: [],
  227. source: "command\x0a\x09^ command",
  228. messageSends: [],
  229. referencedClasses: []
  230. }),
  231. globals.HLBindingAction);
  232. smalltalk.addMethod(
  233. smalltalk.method({
  234. selector: "command:",
  235. protocol: 'accessing',
  236. fn: function (aCommand){
  237. var self=this;
  238. self["@command"]=aCommand;
  239. return self},
  240. args: ["aCommand"],
  241. source: "command: aCommand\x0a\x09command := aCommand",
  242. messageSends: [],
  243. referencedClasses: []
  244. }),
  245. globals.HLBindingAction);
  246. smalltalk.addMethod(
  247. smalltalk.method({
  248. selector: "executeCommand",
  249. protocol: 'actions',
  250. fn: function (){
  251. var self=this;
  252. function $HLKeyBinder(){return globals.HLKeyBinder||(typeof HLKeyBinder=="undefined"?nil:HLKeyBinder)}
  253. return smalltalk.withContext(function($ctx1) {
  254. _st(self._command())._execute();
  255. _st(_st($HLKeyBinder())._current())._deactivate();
  256. return self}, function($ctx1) {$ctx1.fill(self,"executeCommand",{},globals.HLBindingAction)})},
  257. args: [],
  258. source: "executeCommand\x0a\x09self command execute.\x0a\x09HLKeyBinder current deactivate",
  259. messageSends: ["execute", "command", "deactivate", "current"],
  260. referencedClasses: ["HLKeyBinder"]
  261. }),
  262. globals.HLBindingAction);
  263. smalltalk.addMethod(
  264. smalltalk.method({
  265. selector: "input:",
  266. protocol: 'accessing',
  267. fn: function (aString){
  268. var self=this;
  269. return smalltalk.withContext(function($ctx1) {
  270. _st(self._command())._input_(aString);
  271. return self}, function($ctx1) {$ctx1.fill(self,"input:",{aString:aString},globals.HLBindingAction)})},
  272. args: ["aString"],
  273. source: "input: aString\x0a\x09self command input: aString",
  274. messageSends: ["input:", "command"],
  275. referencedClasses: []
  276. }),
  277. globals.HLBindingAction);
  278. smalltalk.addMethod(
  279. smalltalk.method({
  280. selector: "inputBinding",
  281. protocol: 'accessing',
  282. fn: function (){
  283. var self=this;
  284. function $HLBindingInput(){return globals.HLBindingInput||(typeof HLBindingInput=="undefined"?nil:HLBindingInput)}
  285. return smalltalk.withContext(function($ctx1) {
  286. var $2,$3,$5,$4,$6,$8,$7,$9,$11,$10,$12,$14,$13,$15,$16,$17,$1;
  287. $2=_st($HLBindingInput())._new();
  288. $3=$2;
  289. $5=self._command();
  290. $ctx1.sendIdx["command"]=1;
  291. $4=_st($5)._inputLabel();
  292. _st($3)._label_($4);
  293. $6=$2;
  294. $8=self._command();
  295. $ctx1.sendIdx["command"]=2;
  296. $7=_st($8)._displayLabel();
  297. _st($6)._ghostText_($7);
  298. $9=$2;
  299. $11=self._command();
  300. $ctx1.sendIdx["command"]=3;
  301. $10=_st($11)._defaultInput();
  302. _st($9)._defaultValue_($10);
  303. $12=$2;
  304. $14=self._command();
  305. $ctx1.sendIdx["command"]=4;
  306. $13=_st($14)._inputCompletion();
  307. _st($12)._inputCompletion_($13);
  308. _st($2)._callback_((function(val){
  309. return smalltalk.withContext(function($ctx2) {
  310. $15=self._command();
  311. _st($15)._input_(val);
  312. $16=_st($15)._execute();
  313. return $16;
  314. }, function($ctx2) {$ctx2.fillBlock({val:val},$ctx1,1)})}));
  315. $17=_st($2)._yourself();
  316. $1=$17;
  317. return $1;
  318. }, function($ctx1) {$ctx1.fill(self,"inputBinding",{},globals.HLBindingAction)})},
  319. args: [],
  320. source: "inputBinding\x0a\x09^ HLBindingInput new\x0a\x09\x09label: self command inputLabel;\x0a\x09\x09ghostText: self command displayLabel;\x0a\x09\x09defaultValue: self command defaultInput;\x0a\x09\x09inputCompletion: self command inputCompletion;\x0a\x09\x09callback: [ :val | \x0a\x09\x09\x09self command \x0a\x09\x09\x09\x09input: val;\x0a\x09\x09\x09\x09execute ];\x0a\x09\x09yourself",
  321. messageSends: ["label:", "new", "inputLabel", "command", "ghostText:", "displayLabel", "defaultValue:", "defaultInput", "inputCompletion:", "inputCompletion", "callback:", "input:", "execute", "yourself"],
  322. referencedClasses: ["HLBindingInput"]
  323. }),
  324. globals.HLBindingAction);
  325. smalltalk.addMethod(
  326. smalltalk.method({
  327. selector: "inputWidget",
  328. protocol: 'accessing',
  329. fn: function (){
  330. var self=this;
  331. function $HLBindingActionInputWidget(){return globals.HLBindingActionInputWidget||(typeof HLBindingActionInputWidget=="undefined"?nil:HLBindingActionInputWidget)}
  332. return smalltalk.withContext(function($ctx1) {
  333. var $2,$3,$5,$4,$6,$8,$7,$9,$10,$1;
  334. $2=_st($HLBindingActionInputWidget())._new();
  335. $3=$2;
  336. $5=self._command();
  337. $ctx1.sendIdx["command"]=1;
  338. $4=_st($5)._displayLabel();
  339. _st($3)._ghostText_($4);
  340. $6=$2;
  341. $8=self._command();
  342. $ctx1.sendIdx["command"]=2;
  343. $7=_st($8)._defaultInput();
  344. _st($6)._defaultValue_($7);
  345. _st($2)._inputCompletion_(_st(self._command())._inputCompletion());
  346. _st($2)._callback_((function(value){
  347. return smalltalk.withContext(function($ctx2) {
  348. self._input_(value);
  349. $9=self._executeCommand();
  350. return $9;
  351. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,1)})}));
  352. $10=_st($2)._yourself();
  353. $1=$10;
  354. return $1;
  355. }, function($ctx1) {$ctx1.fill(self,"inputWidget",{},globals.HLBindingAction)})},
  356. args: [],
  357. source: "inputWidget\x0a\x09^ HLBindingActionInputWidget new\x0a\x09\x09ghostText: self command displayLabel;\x0a\x09\x09defaultValue: self command defaultInput;\x0a\x09\x09inputCompletion: self command inputCompletion;\x0a\x09\x09callback: [ :value | \x0a\x09\x09\x09self \x0a\x09\x09\x09\x09input: value;\x0a\x09\x09\x09\x09executeCommand ];\x0a\x09\x09yourself",
  358. messageSends: ["ghostText:", "new", "displayLabel", "command", "defaultValue:", "defaultInput", "inputCompletion:", "inputCompletion", "callback:", "input:", "executeCommand", "yourself"],
  359. referencedClasses: ["HLBindingActionInputWidget"]
  360. }),
  361. globals.HLBindingAction);
  362. smalltalk.addMethod(
  363. smalltalk.method({
  364. selector: "isActive",
  365. protocol: 'testing',
  366. fn: function (){
  367. var self=this;
  368. return smalltalk.withContext(function($ctx1) {
  369. var $1;
  370. $1=_st(self._command())._isActive();
  371. return $1;
  372. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLBindingAction)})},
  373. args: [],
  374. source: "isActive\x0a\x09^ self command isActive",
  375. messageSends: ["isActive", "command"],
  376. referencedClasses: []
  377. }),
  378. globals.HLBindingAction);
  379. smalltalk.addClass('HLBindingGroup', globals.HLBinding, ['bindings'], 'Helios-KeyBindings');
  380. globals.HLBindingGroup.comment="My instances hold other bindings, either actions or groups, and do not have actions by themselves.\x0a\x0aChildren are accessed with `atKey:` and added with the `add*` methods.";
  381. smalltalk.addMethod(
  382. smalltalk.method({
  383. selector: "activeBindings",
  384. protocol: 'accessing',
  385. fn: function (){
  386. var self=this;
  387. return smalltalk.withContext(function($ctx1) {
  388. var $1;
  389. $1=_st(self._bindings())._select_((function(each){
  390. return smalltalk.withContext(function($ctx2) {
  391. return _st(each)._isActive();
  392. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  393. return $1;
  394. }, function($ctx1) {$ctx1.fill(self,"activeBindings",{},globals.HLBindingGroup)})},
  395. args: [],
  396. source: "activeBindings\x0a\x09^ self bindings select: [ :each | each isActive ]",
  397. messageSends: ["select:", "bindings", "isActive"],
  398. referencedClasses: []
  399. }),
  400. globals.HLBindingGroup);
  401. smalltalk.addMethod(
  402. smalltalk.method({
  403. selector: "add:",
  404. protocol: 'adding',
  405. fn: function (aBinding){
  406. var self=this;
  407. return smalltalk.withContext(function($ctx1) {
  408. var $1;
  409. $1=_st(self._bindings())._add_(aBinding);
  410. return $1;
  411. }, function($ctx1) {$ctx1.fill(self,"add:",{aBinding:aBinding},globals.HLBindingGroup)})},
  412. args: ["aBinding"],
  413. source: "add: aBinding\x0a\x09^ self bindings add: aBinding",
  414. messageSends: ["add:", "bindings"],
  415. referencedClasses: []
  416. }),
  417. globals.HLBindingGroup);
  418. smalltalk.addMethod(
  419. smalltalk.method({
  420. selector: "addActionKey:labelled:callback:",
  421. protocol: 'adding',
  422. fn: function (anInteger,aString,aBlock){
  423. var self=this;
  424. function $HLBindingAction(){return globals.HLBindingAction||(typeof HLBindingAction=="undefined"?nil:HLBindingAction)}
  425. return smalltalk.withContext(function($ctx1) {
  426. var $1,$2;
  427. $1=_st($HLBindingAction())._on_labelled_(anInteger,aString);
  428. _st($1)._callback_(aBlock);
  429. $2=_st($1)._yourself();
  430. self._add_($2);
  431. return self}, function($ctx1) {$ctx1.fill(self,"addActionKey:labelled:callback:",{anInteger:anInteger,aString:aString,aBlock:aBlock},globals.HLBindingGroup)})},
  432. args: ["anInteger", "aString", "aBlock"],
  433. source: "addActionKey: anInteger labelled: aString callback: aBlock\x0a\x09self add: ((HLBindingAction on: anInteger labelled: aString)\x0a \x09callback: aBlock;\x0a yourself)",
  434. messageSends: ["add:", "callback:", "on:labelled:", "yourself"],
  435. referencedClasses: ["HLBindingAction"]
  436. }),
  437. globals.HLBindingGroup);
  438. smalltalk.addMethod(
  439. smalltalk.method({
  440. selector: "addGroupKey:labelled:",
  441. protocol: 'add',
  442. fn: function (anInteger,aString){
  443. var self=this;
  444. function $HLBindingGroup(){return globals.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
  445. return smalltalk.withContext(function($ctx1) {
  446. self._add_(_st($HLBindingGroup())._on_labelled_(anInteger,aString));
  447. return self}, function($ctx1) {$ctx1.fill(self,"addGroupKey:labelled:",{anInteger:anInteger,aString:aString},globals.HLBindingGroup)})},
  448. args: ["anInteger", "aString"],
  449. source: "addGroupKey: anInteger labelled: aString\x0a\x09self add: (HLBindingGroup on: anInteger labelled: aString)",
  450. messageSends: ["add:", "on:labelled:"],
  451. referencedClasses: ["HLBindingGroup"]
  452. }),
  453. globals.HLBindingGroup);
  454. smalltalk.addMethod(
  455. smalltalk.method({
  456. selector: "at:",
  457. protocol: 'accessing',
  458. fn: function (aString){
  459. var self=this;
  460. return smalltalk.withContext(function($ctx1) {
  461. var $1;
  462. $1=_st(self._bindings())._detect_ifNone_((function(each){
  463. return smalltalk.withContext(function($ctx2) {
  464. return _st(_st(each)._label()).__eq(aString);
  465. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}),(function(){
  466. return nil;
  467. }));
  468. return $1;
  469. }, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString},globals.HLBindingGroup)})},
  470. args: ["aString"],
  471. source: "at: aString\x0a\x09^ self bindings \x0a \x09detect: [ :each | each label = aString ]\x0a \x09ifNone: [ nil ]",
  472. messageSends: ["detect:ifNone:", "bindings", "=", "label"],
  473. referencedClasses: []
  474. }),
  475. globals.HLBindingGroup);
  476. smalltalk.addMethod(
  477. smalltalk.method({
  478. selector: "at:add:",
  479. protocol: 'accessing',
  480. fn: function (aString,aBinding){
  481. var self=this;
  482. var binding;
  483. return smalltalk.withContext(function($ctx1) {
  484. var $1;
  485. binding=self._at_(aString);
  486. $1=binding;
  487. if(($receiver = $1) == nil || $receiver == null){
  488. return self;
  489. } else {
  490. $1;
  491. };
  492. _st(binding)._add_(aBinding);
  493. return self}, function($ctx1) {$ctx1.fill(self,"at:add:",{aString:aString,aBinding:aBinding,binding:binding},globals.HLBindingGroup)})},
  494. args: ["aString", "aBinding"],
  495. source: "at: aString add: aBinding\x0a\x09| binding |\x0a\x09\x0a\x09binding := self at: aString.\x0a\x09binding ifNil: [ ^ self ].\x0a\x09\x09\x0a\x09binding add: aBinding",
  496. messageSends: ["at:", "ifNil:", "add:"],
  497. referencedClasses: []
  498. }),
  499. globals.HLBindingGroup);
  500. smalltalk.addMethod(
  501. smalltalk.method({
  502. selector: "atKey:",
  503. protocol: 'accessing',
  504. fn: function (anInteger){
  505. var self=this;
  506. return smalltalk.withContext(function($ctx1) {
  507. var $1;
  508. $1=_st(self._bindings())._detect_ifNone_((function(each){
  509. return smalltalk.withContext(function($ctx2) {
  510. return _st(_st(each)._key()).__eq(anInteger);
  511. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}),(function(){
  512. return nil;
  513. }));
  514. return $1;
  515. }, function($ctx1) {$ctx1.fill(self,"atKey:",{anInteger:anInteger},globals.HLBindingGroup)})},
  516. args: ["anInteger"],
  517. source: "atKey: anInteger\x0a\x09^ self bindings \x0a \x09detect: [ :each | each key = anInteger ]\x0a \x09ifNone: [ nil ]",
  518. messageSends: ["detect:ifNone:", "bindings", "=", "key"],
  519. referencedClasses: []
  520. }),
  521. globals.HLBindingGroup);
  522. smalltalk.addMethod(
  523. smalltalk.method({
  524. selector: "bindings",
  525. protocol: 'accessing',
  526. fn: function (){
  527. var self=this;
  528. function $OrderedCollection(){return globals.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  529. return smalltalk.withContext(function($ctx1) {
  530. var $2,$1;
  531. $2=self["@bindings"];
  532. if(($receiver = $2) == nil || $receiver == null){
  533. self["@bindings"]=_st($OrderedCollection())._new();
  534. $1=self["@bindings"];
  535. } else {
  536. $1=$2;
  537. };
  538. return $1;
  539. }, function($ctx1) {$ctx1.fill(self,"bindings",{},globals.HLBindingGroup)})},
  540. args: [],
  541. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := OrderedCollection new ]",
  542. messageSends: ["ifNil:", "new"],
  543. referencedClasses: ["OrderedCollection"]
  544. }),
  545. globals.HLBindingGroup);
  546. smalltalk.addMethod(
  547. smalltalk.method({
  548. selector: "displayLabel",
  549. protocol: 'accessing',
  550. fn: function (){
  551. var self=this;
  552. return smalltalk.withContext(function($ctx1) {
  553. var $1;
  554. $1=_st(globals.HLBindingGroup.superclass.fn.prototype._displayLabel.apply(_st(self), [])).__comma("...");
  555. return $1;
  556. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},globals.HLBindingGroup)})},
  557. args: [],
  558. source: "displayLabel\x0a\x09^ super displayLabel, '...'",
  559. messageSends: [",", "displayLabel"],
  560. referencedClasses: []
  561. }),
  562. globals.HLBindingGroup);
  563. smalltalk.addMethod(
  564. smalltalk.method({
  565. selector: "isActive",
  566. protocol: 'testing',
  567. fn: function (){
  568. var self=this;
  569. return smalltalk.withContext(function($ctx1) {
  570. var $1;
  571. $1=_st(self._activeBindings())._notEmpty();
  572. return $1;
  573. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLBindingGroup)})},
  574. args: [],
  575. source: "isActive\x0a\x09^ self activeBindings notEmpty",
  576. messageSends: ["notEmpty", "activeBindings"],
  577. referencedClasses: []
  578. }),
  579. globals.HLBindingGroup);
  580. smalltalk.addMethod(
  581. smalltalk.method({
  582. selector: "release",
  583. protocol: 'actions',
  584. fn: function (){
  585. var self=this;
  586. return smalltalk.withContext(function($ctx1) {
  587. _st(self._bindings())._do_((function(each){
  588. return smalltalk.withContext(function($ctx2) {
  589. return _st(each)._release();
  590. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  591. return self}, function($ctx1) {$ctx1.fill(self,"release",{},globals.HLBindingGroup)})},
  592. args: [],
  593. source: "release\x0a\x09self bindings do: [ :each | each release ]",
  594. messageSends: ["do:", "bindings", "release"],
  595. referencedClasses: []
  596. }),
  597. globals.HLBindingGroup);
  598. smalltalk.addMethod(
  599. smalltalk.method({
  600. selector: "renderOn:html:",
  601. protocol: 'rendering',
  602. fn: function (aBindingHelper,html){
  603. var self=this;
  604. return smalltalk.withContext(function($ctx1) {
  605. var $1;
  606. $1=self._isActive();
  607. if(smalltalk.assert($1)){
  608. _st(aBindingHelper)._renderBindingGroup_on_(self,html);
  609. };
  610. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html},globals.HLBindingGroup)})},
  611. args: ["aBindingHelper", "html"],
  612. source: "renderOn: aBindingHelper html: html\x0a\x09self isActive ifTrue: [\x0a\x09\x09aBindingHelper renderBindingGroup: self on: html ]",
  613. messageSends: ["ifTrue:", "isActive", "renderBindingGroup:on:"],
  614. referencedClasses: []
  615. }),
  616. globals.HLBindingGroup);
  617. smalltalk.addClass('HLBindingActionInputWidget', globals.HLWidget, ['input', 'callback', 'status', 'wrapper', 'ghostText', 'message', 'inputCompletion', 'defaultValue', 'messageTag'], 'Helios-KeyBindings');
  618. globals.HLBindingActionInputWidget.comment="My instances are built when a `HLBindingAction` that requires user input is applied.";
  619. smalltalk.addMethod(
  620. smalltalk.method({
  621. selector: "callback",
  622. protocol: 'accessing',
  623. fn: function (){
  624. var self=this;
  625. return smalltalk.withContext(function($ctx1) {
  626. var $2,$1;
  627. $2=self["@callback"];
  628. if(($receiver = $2) == nil || $receiver == null){
  629. self["@callback"]=(function(value){
  630. });
  631. $1=self["@callback"];
  632. } else {
  633. $1=$2;
  634. };
  635. return $1;
  636. }, function($ctx1) {$ctx1.fill(self,"callback",{},globals.HLBindingActionInputWidget)})},
  637. args: [],
  638. source: "callback\x0a\x09^ callback ifNil: [ callback := [ :value | ] ]",
  639. messageSends: ["ifNil:"],
  640. referencedClasses: []
  641. }),
  642. globals.HLBindingActionInputWidget);
  643. smalltalk.addMethod(
  644. smalltalk.method({
  645. selector: "callback:",
  646. protocol: 'accessing',
  647. fn: function (aBlock){
  648. var self=this;
  649. self["@callback"]=aBlock;
  650. return self},
  651. args: ["aBlock"],
  652. source: "callback: aBlock\x0a\x09callback := aBlock",
  653. messageSends: [],
  654. referencedClasses: []
  655. }),
  656. globals.HLBindingActionInputWidget);
  657. smalltalk.addMethod(
  658. smalltalk.method({
  659. selector: "clearStatus",
  660. protocol: 'actions',
  661. fn: function (){
  662. var self=this;
  663. return smalltalk.withContext(function($ctx1) {
  664. self._status_("info");
  665. self._message_("");
  666. self._refresh();
  667. return self}, function($ctx1) {$ctx1.fill(self,"clearStatus",{},globals.HLBindingActionInputWidget)})},
  668. args: [],
  669. source: "clearStatus\x0a\x09self status: 'info'.\x0a\x09self message: ''.\x0a\x09self refresh",
  670. messageSends: ["status:", "message:", "refresh"],
  671. referencedClasses: []
  672. }),
  673. globals.HLBindingActionInputWidget);
  674. smalltalk.addMethod(
  675. smalltalk.method({
  676. selector: "defaultValue",
  677. protocol: 'accessing',
  678. fn: function (){
  679. var self=this;
  680. return smalltalk.withContext(function($ctx1) {
  681. var $2,$1;
  682. $2=self["@defaultValue"];
  683. if(($receiver = $2) == nil || $receiver == null){
  684. $1="";
  685. } else {
  686. $1=$2;
  687. };
  688. return $1;
  689. }, function($ctx1) {$ctx1.fill(self,"defaultValue",{},globals.HLBindingActionInputWidget)})},
  690. args: [],
  691. source: "defaultValue\x0a\x09^ defaultValue ifNil: [ '' ]",
  692. messageSends: ["ifNil:"],
  693. referencedClasses: []
  694. }),
  695. globals.HLBindingActionInputWidget);
  696. smalltalk.addMethod(
  697. smalltalk.method({
  698. selector: "defaultValue:",
  699. protocol: 'accessing',
  700. fn: function (aString){
  701. var self=this;
  702. self["@defaultValue"]=aString;
  703. return self},
  704. args: ["aString"],
  705. source: "defaultValue: aString\x0a\x09defaultValue := aString",
  706. messageSends: [],
  707. referencedClasses: []
  708. }),
  709. globals.HLBindingActionInputWidget);
  710. smalltalk.addMethod(
  711. smalltalk.method({
  712. selector: "errorStatus",
  713. protocol: 'actions',
  714. fn: function (){
  715. var self=this;
  716. return smalltalk.withContext(function($ctx1) {
  717. self._status_("error");
  718. self._refresh();
  719. return self}, function($ctx1) {$ctx1.fill(self,"errorStatus",{},globals.HLBindingActionInputWidget)})},
  720. args: [],
  721. source: "errorStatus\x0a\x09self status: 'error'.\x0a\x09self refresh",
  722. messageSends: ["status:", "refresh"],
  723. referencedClasses: []
  724. }),
  725. globals.HLBindingActionInputWidget);
  726. smalltalk.addMethod(
  727. smalltalk.method({
  728. selector: "evaluate:",
  729. protocol: 'actions',
  730. fn: function (aString){
  731. var self=this;
  732. function $Error(){return globals.Error||(typeof Error=="undefined"?nil:Error)}
  733. return smalltalk.withContext(function($ctx1) {
  734. _st((function(){
  735. return smalltalk.withContext(function($ctx2) {
  736. return _st(self._callback())._value_(aString);
  737. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._on_do_($Error(),(function(ex){
  738. return smalltalk.withContext(function($ctx2) {
  739. _st(_st(self._input())._asJQuery())._one_do_("keydown",(function(){
  740. return smalltalk.withContext(function($ctx3) {
  741. return self._clearStatus();
  742. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  743. self._message_(_st(ex)._messageText());
  744. return self._errorStatus();
  745. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1,2)})}));
  746. return self}, function($ctx1) {$ctx1.fill(self,"evaluate:",{aString:aString},globals.HLBindingActionInputWidget)})},
  747. args: ["aString"],
  748. source: "evaluate: aString\x09\x0a\x09[ self callback value: aString ]\x0a\x09\x09on: Error\x0a\x09\x09do: [ :ex |\x0a\x09\x09\x09self input asJQuery \x0a\x09\x09\x09\x09one: 'keydown' \x0a\x09\x09\x09\x09do: [ self clearStatus ].\x0a\x09\x09\x09self message: ex messageText.\x0a\x09\x09\x09self errorStatus ]",
  749. messageSends: ["on:do:", "value:", "callback", "one:do:", "asJQuery", "input", "clearStatus", "message:", "messageText", "errorStatus"],
  750. referencedClasses: ["Error"]
  751. }),
  752. globals.HLBindingActionInputWidget);
  753. smalltalk.addMethod(
  754. smalltalk.method({
  755. selector: "ghostText",
  756. protocol: 'accessing',
  757. fn: function (){
  758. var self=this;
  759. var $1;
  760. $1=self["@ghostText"];
  761. return $1;
  762. },
  763. args: [],
  764. source: "ghostText\x0a\x09^ ghostText",
  765. messageSends: [],
  766. referencedClasses: []
  767. }),
  768. globals.HLBindingActionInputWidget);
  769. smalltalk.addMethod(
  770. smalltalk.method({
  771. selector: "ghostText:",
  772. protocol: 'accessing',
  773. fn: function (aText){
  774. var self=this;
  775. self["@ghostText"]=aText;
  776. return self},
  777. args: ["aText"],
  778. source: "ghostText: aText\x0a\x09ghostText := aText",
  779. messageSends: [],
  780. referencedClasses: []
  781. }),
  782. globals.HLBindingActionInputWidget);
  783. smalltalk.addMethod(
  784. smalltalk.method({
  785. selector: "input",
  786. protocol: 'accessing',
  787. fn: function (){
  788. var self=this;
  789. var $1;
  790. $1=self["@input"];
  791. return $1;
  792. },
  793. args: [],
  794. source: "input\x0a\x09^ input",
  795. messageSends: [],
  796. referencedClasses: []
  797. }),
  798. globals.HLBindingActionInputWidget);
  799. smalltalk.addMethod(
  800. smalltalk.method({
  801. selector: "inputCompletion",
  802. protocol: 'accessing',
  803. fn: function (){
  804. var self=this;
  805. return smalltalk.withContext(function($ctx1) {
  806. var $2,$1;
  807. $2=self["@inputCompletion"];
  808. if(($receiver = $2) == nil || $receiver == null){
  809. $1=[];
  810. } else {
  811. $1=$2;
  812. };
  813. return $1;
  814. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},globals.HLBindingActionInputWidget)})},
  815. args: [],
  816. source: "inputCompletion\x0a\x09^ inputCompletion ifNil: [ #() ]",
  817. messageSends: ["ifNil:"],
  818. referencedClasses: []
  819. }),
  820. globals.HLBindingActionInputWidget);
  821. smalltalk.addMethod(
  822. smalltalk.method({
  823. selector: "inputCompletion:",
  824. protocol: 'accessing',
  825. fn: function (aCollection){
  826. var self=this;
  827. self["@inputCompletion"]=aCollection;
  828. return self},
  829. args: ["aCollection"],
  830. source: "inputCompletion: aCollection\x0a\x09inputCompletion := aCollection",
  831. messageSends: [],
  832. referencedClasses: []
  833. }),
  834. globals.HLBindingActionInputWidget);
  835. smalltalk.addMethod(
  836. smalltalk.method({
  837. selector: "message",
  838. protocol: 'accessing',
  839. fn: function (){
  840. var self=this;
  841. return smalltalk.withContext(function($ctx1) {
  842. var $2,$1;
  843. $2=self["@message"];
  844. if(($receiver = $2) == nil || $receiver == null){
  845. self["@message"]="";
  846. $1=self["@message"];
  847. } else {
  848. $1=$2;
  849. };
  850. return $1;
  851. }, function($ctx1) {$ctx1.fill(self,"message",{},globals.HLBindingActionInputWidget)})},
  852. args: [],
  853. source: "message\x0a\x09^ message ifNil: [ message := '' ]",
  854. messageSends: ["ifNil:"],
  855. referencedClasses: []
  856. }),
  857. globals.HLBindingActionInputWidget);
  858. smalltalk.addMethod(
  859. smalltalk.method({
  860. selector: "message:",
  861. protocol: 'accessing',
  862. fn: function (aString){
  863. var self=this;
  864. self["@message"]=aString;
  865. return self},
  866. args: ["aString"],
  867. source: "message: aString\x0a\x09message := aString",
  868. messageSends: [],
  869. referencedClasses: []
  870. }),
  871. globals.HLBindingActionInputWidget);
  872. smalltalk.addMethod(
  873. smalltalk.method({
  874. selector: "refresh",
  875. protocol: 'actions',
  876. fn: function (){
  877. var self=this;
  878. return smalltalk.withContext(function($ctx1) {
  879. var $1;
  880. $1=self["@wrapper"];
  881. if(($receiver = $1) == nil || $receiver == null){
  882. return self;
  883. } else {
  884. $1;
  885. };
  886. _st(self["@wrapper"])._class_(self._status());
  887. _st(self["@messageTag"])._contents_(self._message());
  888. return self}, function($ctx1) {$ctx1.fill(self,"refresh",{},globals.HLBindingActionInputWidget)})},
  889. args: [],
  890. source: "refresh\x0a\x09wrapper ifNil: [ ^ self ].\x0a \x0a\x09wrapper class: self status.\x0a\x09messageTag contents: self message",
  891. messageSends: ["ifNil:", "class:", "status", "contents:", "message"],
  892. referencedClasses: []
  893. }),
  894. globals.HLBindingActionInputWidget);
  895. smalltalk.addMethod(
  896. smalltalk.method({
  897. selector: "renderOn:",
  898. protocol: 'rendering',
  899. fn: function (html){
  900. var self=this;
  901. return smalltalk.withContext(function($ctx1) {
  902. var $1,$2,$4,$6,$8,$10,$9,$7,$5,$11,$12,$13,$3,$14,$15;
  903. $1=self["@wrapper"];
  904. if(($receiver = $1) == nil || $receiver == null){
  905. self["@wrapper"]=_st(html)._span();
  906. $ctx1.sendIdx["span"]=1;
  907. self["@wrapper"];
  908. } else {
  909. $1;
  910. };
  911. $2=self["@wrapper"];
  912. _st($2)._class_(self._status());
  913. $ctx1.sendIdx["class:"]=1;
  914. $3=_st($2)._with_((function(){
  915. return smalltalk.withContext(function($ctx2) {
  916. $4=_st(html)._input();
  917. _st($4)._placeholder_(self._ghostText());
  918. _st($4)._value_(self._defaultValue());
  919. $6=$4;
  920. $7=_st((function(event){
  921. return smalltalk.withContext(function($ctx3) {
  922. $8=_st(_st(event)._which()).__eq((13));
  923. if(smalltalk.assert($8)){
  924. $10=_st(self["@input"])._asJQuery();
  925. $ctx3.sendIdx["asJQuery"]=1;
  926. $9=_st($10)._val();
  927. return self._evaluate_($9);
  928. };
  929. }, function($ctx3) {$ctx3.fillBlock({event:event},$ctx2,3)})}))._yourself();
  930. $ctx2.sendIdx["yourself"]=1;
  931. $5=_st($6)._onKeyDown_($7);
  932. self["@input"]=$5;
  933. self["@input"];
  934. $11=_st(self["@input"])._asJQuery();
  935. $ctx2.sendIdx["asJQuery"]=2;
  936. _st($11)._typeahead_(globals.HashedCollection._newFromPairs_(["source",self._inputCompletion()]));
  937. $12=_st(html)._span();
  938. _st($12)._class_("help-inline");
  939. _st($12)._with_(self._message());
  940. $13=_st($12)._yourself();
  941. self["@messageTag"]=$13;
  942. return self["@messageTag"];
  943. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  944. $ctx1.sendIdx["with:"]=1;
  945. _st((function(){
  946. return smalltalk.withContext(function($ctx2) {
  947. $14=_st(self["@input"])._asJQuery();
  948. _st($14)._focus();
  949. $15=_st($14)._select();
  950. return $15;
  951. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})}))._valueWithTimeout_((10));
  952. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},globals.HLBindingActionInputWidget)})},
  953. args: ["html"],
  954. source: "renderOn: html\x0a\x09wrapper ifNil: [ wrapper := html span ].\x0a\x0a\x09wrapper \x0a\x09\x09class: self status;\x0a\x09\x09with: [\x0a\x09\x09\x09input := html input\x0a\x09\x09\x09\x09placeholder: self ghostText;\x0a\x09\x09\x09\x09value: self defaultValue;\x0a\x09\x09\x09\x09onKeyDown: [ :event | \x0a\x09\x09\x09\x09\x09event which = 13 ifTrue: [\x0a\x09\x09\x09\x09\x09\x09self evaluate: input asJQuery val ] ]\x0a\x09\x09\x09\x09yourself.\x0a\x09\x09\x09input asJQuery \x0a\x09\x09\x09\x09typeahead: #{ 'source' -> self inputCompletion }.\x0a\x09\x09\x09messageTag := (html span\x0a\x09\x09\x09\x09class: 'help-inline';\x0a\x09\x09\x09\x09with: self message;\x0a\x09\x09\x09\x09yourself) ].\x0a\x09\x0a\x09\x22Evaluate with a timeout to ensure focus.\x0a\x09Commands can be executed from a menu, clicking on the menu to\x0a\x09evaluate the command would give it the focus otherwise\x22\x0a\x09\x0a\x09[ input asJQuery focus; select ] valueWithTimeout: 10",
  955. messageSends: ["ifNil:", "span", "class:", "status", "with:", "placeholder:", "input", "ghostText", "value:", "defaultValue", "onKeyDown:", "yourself", "ifTrue:", "=", "which", "evaluate:", "val", "asJQuery", "typeahead:", "inputCompletion", "message", "valueWithTimeout:", "focus", "select"],
  956. referencedClasses: []
  957. }),
  958. globals.HLBindingActionInputWidget);
  959. smalltalk.addMethod(
  960. smalltalk.method({
  961. selector: "status",
  962. protocol: 'accessing',
  963. fn: function (){
  964. var self=this;
  965. return smalltalk.withContext(function($ctx1) {
  966. var $2,$1;
  967. $2=self["@status"];
  968. if(($receiver = $2) == nil || $receiver == null){
  969. self["@status"]="info";
  970. $1=self["@status"];
  971. } else {
  972. $1=$2;
  973. };
  974. return $1;
  975. }, function($ctx1) {$ctx1.fill(self,"status",{},globals.HLBindingActionInputWidget)})},
  976. args: [],
  977. source: "status\x0a\x09^ status ifNil: [ status := 'info' ]",
  978. messageSends: ["ifNil:"],
  979. referencedClasses: []
  980. }),
  981. globals.HLBindingActionInputWidget);
  982. smalltalk.addMethod(
  983. smalltalk.method({
  984. selector: "status:",
  985. protocol: 'accessing',
  986. fn: function (aStatus){
  987. var self=this;
  988. self["@status"]=aStatus;
  989. return self},
  990. args: ["aStatus"],
  991. source: "status: aStatus\x0a\x09status := aStatus",
  992. messageSends: [],
  993. referencedClasses: []
  994. }),
  995. globals.HLBindingActionInputWidget);
  996. smalltalk.addClass('HLKeyBinder', globals.Object, ['modifierKey', 'helper', 'bindings', 'selectedBinding'], 'Helios-KeyBindings');
  997. globals.HLKeyBinder.comment="My `current` instance holds keybindings for Helios actions and evaluate them.\x0a\x0aBindings can be nested by groups. The `bindings` instance variable holds the root of the key bindings tree.\x0a\x0aBindings are instances of a concrete subclass of `HLBinding`.\x0a\x0aI am always either in 'active' or 'inactive' state. In active state I capture key down events and my `helper` widget is displayed at the bottom of the window. My `selectedBinding`, if any, is displayed by the helper.\x0a\x0aBindings are evaluated through `applyBinding:`. If a binding is final (not a group of other bindings), evaluating it will result in deactivating the binder, and hiding the `helper` widget.";
  998. smalltalk.addMethod(
  999. smalltalk.method({
  1000. selector: "activate",
  1001. protocol: 'actions',
  1002. fn: function (){
  1003. var self=this;
  1004. return smalltalk.withContext(function($ctx1) {
  1005. _st(self._helper())._show();
  1006. return self}, function($ctx1) {$ctx1.fill(self,"activate",{},globals.HLKeyBinder)})},
  1007. args: [],
  1008. source: "activate\x0a\x09self helper show",
  1009. messageSends: ["show", "helper"],
  1010. referencedClasses: []
  1011. }),
  1012. globals.HLKeyBinder);
  1013. smalltalk.addMethod(
  1014. smalltalk.method({
  1015. selector: "activationKey",
  1016. protocol: 'accessing',
  1017. fn: function (){
  1018. var self=this;
  1019. return (32);
  1020. },
  1021. args: [],
  1022. source: "activationKey\x0a\x09\x22SPACE\x22\x0a\x09^ 32",
  1023. messageSends: [],
  1024. referencedClasses: []
  1025. }),
  1026. globals.HLKeyBinder);
  1027. smalltalk.addMethod(
  1028. smalltalk.method({
  1029. selector: "activationKeyLabel",
  1030. protocol: 'accessing',
  1031. fn: function (){
  1032. var self=this;
  1033. return "ctrl + space";
  1034. },
  1035. args: [],
  1036. source: "activationKeyLabel\x0a\x09^ 'ctrl + space'",
  1037. messageSends: [],
  1038. referencedClasses: []
  1039. }),
  1040. globals.HLKeyBinder);
  1041. smalltalk.addMethod(
  1042. smalltalk.method({
  1043. selector: "applyBinding:",
  1044. protocol: 'actions',
  1045. fn: function (aBinding){
  1046. var self=this;
  1047. return smalltalk.withContext(function($ctx1) {
  1048. var $1;
  1049. $1=_st(aBinding)._isActive();
  1050. if(! smalltalk.assert($1)){
  1051. return self;
  1052. };
  1053. self._selectBinding_(aBinding);
  1054. _st(aBinding)._apply();
  1055. return self}, function($ctx1) {$ctx1.fill(self,"applyBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1056. args: ["aBinding"],
  1057. source: "applyBinding: aBinding\x0a\x09aBinding isActive ifFalse: [ ^ self ].\x0a\x09\x0a\x09self selectBinding: aBinding.\x0a aBinding apply",
  1058. messageSends: ["ifFalse:", "isActive", "selectBinding:", "apply"],
  1059. referencedClasses: []
  1060. }),
  1061. globals.HLKeyBinder);
  1062. smalltalk.addMethod(
  1063. smalltalk.method({
  1064. selector: "bindings",
  1065. protocol: 'accessing',
  1066. fn: function (){
  1067. var self=this;
  1068. return smalltalk.withContext(function($ctx1) {
  1069. var $2,$1;
  1070. $2=self["@bindings"];
  1071. if(($receiver = $2) == nil || $receiver == null){
  1072. self["@bindings"]=self._defaultBindings();
  1073. $1=self["@bindings"];
  1074. } else {
  1075. $1=$2;
  1076. };
  1077. return $1;
  1078. }, function($ctx1) {$ctx1.fill(self,"bindings",{},globals.HLKeyBinder)})},
  1079. args: [],
  1080. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := self defaultBindings ]",
  1081. messageSends: ["ifNil:", "defaultBindings"],
  1082. referencedClasses: []
  1083. }),
  1084. globals.HLKeyBinder);
  1085. smalltalk.addMethod(
  1086. smalltalk.method({
  1087. selector: "deactivate",
  1088. protocol: 'actions',
  1089. fn: function (){
  1090. var self=this;
  1091. return smalltalk.withContext(function($ctx1) {
  1092. var $1;
  1093. $1=self["@selectedBinding"];
  1094. if(($receiver = $1) == nil || $receiver == null){
  1095. $1;
  1096. } else {
  1097. _st(self["@selectedBinding"])._release();
  1098. };
  1099. self["@selectedBinding"]=nil;
  1100. _st(self._helper())._hide();
  1101. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinder)})},
  1102. args: [],
  1103. source: "deactivate\x0a\x09selectedBinding ifNotNil: [ selectedBinding release ].\x0a selectedBinding := nil.\x0a\x09self helper hide",
  1104. messageSends: ["ifNotNil:", "release", "hide", "helper"],
  1105. referencedClasses: []
  1106. }),
  1107. globals.HLKeyBinder);
  1108. smalltalk.addMethod(
  1109. smalltalk.method({
  1110. selector: "defaultBindings",
  1111. protocol: 'defaults',
  1112. fn: function (){
  1113. var self=this;
  1114. var group;
  1115. function $HLBindingGroup(){return globals.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
  1116. function $HLCloseTabCommand(){return globals.HLCloseTabCommand||(typeof HLCloseTabCommand=="undefined"?nil:HLCloseTabCommand)}
  1117. function $HLSwitchTabCommand(){return globals.HLSwitchTabCommand||(typeof HLSwitchTabCommand=="undefined"?nil:HLSwitchTabCommand)}
  1118. function $HLOpenCommand(){return globals.HLOpenCommand||(typeof HLOpenCommand=="undefined"?nil:HLOpenCommand)}
  1119. return smalltalk.withContext(function($ctx1) {
  1120. var $1,$2,$4,$3,$5,$6;
  1121. $1=_st($HLBindingGroup())._new();
  1122. $ctx1.sendIdx["new"]=1;
  1123. $2=$1;
  1124. $4=_st($HLCloseTabCommand())._new();
  1125. $ctx1.sendIdx["new"]=2;
  1126. $3=_st($4)._asBinding();
  1127. $ctx1.sendIdx["asBinding"]=1;
  1128. _st($2)._add_($3);
  1129. $ctx1.sendIdx["add:"]=1;
  1130. _st($1)._add_(_st(_st($HLSwitchTabCommand())._new())._asBinding());
  1131. $5=_st($1)._yourself();
  1132. group=$5;
  1133. _st($HLOpenCommand())._registerConcreteClassesOn_(group);
  1134. $6=group;
  1135. return $6;
  1136. }, function($ctx1) {$ctx1.fill(self,"defaultBindings",{group:group},globals.HLKeyBinder)})},
  1137. args: [],
  1138. source: "defaultBindings\x0a\x09| group |\x0a\x09\x0a\x09group := HLBindingGroup new\x0a\x09\x09add: HLCloseTabCommand new asBinding;\x0a\x09\x09add: HLSwitchTabCommand new asBinding;\x0a\x09\x09yourself.\x0a\x09\x09\x0a\x09HLOpenCommand registerConcreteClassesOn: group.\x0a\x09\x09\x09\x09\x0a\x09^ group",
  1139. messageSends: ["add:", "new", "asBinding", "yourself", "registerConcreteClassesOn:"],
  1140. referencedClasses: ["HLBindingGroup", "HLCloseTabCommand", "HLSwitchTabCommand", "HLOpenCommand"]
  1141. }),
  1142. globals.HLKeyBinder);
  1143. smalltalk.addMethod(
  1144. smalltalk.method({
  1145. selector: "escapeKey",
  1146. protocol: 'accessing',
  1147. fn: function (){
  1148. var self=this;
  1149. return (27);
  1150. },
  1151. args: [],
  1152. source: "escapeKey\x0a\x09\x22ESC\x22\x0a\x09^ 27",
  1153. messageSends: [],
  1154. referencedClasses: []
  1155. }),
  1156. globals.HLKeyBinder);
  1157. smalltalk.addMethod(
  1158. smalltalk.method({
  1159. selector: "flushBindings",
  1160. protocol: 'actions',
  1161. fn: function (){
  1162. var self=this;
  1163. self["@bindings"]=nil;
  1164. return self},
  1165. args: [],
  1166. source: "flushBindings\x0a\x09bindings := nil",
  1167. messageSends: [],
  1168. referencedClasses: []
  1169. }),
  1170. globals.HLKeyBinder);
  1171. smalltalk.addMethod(
  1172. smalltalk.method({
  1173. selector: "handleActiveKeyDown:",
  1174. protocol: 'events',
  1175. fn: function (event){
  1176. var self=this;
  1177. return smalltalk.withContext(function($ctx1) {
  1178. var $3,$2,$6,$5,$4,$1,$7;
  1179. $3=_st(event)._which();
  1180. $ctx1.sendIdx["which"]=1;
  1181. $2=_st($3).__eq(self._escapeKey());
  1182. $ctx1.sendIdx["="]=1;
  1183. $1=_st($2)._or_((function(){
  1184. return smalltalk.withContext(function($ctx2) {
  1185. $6=_st(event)._which();
  1186. $ctx2.sendIdx["which"]=2;
  1187. $5=_st($6).__eq((71));
  1188. $ctx2.sendIdx["="]=2;
  1189. $4=_st($5)._or_((function(){
  1190. return smalltalk.withContext(function($ctx3) {
  1191. return _st(_st(event)._which()).__eq(self._activationKey());
  1192. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1193. return _st($4)._and_((function(){
  1194. return smalltalk.withContext(function($ctx3) {
  1195. return _st(event)._ctrlKey();
  1196. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1197. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1198. $ctx1.sendIdx["or:"]=1;
  1199. if(smalltalk.assert($1)){
  1200. self._deactivate();
  1201. _st(event)._preventDefault();
  1202. return false;
  1203. };
  1204. $7=self._handleBindingFor_(event);
  1205. return $7;
  1206. }, function($ctx1) {$ctx1.fill(self,"handleActiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1207. args: ["event"],
  1208. source: "handleActiveKeyDown: event\x0a\x0a\x09\x22ESC, ctrl+g ctrl+space deactivate the keyBinder\x22\x0a\x09(event which = self escapeKey or: [\x0a\x09\x09(event which = 71 or: [ event which = self activationKey ]) \x0a\x09\x09\x09and: [ event ctrlKey ] ])\x0a \x09\x09ifTrue: [ \x0a \x09\x09\x09self deactivate.\x0a\x09\x09\x09\x09\x09event preventDefault.\x0a\x09\x09\x09\x09\x09^ false ].\x0a \x0a \x22Handle the keybinding\x22\x0a ^ self handleBindingFor: event",
  1209. messageSends: ["ifTrue:", "or:", "=", "which", "escapeKey", "and:", "activationKey", "ctrlKey", "deactivate", "preventDefault", "handleBindingFor:"],
  1210. referencedClasses: []
  1211. }),
  1212. globals.HLKeyBinder);
  1213. smalltalk.addMethod(
  1214. smalltalk.method({
  1215. selector: "handleBindingFor:",
  1216. protocol: 'events',
  1217. fn: function (anEvent){
  1218. var self=this;
  1219. var binding;
  1220. return smalltalk.withContext(function($ctx1) {
  1221. var $1;
  1222. binding=_st(self._selectedBinding())._atKey_(_st(anEvent)._which());
  1223. $1=binding;
  1224. if(($receiver = $1) == nil || $receiver == null){
  1225. $1;
  1226. } else {
  1227. self._applyBinding_(binding);
  1228. _st(anEvent)._preventDefault();
  1229. return false;
  1230. };
  1231. return self}, function($ctx1) {$ctx1.fill(self,"handleBindingFor:",{anEvent:anEvent,binding:binding},globals.HLKeyBinder)})},
  1232. args: ["anEvent"],
  1233. source: "handleBindingFor: anEvent\x0a\x09| binding |\x0a binding := self selectedBinding atKey: anEvent which.\x0a \x0a binding ifNotNil: [ \x0a \x09self applyBinding: binding.\x0a\x09\x09anEvent preventDefault.\x0a\x09\x09^ false ]",
  1234. messageSends: ["atKey:", "selectedBinding", "which", "ifNotNil:", "applyBinding:", "preventDefault"],
  1235. referencedClasses: []
  1236. }),
  1237. globals.HLKeyBinder);
  1238. smalltalk.addMethod(
  1239. smalltalk.method({
  1240. selector: "handleInactiveKeyDown:",
  1241. protocol: 'events',
  1242. fn: function (event){
  1243. var self=this;
  1244. return smalltalk.withContext(function($ctx1) {
  1245. var $1,$2;
  1246. $1=_st(_st(event)._which()).__eq(self._activationKey());
  1247. if(smalltalk.assert($1)){
  1248. $2=_st(event)._ctrlKey();
  1249. if(smalltalk.assert($2)){
  1250. self._activate();
  1251. _st(event)._preventDefault();
  1252. return false;
  1253. };
  1254. };
  1255. return self}, function($ctx1) {$ctx1.fill(self,"handleInactiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1256. args: ["event"],
  1257. source: "handleInactiveKeyDown: event\x0a\x09event which = self activationKey ifTrue: [\x0a \x09event ctrlKey ifTrue: [\x0a\x09\x09\x09self activate. \x0a event preventDefault. \x0a ^ false ] ]",
  1258. messageSends: ["ifTrue:", "=", "which", "activationKey", "ctrlKey", "activate", "preventDefault"],
  1259. referencedClasses: []
  1260. }),
  1261. globals.HLKeyBinder);
  1262. smalltalk.addMethod(
  1263. smalltalk.method({
  1264. selector: "handleKeyDown:",
  1265. protocol: 'events',
  1266. fn: function (event){
  1267. var self=this;
  1268. return smalltalk.withContext(function($ctx1) {
  1269. var $2,$1;
  1270. $2=self._isActive();
  1271. if(smalltalk.assert($2)){
  1272. $1=self._handleActiveKeyDown_(event);
  1273. } else {
  1274. $1=self._handleInactiveKeyDown_(event);
  1275. };
  1276. return $1;
  1277. }, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{event:event},globals.HLKeyBinder)})},
  1278. args: ["event"],
  1279. source: "handleKeyDown: event\x0a\x09^ self isActive\x0a \x09ifTrue: [ self handleActiveKeyDown: event ]\x0a \x09ifFalse: [ self handleInactiveKeyDown: event ]",
  1280. messageSends: ["ifTrue:ifFalse:", "isActive", "handleActiveKeyDown:", "handleInactiveKeyDown:"],
  1281. referencedClasses: []
  1282. }),
  1283. globals.HLKeyBinder);
  1284. smalltalk.addMethod(
  1285. smalltalk.method({
  1286. selector: "helper",
  1287. protocol: 'accessing',
  1288. fn: function (){
  1289. var self=this;
  1290. var $1;
  1291. $1=self["@helper"];
  1292. return $1;
  1293. },
  1294. args: [],
  1295. source: "helper\x0a\x09^ helper",
  1296. messageSends: [],
  1297. referencedClasses: []
  1298. }),
  1299. globals.HLKeyBinder);
  1300. smalltalk.addMethod(
  1301. smalltalk.method({
  1302. selector: "initialize",
  1303. protocol: 'initialization',
  1304. fn: function (){
  1305. var self=this;
  1306. function $HLKeyBinderHelperWidget(){return globals.HLKeyBinderHelperWidget||(typeof HLKeyBinderHelperWidget=="undefined"?nil:HLKeyBinderHelperWidget)}
  1307. return smalltalk.withContext(function($ctx1) {
  1308. globals.HLKeyBinder.superclass.fn.prototype._initialize.apply(_st(self), []);
  1309. self["@helper"]=_st($HLKeyBinderHelperWidget())._on_(self);
  1310. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLKeyBinder)})},
  1311. args: [],
  1312. source: "initialize\x0a\x09super initialize.\x0a\x09helper := HLKeyBinderHelperWidget on: self",
  1313. messageSends: ["initialize", "on:"],
  1314. referencedClasses: ["HLKeyBinderHelperWidget"]
  1315. }),
  1316. globals.HLKeyBinder);
  1317. smalltalk.addMethod(
  1318. smalltalk.method({
  1319. selector: "isActive",
  1320. protocol: 'testing',
  1321. fn: function (){
  1322. var self=this;
  1323. return smalltalk.withContext(function($ctx1) {
  1324. var $1;
  1325. $1=_st(_st(".".__comma(_st(self._helper())._cssClass()))._asJQuery())._is_(":visible");
  1326. return $1;
  1327. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLKeyBinder)})},
  1328. args: [],
  1329. source: "isActive\x0a\x09^ ('.', self helper cssClass) asJQuery is: ':visible'",
  1330. messageSends: ["is:", "asJQuery", ",", "cssClass", "helper"],
  1331. referencedClasses: []
  1332. }),
  1333. globals.HLKeyBinder);
  1334. smalltalk.addMethod(
  1335. smalltalk.method({
  1336. selector: "selectBinding:",
  1337. protocol: 'actions',
  1338. fn: function (aBinding){
  1339. var self=this;
  1340. return smalltalk.withContext(function($ctx1) {
  1341. var $1;
  1342. $1=_st(aBinding).__eq(self["@selectedBinding"]);
  1343. if(smalltalk.assert($1)){
  1344. return self;
  1345. };
  1346. self["@selectedBinding"]=aBinding;
  1347. _st(self._helper())._refresh();
  1348. return self}, function($ctx1) {$ctx1.fill(self,"selectBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1349. args: ["aBinding"],
  1350. source: "selectBinding: aBinding\x0a\x09aBinding = selectedBinding ifTrue: [ ^ self ].\x0a\x09\x0a\x09selectedBinding := aBinding.\x0a\x09self helper refresh",
  1351. messageSends: ["ifTrue:", "=", "refresh", "helper"],
  1352. referencedClasses: []
  1353. }),
  1354. globals.HLKeyBinder);
  1355. smalltalk.addMethod(
  1356. smalltalk.method({
  1357. selector: "selectedBinding",
  1358. protocol: 'accessing',
  1359. fn: function (){
  1360. var self=this;
  1361. return smalltalk.withContext(function($ctx1) {
  1362. var $2,$1;
  1363. $2=self["@selectedBinding"];
  1364. if(($receiver = $2) == nil || $receiver == null){
  1365. $1=self._bindings();
  1366. } else {
  1367. $1=$2;
  1368. };
  1369. return $1;
  1370. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinder)})},
  1371. args: [],
  1372. source: "selectedBinding\x0a\x09^ selectedBinding ifNil: [ self bindings ]",
  1373. messageSends: ["ifNil:", "bindings"],
  1374. referencedClasses: []
  1375. }),
  1376. globals.HLKeyBinder);
  1377. smalltalk.addMethod(
  1378. smalltalk.method({
  1379. selector: "setupEvents",
  1380. protocol: 'events',
  1381. fn: function (){
  1382. var self=this;
  1383. return smalltalk.withContext(function($ctx1) {
  1384. _st("body"._asJQuery())._keydown_((function(event){
  1385. return smalltalk.withContext(function($ctx2) {
  1386. return self._handleKeyDown_(event);
  1387. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,1)})}));
  1388. return self}, function($ctx1) {$ctx1.fill(self,"setupEvents",{},globals.HLKeyBinder)})},
  1389. args: [],
  1390. source: "setupEvents\x0a\x09'body' asJQuery keydown: [ :event | self handleKeyDown: event ]",
  1391. messageSends: ["keydown:", "asJQuery", "handleKeyDown:"],
  1392. referencedClasses: []
  1393. }),
  1394. globals.HLKeyBinder);
  1395. smalltalk.addMethod(
  1396. smalltalk.method({
  1397. selector: "setupHelper",
  1398. protocol: 'initialization',
  1399. fn: function (){
  1400. var self=this;
  1401. return smalltalk.withContext(function($ctx1) {
  1402. var $1,$2;
  1403. $1=self["@helper"];
  1404. _st($1)._renderStart();
  1405. $2=_st($1)._renderCog();
  1406. return self}, function($ctx1) {$ctx1.fill(self,"setupHelper",{},globals.HLKeyBinder)})},
  1407. args: [],
  1408. source: "setupHelper\x0a\x09helper \x09\x0a\x09\x09renderStart;\x0a\x09\x09renderCog",
  1409. messageSends: ["renderStart", "renderCog"],
  1410. referencedClasses: []
  1411. }),
  1412. globals.HLKeyBinder);
  1413. smalltalk.addMethod(
  1414. smalltalk.method({
  1415. selector: "systemIsMac",
  1416. protocol: 'testing',
  1417. fn: function (){
  1418. var self=this;
  1419. return smalltalk.withContext(function($ctx1) {
  1420. var $1;
  1421. $1=_st(_st(navigator)._platform())._match_("Mac");
  1422. return $1;
  1423. }, function($ctx1) {$ctx1.fill(self,"systemIsMac",{},globals.HLKeyBinder)})},
  1424. args: [],
  1425. source: "systemIsMac\x0a\x09^ navigator platform match: 'Mac'",
  1426. messageSends: ["match:", "platform"],
  1427. referencedClasses: []
  1428. }),
  1429. globals.HLKeyBinder);
  1430. globals.HLKeyBinder.klass.iVarNames = ['current'];
  1431. smalltalk.addMethod(
  1432. smalltalk.method({
  1433. selector: "current",
  1434. protocol: 'instance creation',
  1435. fn: function (){
  1436. var self=this;
  1437. return smalltalk.withContext(function($ctx1) {
  1438. var $2,$1;
  1439. $2=self["@current"];
  1440. if(($receiver = $2) == nil || $receiver == null){
  1441. self["@current"]=globals.HLKeyBinder.klass.superclass.fn.prototype._new.apply(_st(self), []);
  1442. $1=self["@current"];
  1443. } else {
  1444. $1=$2;
  1445. };
  1446. return $1;
  1447. }, function($ctx1) {$ctx1.fill(self,"current",{},globals.HLKeyBinder.klass)})},
  1448. args: [],
  1449. source: "current\x0a\x09^ current ifNil: [ current := super new ]",
  1450. messageSends: ["ifNil:", "new"],
  1451. referencedClasses: []
  1452. }),
  1453. globals.HLKeyBinder.klass);
  1454. smalltalk.addMethod(
  1455. smalltalk.method({
  1456. selector: "new",
  1457. protocol: 'instance creation',
  1458. fn: function (){
  1459. var self=this;
  1460. return smalltalk.withContext(function($ctx1) {
  1461. self._shouldNotImplement();
  1462. return self}, function($ctx1) {$ctx1.fill(self,"new",{},globals.HLKeyBinder.klass)})},
  1463. args: [],
  1464. source: "new\x0a\x09self shouldNotImplement",
  1465. messageSends: ["shouldNotImplement"],
  1466. referencedClasses: []
  1467. }),
  1468. globals.HLKeyBinder.klass);
  1469. smalltalk.addClass('HLKeyBinderHelperWidget', globals.HLWidget, ['keyBinder'], 'Helios-KeyBindings');
  1470. globals.HLKeyBinderHelperWidget.comment="I am the widget responsible for displaying active keybindings in a bar at the bottom of the window. Each keybinding is an instance of `HLBinding`. \x0a\x0aRendering is done through a double dispatch, see `#renderSelectedBindingOn:`.";
  1471. smalltalk.addMethod(
  1472. smalltalk.method({
  1473. selector: "cssClass",
  1474. protocol: 'accessing',
  1475. fn: function (){
  1476. var self=this;
  1477. return "key_helper";
  1478. },
  1479. args: [],
  1480. source: "cssClass\x0a\x09^ 'key_helper'",
  1481. messageSends: [],
  1482. referencedClasses: []
  1483. }),
  1484. globals.HLKeyBinderHelperWidget);
  1485. smalltalk.addMethod(
  1486. smalltalk.method({
  1487. selector: "deactivate",
  1488. protocol: 'actions',
  1489. fn: function (){
  1490. var self=this;
  1491. return smalltalk.withContext(function($ctx1) {
  1492. _st(self._keyBinder())._deactivate();
  1493. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinderHelperWidget)})},
  1494. args: [],
  1495. source: "deactivate\x0a\x09self keyBinder deactivate",
  1496. messageSends: ["deactivate", "keyBinder"],
  1497. referencedClasses: []
  1498. }),
  1499. globals.HLKeyBinderHelperWidget);
  1500. smalltalk.addMethod(
  1501. smalltalk.method({
  1502. selector: "hide",
  1503. protocol: 'actions',
  1504. fn: function (){
  1505. var self=this;
  1506. return smalltalk.withContext(function($ctx1) {
  1507. var $1;
  1508. $1=_st(".".__comma(self._cssClass()))._asJQuery();
  1509. $ctx1.sendIdx["asJQuery"]=1;
  1510. _st($1)._remove();
  1511. $ctx1.sendIdx["remove"]=1;
  1512. _st(".helper_overlay"._asJQuery())._remove();
  1513. self._showCog();
  1514. return self}, function($ctx1) {$ctx1.fill(self,"hide",{},globals.HLKeyBinderHelperWidget)})},
  1515. args: [],
  1516. source: "hide\x0a\x09('.', self cssClass) asJQuery remove.\x0a\x09'.helper_overlay' asJQuery remove.\x0a\x09self showCog",
  1517. messageSends: ["remove", "asJQuery", ",", "cssClass", "showCog"],
  1518. referencedClasses: []
  1519. }),
  1520. globals.HLKeyBinderHelperWidget);
  1521. smalltalk.addMethod(
  1522. smalltalk.method({
  1523. selector: "hideCog",
  1524. protocol: 'actions',
  1525. fn: function (){
  1526. var self=this;
  1527. return smalltalk.withContext(function($ctx1) {
  1528. _st("#cog-helper"._asJQuery())._hide();
  1529. return self}, function($ctx1) {$ctx1.fill(self,"hideCog",{},globals.HLKeyBinderHelperWidget)})},
  1530. args: [],
  1531. source: "hideCog\x0a\x09'#cog-helper' asJQuery hide",
  1532. messageSends: ["hide", "asJQuery"],
  1533. referencedClasses: []
  1534. }),
  1535. globals.HLKeyBinderHelperWidget);
  1536. smalltalk.addMethod(
  1537. smalltalk.method({
  1538. selector: "keyBinder",
  1539. protocol: 'accessing',
  1540. fn: function (){
  1541. var self=this;
  1542. var $1;
  1543. $1=self["@keyBinder"];
  1544. return $1;
  1545. },
  1546. args: [],
  1547. source: "keyBinder\x0a\x09^ keyBinder",
  1548. messageSends: [],
  1549. referencedClasses: []
  1550. }),
  1551. globals.HLKeyBinderHelperWidget);
  1552. smalltalk.addMethod(
  1553. smalltalk.method({
  1554. selector: "keyBinder:",
  1555. protocol: 'accessing',
  1556. fn: function (aKeyBinder){
  1557. var self=this;
  1558. self["@keyBinder"]=aKeyBinder;
  1559. return self},
  1560. args: ["aKeyBinder"],
  1561. source: "keyBinder: aKeyBinder\x0a\x09keyBinder := aKeyBinder",
  1562. messageSends: [],
  1563. referencedClasses: []
  1564. }),
  1565. globals.HLKeyBinderHelperWidget);
  1566. smalltalk.addMethod(
  1567. smalltalk.method({
  1568. selector: "mainId",
  1569. protocol: 'accessing',
  1570. fn: function (){
  1571. var self=this;
  1572. return "binding-helper-main";
  1573. },
  1574. args: [],
  1575. source: "mainId\x0a\x09^ 'binding-helper-main'",
  1576. messageSends: [],
  1577. referencedClasses: []
  1578. }),
  1579. globals.HLKeyBinderHelperWidget);
  1580. smalltalk.addMethod(
  1581. smalltalk.method({
  1582. selector: "renderBindingActionFor:on:",
  1583. protocol: 'rendering',
  1584. fn: function (aBinding,html){
  1585. var self=this;
  1586. return smalltalk.withContext(function($ctx1) {
  1587. var $1,$3,$4,$5,$6,$2;
  1588. $1=_st(html)._span();
  1589. _st($1)._class_("command");
  1590. $ctx1.sendIdx["class:"]=1;
  1591. $2=_st($1)._with_((function(){
  1592. return smalltalk.withContext(function($ctx2) {
  1593. $3=_st(html)._strong();
  1594. _st($3)._class_("label");
  1595. $ctx2.sendIdx["class:"]=2;
  1596. $4=_st($3)._with_(_st(_st(aBinding)._shortcut())._asLowercase());
  1597. $ctx2.sendIdx["with:"]=2;
  1598. $4;
  1599. $5=_st(html)._a();
  1600. _st($5)._class_("action");
  1601. _st($5)._with_(_st(aBinding)._displayLabel());
  1602. $6=_st($5)._onClick_((function(){
  1603. return smalltalk.withContext(function($ctx3) {
  1604. return _st(self._keyBinder())._applyBinding_(aBinding);
  1605. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1606. return $6;
  1607. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1608. $ctx1.sendIdx["with:"]=1;
  1609. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingActionFor:on:",{aBinding:aBinding,html:html},globals.HLKeyBinderHelperWidget)})},
  1610. args: ["aBinding", "html"],
  1611. source: "renderBindingActionFor: aBinding on: html\x0a\x09html span class: 'command'; with: [\x0a\x09\x09html strong \x0a\x09\x09\x09class: 'label'; \x0a\x09\x09\x09with: aBinding shortcut asLowercase.\x0a \x09\x09html a \x0a \x09class: 'action'; \x0a with: aBinding displayLabel;\x0a \x09\x09\x09onClick: [ self keyBinder applyBinding: aBinding ] ]",
  1612. messageSends: ["class:", "span", "with:", "strong", "asLowercase", "shortcut", "a", "displayLabel", "onClick:", "applyBinding:", "keyBinder"],
  1613. referencedClasses: []
  1614. }),
  1615. globals.HLKeyBinderHelperWidget);
  1616. smalltalk.addMethod(
  1617. smalltalk.method({
  1618. selector: "renderBindingGroup:on:",
  1619. protocol: 'rendering',
  1620. fn: function (aBindingGroup,html){
  1621. var self=this;
  1622. return smalltalk.withContext(function($ctx1) {
  1623. var $1;
  1624. _st(_st(_st(aBindingGroup)._activeBindings())._sorted_((function(a,b){
  1625. return smalltalk.withContext(function($ctx2) {
  1626. $1=_st(a)._key();
  1627. $ctx2.sendIdx["key"]=1;
  1628. return _st($1).__lt(_st(b)._key());
  1629. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,1)})})))._do_((function(each){
  1630. return smalltalk.withContext(function($ctx2) {
  1631. return self._renderBindingActionFor_on_(each,html);
  1632. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)})}));
  1633. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingGroup:on:",{aBindingGroup:aBindingGroup,html:html},globals.HLKeyBinderHelperWidget)})},
  1634. args: ["aBindingGroup", "html"],
  1635. source: "renderBindingGroup: aBindingGroup on: html\x0a\x09(aBindingGroup activeBindings \x0a \x09sorted: [ :a :b | a key < b key ])\x0a do: [ :each | self renderBindingActionFor: each on: html ]",
  1636. messageSends: ["do:", "sorted:", "activeBindings", "<", "key", "renderBindingActionFor:on:"],
  1637. referencedClasses: []
  1638. }),
  1639. globals.HLKeyBinderHelperWidget);
  1640. smalltalk.addMethod(
  1641. smalltalk.method({
  1642. selector: "renderCloseOn:",
  1643. protocol: 'rendering',
  1644. fn: function (html){
  1645. var self=this;
  1646. return smalltalk.withContext(function($ctx1) {
  1647. var $1,$2;
  1648. $1=_st(html)._a();
  1649. _st($1)._class_("close");
  1650. $ctx1.sendIdx["class:"]=1;
  1651. _st($1)._with_((function(){
  1652. return smalltalk.withContext(function($ctx2) {
  1653. return _st(_st(html)._tag_("i"))._class_("icon-remove");
  1654. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1655. $2=_st($1)._onClick_((function(){
  1656. return smalltalk.withContext(function($ctx2) {
  1657. return _st(self._keyBinder())._deactivate();
  1658. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1659. return self}, function($ctx1) {$ctx1.fill(self,"renderCloseOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1660. args: ["html"],
  1661. source: "renderCloseOn: html\x0a\x09html a\x0a\x09\x09class: 'close';\x0a\x09\x09with: [ (html tag: 'i') class: 'icon-remove' ];\x0a\x09\x09onClick: [ self keyBinder deactivate ]",
  1662. messageSends: ["class:", "a", "with:", "tag:", "onClick:", "deactivate", "keyBinder"],
  1663. referencedClasses: []
  1664. }),
  1665. globals.HLKeyBinderHelperWidget);
  1666. smalltalk.addMethod(
  1667. smalltalk.method({
  1668. selector: "renderCog",
  1669. protocol: 'rendering',
  1670. fn: function (){
  1671. var self=this;
  1672. return smalltalk.withContext(function($ctx1) {
  1673. var $1,$3,$4,$2;
  1674. _st((function(html){
  1675. return smalltalk.withContext(function($ctx2) {
  1676. $1=_st(html)._div();
  1677. _st($1)._id_("cog-helper");
  1678. $2=_st($1)._with_((function(){
  1679. return smalltalk.withContext(function($ctx3) {
  1680. $3=_st(html)._a();
  1681. _st($3)._with_((function(){
  1682. return smalltalk.withContext(function($ctx4) {
  1683. return _st(_st(html)._tag_("i"))._class_("icon-cog");
  1684. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,3)})}));
  1685. $4=_st($3)._onClick_((function(){
  1686. return smalltalk.withContext(function($ctx4) {
  1687. return _st(self._keyBinder())._activate();
  1688. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,4)})}));
  1689. return $4;
  1690. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1691. $ctx2.sendIdx["with:"]=1;
  1692. return $2;
  1693. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})}))._appendToJQuery_("body"._asJQuery());
  1694. return self}, function($ctx1) {$ctx1.fill(self,"renderCog",{},globals.HLKeyBinderHelperWidget)})},
  1695. args: [],
  1696. source: "renderCog\x0a\x09[ :html |\x0a\x09\x09html \x0a\x09\x09\x09div id: 'cog-helper'; \x0a\x09\x09\x09with: [\x0a\x09\x09\x09\x09html a \x0a\x09\x09\x09\x09\x09with: [ (html tag: 'i') class: 'icon-cog' ];\x0a\x09\x09\x09\x09\x09onClick: [ self keyBinder activate ] ] ]\x0a\x09\x09appendToJQuery: 'body' asJQuery",
  1697. messageSends: ["appendToJQuery:", "id:", "div", "with:", "a", "class:", "tag:", "onClick:", "activate", "keyBinder", "asJQuery"],
  1698. referencedClasses: []
  1699. }),
  1700. globals.HLKeyBinderHelperWidget);
  1701. smalltalk.addMethod(
  1702. smalltalk.method({
  1703. selector: "renderContentOn:",
  1704. protocol: 'rendering',
  1705. fn: function (html){
  1706. var self=this;
  1707. return smalltalk.withContext(function($ctx1) {
  1708. var $1,$2,$3,$5,$6,$4;
  1709. $1=_st(html)._div();
  1710. $ctx1.sendIdx["div"]=1;
  1711. _st($1)._id_("overlay");
  1712. $ctx1.sendIdx["id:"]=1;
  1713. _st($1)._class_("helper_overlay");
  1714. $ctx1.sendIdx["class:"]=1;
  1715. $2=_st($1)._onClick_((function(){
  1716. return smalltalk.withContext(function($ctx2) {
  1717. return self._deactivate();
  1718. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1719. $3=_st(html)._div();
  1720. $ctx1.sendIdx["div"]=2;
  1721. _st($3)._class_(self._cssClass());
  1722. $4=_st($3)._with_((function(){
  1723. return smalltalk.withContext(function($ctx2) {
  1724. self._renderLabelOn_(html);
  1725. $5=_st(html)._div();
  1726. _st($5)._id_(self._mainId());
  1727. $6=_st($5)._with_((function(){
  1728. return smalltalk.withContext(function($ctx3) {
  1729. return self._renderSelectedBindingOn_(html);
  1730. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1731. $6;
  1732. return self._renderCloseOn_(html);
  1733. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1734. $ctx1.sendIdx["with:"]=1;
  1735. _st(":focus"._asJQuery())._blur();
  1736. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1737. args: ["html"],
  1738. source: "renderContentOn: html\x0a\x09html div \x0a\x09\x09id: 'overlay';\x0a\x09\x09class: 'helper_overlay';\x0a\x09\x09onClick: [ self deactivate ].\x0a\x09\x0a\x09html div class: self cssClass; with: [\x0a \x09self renderLabelOn: html.\x0a\x09\x09html div\x0a\x09\x09\x09id: self mainId;\x0a\x09\x09\x09with: [ self renderSelectedBindingOn: html ].\x0a\x09\x09self renderCloseOn: html ].\x0a\x09\x09\x0a\x09':focus' asJQuery blur",
  1739. messageSends: ["id:", "div", "class:", "onClick:", "deactivate", "cssClass", "with:", "renderLabelOn:", "mainId", "renderSelectedBindingOn:", "renderCloseOn:", "blur", "asJQuery"],
  1740. referencedClasses: []
  1741. }),
  1742. globals.HLKeyBinderHelperWidget);
  1743. smalltalk.addMethod(
  1744. smalltalk.method({
  1745. selector: "renderLabelOn:",
  1746. protocol: 'rendering',
  1747. fn: function (html){
  1748. var self=this;
  1749. return smalltalk.withContext(function($ctx1) {
  1750. var $1,$3,$5,$4,$2;
  1751. $1=_st(html)._span();
  1752. _st($1)._class_("selected");
  1753. $3=$1;
  1754. $5=_st(self._selectedBinding())._label();
  1755. if(($receiver = $5) == nil || $receiver == null){
  1756. $4="Action";
  1757. } else {
  1758. $4=$5;
  1759. };
  1760. $2=_st($3)._with_($4);
  1761. return self}, function($ctx1) {$ctx1.fill(self,"renderLabelOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1762. args: ["html"],
  1763. source: "renderLabelOn: html\x0a\x09\x09html span \x0a \x09class: 'selected'; \x0a with: (self selectedBinding label ifNil: [ 'Action' ])",
  1764. messageSends: ["class:", "span", "with:", "ifNil:", "label", "selectedBinding"],
  1765. referencedClasses: []
  1766. }),
  1767. globals.HLKeyBinderHelperWidget);
  1768. smalltalk.addMethod(
  1769. smalltalk.method({
  1770. selector: "renderSelectedBindingOn:",
  1771. protocol: 'rendering',
  1772. fn: function (html){
  1773. var self=this;
  1774. return smalltalk.withContext(function($ctx1) {
  1775. _st(self._selectedBinding())._renderOn_html_(self,html);
  1776. return self}, function($ctx1) {$ctx1.fill(self,"renderSelectedBindingOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1777. args: ["html"],
  1778. source: "renderSelectedBindingOn: html\x0a\x09self selectedBinding renderOn: self html: html",
  1779. messageSends: ["renderOn:html:", "selectedBinding"],
  1780. referencedClasses: []
  1781. }),
  1782. globals.HLKeyBinderHelperWidget);
  1783. smalltalk.addMethod(
  1784. smalltalk.method({
  1785. selector: "renderStart",
  1786. protocol: 'rendering',
  1787. fn: function (){
  1788. var self=this;
  1789. return smalltalk.withContext(function($ctx1) {
  1790. var $1,$3,$5,$6,$4,$2,$7;
  1791. $1="#helper"._asJQuery();
  1792. $ctx1.sendIdx["asJQuery"]=1;
  1793. _st($1)._remove();
  1794. $2=(function(html){
  1795. return smalltalk.withContext(function($ctx2) {
  1796. $3=_st(html)._div();
  1797. _st($3)._id_("helper");
  1798. $5=$3;
  1799. $6=_st("Press ".__comma(_st(self._keyBinder())._activationKeyLabel())).__comma(" to start");
  1800. $ctx2.sendIdx[","]=1;
  1801. $4=_st($5)._with_($6);
  1802. return $4;
  1803. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})});
  1804. $7="body"._asJQuery();
  1805. $ctx1.sendIdx["asJQuery"]=2;
  1806. _st($2)._appendToJQuery_($7);
  1807. _st((function(){
  1808. return smalltalk.withContext(function($ctx2) {
  1809. return _st("#helper"._asJQuery())._fadeOut_((1000));
  1810. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}))._valueWithTimeout_((2000));
  1811. return self}, function($ctx1) {$ctx1.fill(self,"renderStart",{},globals.HLKeyBinderHelperWidget)})},
  1812. args: [],
  1813. source: "renderStart\x0a\x09'#helper' asJQuery remove.\x0a\x0a\x09[ :html |\x0a\x09\x09html div \x0a\x09\x09\x09id: 'helper';\x0a\x09\x09\x09with: 'Press ', self keyBinder activationKeyLabel, ' to start' ] appendToJQuery: 'body' asJQuery.\x0a\x09\x0a\x09[ '#helper' asJQuery fadeOut: 1000 ] \x0a\x09\x09valueWithTimeout: 2000",
  1814. messageSends: ["remove", "asJQuery", "appendToJQuery:", "id:", "div", "with:", ",", "activationKeyLabel", "keyBinder", "valueWithTimeout:", "fadeOut:"],
  1815. referencedClasses: []
  1816. }),
  1817. globals.HLKeyBinderHelperWidget);
  1818. smalltalk.addMethod(
  1819. smalltalk.method({
  1820. selector: "selectedBinding",
  1821. protocol: 'accessing',
  1822. fn: function (){
  1823. var self=this;
  1824. return smalltalk.withContext(function($ctx1) {
  1825. var $1;
  1826. $1=_st(self._keyBinder())._selectedBinding();
  1827. return $1;
  1828. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinderHelperWidget)})},
  1829. args: [],
  1830. source: "selectedBinding\x0a\x09^ self keyBinder selectedBinding",
  1831. messageSends: ["selectedBinding", "keyBinder"],
  1832. referencedClasses: []
  1833. }),
  1834. globals.HLKeyBinderHelperWidget);
  1835. smalltalk.addMethod(
  1836. smalltalk.method({
  1837. selector: "show",
  1838. protocol: 'actions',
  1839. fn: function (){
  1840. var self=this;
  1841. return smalltalk.withContext(function($ctx1) {
  1842. self._hideCog();
  1843. self._appendToJQuery_("body"._asJQuery());
  1844. return self}, function($ctx1) {$ctx1.fill(self,"show",{},globals.HLKeyBinderHelperWidget)})},
  1845. args: [],
  1846. source: "show\x0a\x09self hideCog.\x0a\x09self appendToJQuery: 'body' asJQuery",
  1847. messageSends: ["hideCog", "appendToJQuery:", "asJQuery"],
  1848. referencedClasses: []
  1849. }),
  1850. globals.HLKeyBinderHelperWidget);
  1851. smalltalk.addMethod(
  1852. smalltalk.method({
  1853. selector: "showCog",
  1854. protocol: 'actions',
  1855. fn: function (){
  1856. var self=this;
  1857. return smalltalk.withContext(function($ctx1) {
  1858. _st("#cog-helper"._asJQuery())._show();
  1859. return self}, function($ctx1) {$ctx1.fill(self,"showCog",{},globals.HLKeyBinderHelperWidget)})},
  1860. args: [],
  1861. source: "showCog\x0a\x09'#cog-helper' asJQuery show",
  1862. messageSends: ["show", "asJQuery"],
  1863. referencedClasses: []
  1864. }),
  1865. globals.HLKeyBinderHelperWidget);
  1866. smalltalk.addMethod(
  1867. smalltalk.method({
  1868. selector: "showWidget:",
  1869. protocol: 'actions',
  1870. fn: function (aWidget){
  1871. var self=this;
  1872. return smalltalk.withContext(function($ctx1) {
  1873. var $3,$2,$1;
  1874. $3=self._mainId();
  1875. $ctx1.sendIdx["mainId"]=1;
  1876. $2="#".__comma($3);
  1877. $ctx1.sendIdx[","]=1;
  1878. $1=_st($2)._asJQuery();
  1879. $ctx1.sendIdx["asJQuery"]=1;
  1880. _st($1)._empty();
  1881. _st(aWidget)._appendToJQuery_(_st("#".__comma(self._mainId()))._asJQuery());
  1882. return self}, function($ctx1) {$ctx1.fill(self,"showWidget:",{aWidget:aWidget},globals.HLKeyBinderHelperWidget)})},
  1883. args: ["aWidget"],
  1884. source: "showWidget: aWidget\x0a\x09\x22Some actions need to display more info to the user or request input.\x0a\x09This method is the right place for that\x22\x0a\x09\x0a\x09('#', self mainId) asJQuery empty.\x0a\x09aWidget appendToJQuery: ('#', self mainId) asJQuery",
  1885. messageSends: ["empty", "asJQuery", ",", "mainId", "appendToJQuery:"],
  1886. referencedClasses: []
  1887. }),
  1888. globals.HLKeyBinderHelperWidget);
  1889. smalltalk.addMethod(
  1890. smalltalk.method({
  1891. selector: "on:",
  1892. protocol: 'instance creation',
  1893. fn: function (aKeyBinder){
  1894. var self=this;
  1895. return smalltalk.withContext(function($ctx1) {
  1896. var $2,$3,$1;
  1897. $2=self._new();
  1898. _st($2)._keyBinder_(aKeyBinder);
  1899. $3=_st($2)._yourself();
  1900. $1=$3;
  1901. return $1;
  1902. }, function($ctx1) {$ctx1.fill(self,"on:",{aKeyBinder:aKeyBinder},globals.HLKeyBinderHelperWidget.klass)})},
  1903. args: ["aKeyBinder"],
  1904. source: "on: aKeyBinder\x0a\x09^ self new\x0a \x09keyBinder: aKeyBinder;\x0a yourself",
  1905. messageSends: ["keyBinder:", "new", "yourself"],
  1906. referencedClasses: []
  1907. }),
  1908. globals.HLKeyBinderHelperWidget.klass);
  1909. smalltalk.addClass('HLRepeatedKeyDownHandler', globals.Object, ['repeatInterval', 'delay', 'interval', 'keyBindings', 'widget', 'keyDown'], 'Helios-KeyBindings');
  1910. globals.HLRepeatedKeyDownHandler.comment="I am responsible for handling repeated key down actions for widgets.\x0a\x0a##Usage\x0a\x0a (self on: aWidget)\x0a whileKeyDown: 38 do: aBlock;\x0a whileKeyDown: 40 do: anotherBlock;\x0a bindKeys\x0a\x0aI perform an action block on a key press, wait for 300 ms and then preform the same action block every `repeatInterval` milliseconds until the key is released.";
  1911. smalltalk.addMethod(
  1912. smalltalk.method({
  1913. selector: "bindKeys",
  1914. protocol: 'binding',
  1915. fn: function (){
  1916. var self=this;
  1917. return smalltalk.withContext(function($ctx1) {
  1918. _st(self._widget())._bindKeyDown_keyUp_((function(e){
  1919. return smalltalk.withContext(function($ctx2) {
  1920. return self._handleKeyDown_(e);
  1921. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,1)})}),(function(e){
  1922. return smalltalk.withContext(function($ctx2) {
  1923. return self._handleKeyUp();
  1924. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,2)})}));
  1925. return self}, function($ctx1) {$ctx1.fill(self,"bindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  1926. args: [],
  1927. source: "bindKeys\x0a\x09self widget \x0a\x09\x09bindKeyDown: [ :e | self handleKeyDown: e ] \x0a\x09\x09keyUp: [ :e | self handleKeyUp ]",
  1928. messageSends: ["bindKeyDown:keyUp:", "widget", "handleKeyDown:", "handleKeyUp"],
  1929. referencedClasses: []
  1930. }),
  1931. globals.HLRepeatedKeyDownHandler);
  1932. smalltalk.addMethod(
  1933. smalltalk.method({
  1934. selector: "defaultRepeatInterval",
  1935. protocol: 'defaults',
  1936. fn: function (){
  1937. var self=this;
  1938. return (70);
  1939. },
  1940. args: [],
  1941. source: "defaultRepeatInterval\x0a\x09^ 70",
  1942. messageSends: [],
  1943. referencedClasses: []
  1944. }),
  1945. globals.HLRepeatedKeyDownHandler);
  1946. smalltalk.addMethod(
  1947. smalltalk.method({
  1948. selector: "handleEvent:forKey:action:",
  1949. protocol: 'events handling',
  1950. fn: function (anEvent,anInteger,aBlock){
  1951. var self=this;
  1952. return smalltalk.withContext(function($ctx1) {
  1953. var $1;
  1954. $1=_st(_st(_st(anEvent)._which()).__eq(anInteger))._and_((function(){
  1955. return smalltalk.withContext(function($ctx2) {
  1956. return _st(self._isKeyDown())._not();
  1957. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1958. if(smalltalk.assert($1)){
  1959. self._whileKeyDownDo_(aBlock);
  1960. };
  1961. return self}, function($ctx1) {$ctx1.fill(self,"handleEvent:forKey:action:",{anEvent:anEvent,anInteger:anInteger,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  1962. args: ["anEvent", "anInteger", "aBlock"],
  1963. source: "handleEvent: anEvent forKey: anInteger action: aBlock\x0a\x09(anEvent which = anInteger and: [ self isKeyDown not ])\x0a\x09\x09ifTrue: [ self whileKeyDownDo: aBlock ]",
  1964. messageSends: ["ifTrue:", "and:", "=", "which", "not", "isKeyDown", "whileKeyDownDo:"],
  1965. referencedClasses: []
  1966. }),
  1967. globals.HLRepeatedKeyDownHandler);
  1968. smalltalk.addMethod(
  1969. smalltalk.method({
  1970. selector: "handleKeyDown:",
  1971. protocol: 'events handling',
  1972. fn: function (anEvent){
  1973. var self=this;
  1974. return smalltalk.withContext(function($ctx1) {
  1975. _st(self._keyBindings())._keysAndValuesDo_((function(key,action){
  1976. return smalltalk.withContext(function($ctx2) {
  1977. return self._handleEvent_forKey_action_(anEvent,key,action);
  1978. }, function($ctx2) {$ctx2.fillBlock({key:key,action:action},$ctx1,1)})}));
  1979. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{anEvent:anEvent},globals.HLRepeatedKeyDownHandler)})},
  1980. args: ["anEvent"],
  1981. source: "handleKeyDown: anEvent\x0a\x09self keyBindings keysAndValuesDo: [ :key :action | \x0a\x09\x09self handleEvent: anEvent forKey: key action: action ]",
  1982. messageSends: ["keysAndValuesDo:", "keyBindings", "handleEvent:forKey:action:"],
  1983. referencedClasses: []
  1984. }),
  1985. globals.HLRepeatedKeyDownHandler);
  1986. smalltalk.addMethod(
  1987. smalltalk.method({
  1988. selector: "handleKeyUp",
  1989. protocol: 'events handling',
  1990. fn: function (){
  1991. var self=this;
  1992. return smalltalk.withContext(function($ctx1) {
  1993. var $1,$2,$3;
  1994. $1=self._isKeyDown();
  1995. if(smalltalk.assert($1)){
  1996. self["@keyDown"]=false;
  1997. self["@keyDown"];
  1998. $2=self["@interval"];
  1999. if(($receiver = $2) == nil || $receiver == null){
  2000. $2;
  2001. } else {
  2002. _st(self["@interval"])._clearInterval();
  2003. };
  2004. $3=self["@delay"];
  2005. if(($receiver = $3) == nil || $receiver == null){
  2006. $3;
  2007. } else {
  2008. _st(self["@delay"])._clearTimeout();
  2009. };
  2010. };
  2011. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyUp",{},globals.HLRepeatedKeyDownHandler)})},
  2012. args: [],
  2013. source: "handleKeyUp\x0a\x09self isKeyDown ifTrue: [\x0a\x09\x09keyDown := false.\x0a\x09\x09interval ifNotNil: [ interval clearInterval ].\x0a\x09\x09delay ifNotNil: [ delay clearTimeout ] ]",
  2014. messageSends: ["ifTrue:", "isKeyDown", "ifNotNil:", "clearInterval", "clearTimeout"],
  2015. referencedClasses: []
  2016. }),
  2017. globals.HLRepeatedKeyDownHandler);
  2018. smalltalk.addMethod(
  2019. smalltalk.method({
  2020. selector: "isKeyDown",
  2021. protocol: 'testing',
  2022. fn: function (){
  2023. var self=this;
  2024. return smalltalk.withContext(function($ctx1) {
  2025. var $2,$1;
  2026. $2=self["@keyDown"];
  2027. if(($receiver = $2) == nil || $receiver == null){
  2028. $1=false;
  2029. } else {
  2030. $1=$2;
  2031. };
  2032. return $1;
  2033. }, function($ctx1) {$ctx1.fill(self,"isKeyDown",{},globals.HLRepeatedKeyDownHandler)})},
  2034. args: [],
  2035. source: "isKeyDown\x0a\x09^ keyDown ifNil: [ false ]",
  2036. messageSends: ["ifNil:"],
  2037. referencedClasses: []
  2038. }),
  2039. globals.HLRepeatedKeyDownHandler);
  2040. smalltalk.addMethod(
  2041. smalltalk.method({
  2042. selector: "keyBindings",
  2043. protocol: 'accessing',
  2044. fn: function (){
  2045. var self=this;
  2046. function $Dictionary(){return globals.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  2047. return smalltalk.withContext(function($ctx1) {
  2048. var $2,$1;
  2049. $2=self["@keyBindings"];
  2050. if(($receiver = $2) == nil || $receiver == null){
  2051. self["@keyBindings"]=_st($Dictionary())._new();
  2052. $1=self["@keyBindings"];
  2053. } else {
  2054. $1=$2;
  2055. };
  2056. return $1;
  2057. }, function($ctx1) {$ctx1.fill(self,"keyBindings",{},globals.HLRepeatedKeyDownHandler)})},
  2058. args: [],
  2059. source: "keyBindings\x0a\x09^ keyBindings ifNil: [ keyBindings := Dictionary new ]",
  2060. messageSends: ["ifNil:", "new"],
  2061. referencedClasses: ["Dictionary"]
  2062. }),
  2063. globals.HLRepeatedKeyDownHandler);
  2064. smalltalk.addMethod(
  2065. smalltalk.method({
  2066. selector: "rebindKeys",
  2067. protocol: 'binding',
  2068. fn: function (){
  2069. var self=this;
  2070. return smalltalk.withContext(function($ctx1) {
  2071. var $1;
  2072. self._unbindKeys();
  2073. $1=self._bindKeys();
  2074. return self}, function($ctx1) {$ctx1.fill(self,"rebindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2075. args: [],
  2076. source: "rebindKeys\x0a\x09self \x0a\x09\x09unbindKeys;\x0a\x09\x09bindKeys",
  2077. messageSends: ["unbindKeys", "bindKeys"],
  2078. referencedClasses: []
  2079. }),
  2080. globals.HLRepeatedKeyDownHandler);
  2081. smalltalk.addMethod(
  2082. smalltalk.method({
  2083. selector: "repeatInterval",
  2084. protocol: 'accessing',
  2085. fn: function (){
  2086. var self=this;
  2087. return smalltalk.withContext(function($ctx1) {
  2088. var $2,$1;
  2089. $2=self["@repeatInterval"];
  2090. if(($receiver = $2) == nil || $receiver == null){
  2091. $1=self._defaultRepeatInterval();
  2092. } else {
  2093. $1=$2;
  2094. };
  2095. return $1;
  2096. }, function($ctx1) {$ctx1.fill(self,"repeatInterval",{},globals.HLRepeatedKeyDownHandler)})},
  2097. args: [],
  2098. source: "repeatInterval\x0a\x09^ repeatInterval ifNil: [ self defaultRepeatInterval ]",
  2099. messageSends: ["ifNil:", "defaultRepeatInterval"],
  2100. referencedClasses: []
  2101. }),
  2102. globals.HLRepeatedKeyDownHandler);
  2103. smalltalk.addMethod(
  2104. smalltalk.method({
  2105. selector: "repeatInterval:",
  2106. protocol: 'accessing',
  2107. fn: function (anInteger){
  2108. var self=this;
  2109. self["@repeatInterval"]=anInteger;
  2110. return self},
  2111. args: ["anInteger"],
  2112. source: "repeatInterval: anInteger\x0a\x09repeatInterval := anInteger",
  2113. messageSends: [],
  2114. referencedClasses: []
  2115. }),
  2116. globals.HLRepeatedKeyDownHandler);
  2117. smalltalk.addMethod(
  2118. smalltalk.method({
  2119. selector: "startRepeatingAction:",
  2120. protocol: 'actions',
  2121. fn: function (aBlock){
  2122. var self=this;
  2123. return smalltalk.withContext(function($ctx1) {
  2124. var $2,$1;
  2125. $1=_st((function(){
  2126. return smalltalk.withContext(function($ctx2) {
  2127. $2=_st(self._widget())._hasFocus();
  2128. if(smalltalk.assert($2)){
  2129. return _st(aBlock)._value();
  2130. } else {
  2131. return self._handleKeyUp();
  2132. };
  2133. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithInterval_(self._repeatInterval());
  2134. return $1;
  2135. }, function($ctx1) {$ctx1.fill(self,"startRepeatingAction:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2136. args: ["aBlock"],
  2137. source: "startRepeatingAction: aBlock\x0a\x09^ [ (self widget hasFocus)\x0a\x09\x09ifTrue: [ aBlock value ]\x0a\x09\x09ifFalse: [ self handleKeyUp ] ] valueWithInterval: self repeatInterval",
  2138. messageSends: ["valueWithInterval:", "ifTrue:ifFalse:", "hasFocus", "widget", "value", "handleKeyUp", "repeatInterval"],
  2139. referencedClasses: []
  2140. }),
  2141. globals.HLRepeatedKeyDownHandler);
  2142. smalltalk.addMethod(
  2143. smalltalk.method({
  2144. selector: "unbindKeys",
  2145. protocol: 'binding',
  2146. fn: function (){
  2147. var self=this;
  2148. return smalltalk.withContext(function($ctx1) {
  2149. _st(self._widget())._unbindKeyDownKeyUp();
  2150. return self}, function($ctx1) {$ctx1.fill(self,"unbindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2151. args: [],
  2152. source: "unbindKeys\x0a\x09self widget unbindKeyDownKeyUp",
  2153. messageSends: ["unbindKeyDownKeyUp", "widget"],
  2154. referencedClasses: []
  2155. }),
  2156. globals.HLRepeatedKeyDownHandler);
  2157. smalltalk.addMethod(
  2158. smalltalk.method({
  2159. selector: "whileKeyDown:do:",
  2160. protocol: 'actions',
  2161. fn: function (aKey,aBlock){
  2162. var self=this;
  2163. return smalltalk.withContext(function($ctx1) {
  2164. _st(self._keyBindings())._at_put_(aKey,aBlock);
  2165. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDown:do:",{aKey:aKey,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2166. args: ["aKey", "aBlock"],
  2167. source: "whileKeyDown: aKey do: aBlock\x0a\x09self keyBindings at: aKey put: aBlock",
  2168. messageSends: ["at:put:", "keyBindings"],
  2169. referencedClasses: []
  2170. }),
  2171. globals.HLRepeatedKeyDownHandler);
  2172. smalltalk.addMethod(
  2173. smalltalk.method({
  2174. selector: "whileKeyDownDo:",
  2175. protocol: 'events handling',
  2176. fn: function (aBlock){
  2177. var self=this;
  2178. return smalltalk.withContext(function($ctx1) {
  2179. self["@keyDown"]=true;
  2180. _st(aBlock)._value();
  2181. self["@delay"]=_st((function(){
  2182. return smalltalk.withContext(function($ctx2) {
  2183. self["@interval"]=self._startRepeatingAction_(aBlock);
  2184. return self["@interval"];
  2185. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithTimeout_((300));
  2186. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDownDo:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2187. args: ["aBlock"],
  2188. source: "whileKeyDownDo: aBlock\x0a\x09keyDown := true.\x0a\x09aBlock value.\x0a\x09delay := [ interval := self startRepeatingAction: aBlock ] \x0a\x09\x09valueWithTimeout: 300",
  2189. messageSends: ["value", "valueWithTimeout:", "startRepeatingAction:"],
  2190. referencedClasses: []
  2191. }),
  2192. globals.HLRepeatedKeyDownHandler);
  2193. smalltalk.addMethod(
  2194. smalltalk.method({
  2195. selector: "widget",
  2196. protocol: 'accessing',
  2197. fn: function (){
  2198. var self=this;
  2199. var $1;
  2200. $1=self["@widget"];
  2201. return $1;
  2202. },
  2203. args: [],
  2204. source: "widget\x0a\x09^ widget",
  2205. messageSends: [],
  2206. referencedClasses: []
  2207. }),
  2208. globals.HLRepeatedKeyDownHandler);
  2209. smalltalk.addMethod(
  2210. smalltalk.method({
  2211. selector: "widget:",
  2212. protocol: 'accessing',
  2213. fn: function (aWidget){
  2214. var self=this;
  2215. self["@widget"]=aWidget;
  2216. return self},
  2217. args: ["aWidget"],
  2218. source: "widget: aWidget\x0a\x09widget := aWidget",
  2219. messageSends: [],
  2220. referencedClasses: []
  2221. }),
  2222. globals.HLRepeatedKeyDownHandler);
  2223. smalltalk.addMethod(
  2224. smalltalk.method({
  2225. selector: "on:",
  2226. protocol: 'instance creation',
  2227. fn: function (aWidget){
  2228. var self=this;
  2229. return smalltalk.withContext(function($ctx1) {
  2230. var $2,$3,$1;
  2231. $2=self._new();
  2232. _st($2)._widget_(aWidget);
  2233. $3=_st($2)._yourself();
  2234. $1=$3;
  2235. return $1;
  2236. }, function($ctx1) {$ctx1.fill(self,"on:",{aWidget:aWidget},globals.HLRepeatedKeyDownHandler.klass)})},
  2237. args: ["aWidget"],
  2238. source: "on: aWidget\x0a\x09^ self new\x0a\x09\x09widget: aWidget;\x0a\x09\x09yourself",
  2239. messageSends: ["widget:", "new", "yourself"],
  2240. referencedClasses: []
  2241. }),
  2242. globals.HLRepeatedKeyDownHandler.klass);
  2243. });