Helios-KeyBindings.js 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  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;
  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. return _st(_st(self["@input"])._asJQuery())._focus();
  948. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})}))._valueWithTimeout_((10));
  949. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},globals.HLBindingActionInputWidget)})},
  950. args: ["html"],
  951. 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 ] valueWithTimeout: 10",
  952. messageSends: ["ifNil:", "span", "class:", "status", "with:", "placeholder:", "input", "ghostText", "value:", "defaultValue", "onKeyDown:", "yourself", "ifTrue:", "=", "which", "evaluate:", "val", "asJQuery", "typeahead:", "inputCompletion", "message", "valueWithTimeout:", "focus"],
  953. referencedClasses: []
  954. }),
  955. globals.HLBindingActionInputWidget);
  956. smalltalk.addMethod(
  957. smalltalk.method({
  958. selector: "status",
  959. protocol: 'accessing',
  960. fn: function (){
  961. var self=this;
  962. return smalltalk.withContext(function($ctx1) {
  963. var $2,$1;
  964. $2=self["@status"];
  965. if(($receiver = $2) == nil || $receiver == null){
  966. self["@status"]="info";
  967. $1=self["@status"];
  968. } else {
  969. $1=$2;
  970. };
  971. return $1;
  972. }, function($ctx1) {$ctx1.fill(self,"status",{},globals.HLBindingActionInputWidget)})},
  973. args: [],
  974. source: "status\x0a\x09^ status ifNil: [ status := 'info' ]",
  975. messageSends: ["ifNil:"],
  976. referencedClasses: []
  977. }),
  978. globals.HLBindingActionInputWidget);
  979. smalltalk.addMethod(
  980. smalltalk.method({
  981. selector: "status:",
  982. protocol: 'accessing',
  983. fn: function (aStatus){
  984. var self=this;
  985. self["@status"]=aStatus;
  986. return self},
  987. args: ["aStatus"],
  988. source: "status: aStatus\x0a\x09status := aStatus",
  989. messageSends: [],
  990. referencedClasses: []
  991. }),
  992. globals.HLBindingActionInputWidget);
  993. smalltalk.addClass('HLKeyBinder', globals.Object, ['modifierKey', 'helper', 'bindings', 'selectedBinding'], 'Helios-KeyBindings');
  994. 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.";
  995. smalltalk.addMethod(
  996. smalltalk.method({
  997. selector: "activate",
  998. protocol: 'actions',
  999. fn: function (){
  1000. var self=this;
  1001. return smalltalk.withContext(function($ctx1) {
  1002. _st(self._helper())._show();
  1003. return self}, function($ctx1) {$ctx1.fill(self,"activate",{},globals.HLKeyBinder)})},
  1004. args: [],
  1005. source: "activate\x0a\x09self helper show",
  1006. messageSends: ["show", "helper"],
  1007. referencedClasses: []
  1008. }),
  1009. globals.HLKeyBinder);
  1010. smalltalk.addMethod(
  1011. smalltalk.method({
  1012. selector: "activationKey",
  1013. protocol: 'accessing',
  1014. fn: function (){
  1015. var self=this;
  1016. return (32);
  1017. },
  1018. args: [],
  1019. source: "activationKey\x0a\x09\x22SPACE\x22\x0a\x09^ 32",
  1020. messageSends: [],
  1021. referencedClasses: []
  1022. }),
  1023. globals.HLKeyBinder);
  1024. smalltalk.addMethod(
  1025. smalltalk.method({
  1026. selector: "activationKeyLabel",
  1027. protocol: 'accessing',
  1028. fn: function (){
  1029. var self=this;
  1030. return "ctrl + space";
  1031. },
  1032. args: [],
  1033. source: "activationKeyLabel\x0a\x09^ 'ctrl + space'",
  1034. messageSends: [],
  1035. referencedClasses: []
  1036. }),
  1037. globals.HLKeyBinder);
  1038. smalltalk.addMethod(
  1039. smalltalk.method({
  1040. selector: "applyBinding:",
  1041. protocol: 'actions',
  1042. fn: function (aBinding){
  1043. var self=this;
  1044. return smalltalk.withContext(function($ctx1) {
  1045. var $1;
  1046. $1=_st(aBinding)._isActive();
  1047. if(! smalltalk.assert($1)){
  1048. return self;
  1049. };
  1050. self._selectBinding_(aBinding);
  1051. _st(aBinding)._apply();
  1052. return self}, function($ctx1) {$ctx1.fill(self,"applyBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1053. args: ["aBinding"],
  1054. source: "applyBinding: aBinding\x0a\x09aBinding isActive ifFalse: [ ^ self ].\x0a\x09\x0a\x09self selectBinding: aBinding.\x0a aBinding apply",
  1055. messageSends: ["ifFalse:", "isActive", "selectBinding:", "apply"],
  1056. referencedClasses: []
  1057. }),
  1058. globals.HLKeyBinder);
  1059. smalltalk.addMethod(
  1060. smalltalk.method({
  1061. selector: "bindings",
  1062. protocol: 'accessing',
  1063. fn: function (){
  1064. var self=this;
  1065. return smalltalk.withContext(function($ctx1) {
  1066. var $2,$1;
  1067. $2=self["@bindings"];
  1068. if(($receiver = $2) == nil || $receiver == null){
  1069. self["@bindings"]=self._defaultBindings();
  1070. $1=self["@bindings"];
  1071. } else {
  1072. $1=$2;
  1073. };
  1074. return $1;
  1075. }, function($ctx1) {$ctx1.fill(self,"bindings",{},globals.HLKeyBinder)})},
  1076. args: [],
  1077. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := self defaultBindings ]",
  1078. messageSends: ["ifNil:", "defaultBindings"],
  1079. referencedClasses: []
  1080. }),
  1081. globals.HLKeyBinder);
  1082. smalltalk.addMethod(
  1083. smalltalk.method({
  1084. selector: "deactivate",
  1085. protocol: 'actions',
  1086. fn: function (){
  1087. var self=this;
  1088. return smalltalk.withContext(function($ctx1) {
  1089. var $1;
  1090. $1=self["@selectedBinding"];
  1091. if(($receiver = $1) == nil || $receiver == null){
  1092. $1;
  1093. } else {
  1094. _st(self["@selectedBinding"])._release();
  1095. };
  1096. self["@selectedBinding"]=nil;
  1097. _st(self._helper())._hide();
  1098. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinder)})},
  1099. args: [],
  1100. source: "deactivate\x0a\x09selectedBinding ifNotNil: [ selectedBinding release ].\x0a selectedBinding := nil.\x0a\x09self helper hide",
  1101. messageSends: ["ifNotNil:", "release", "hide", "helper"],
  1102. referencedClasses: []
  1103. }),
  1104. globals.HLKeyBinder);
  1105. smalltalk.addMethod(
  1106. smalltalk.method({
  1107. selector: "defaultBindings",
  1108. protocol: 'defaults',
  1109. fn: function (){
  1110. var self=this;
  1111. var group;
  1112. function $HLBindingGroup(){return globals.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
  1113. function $HLCloseTabCommand(){return globals.HLCloseTabCommand||(typeof HLCloseTabCommand=="undefined"?nil:HLCloseTabCommand)}
  1114. function $HLSwitchTabCommand(){return globals.HLSwitchTabCommand||(typeof HLSwitchTabCommand=="undefined"?nil:HLSwitchTabCommand)}
  1115. function $HLOpenCommand(){return globals.HLOpenCommand||(typeof HLOpenCommand=="undefined"?nil:HLOpenCommand)}
  1116. return smalltalk.withContext(function($ctx1) {
  1117. var $1,$2,$4,$3,$5,$6;
  1118. $1=_st($HLBindingGroup())._new();
  1119. $ctx1.sendIdx["new"]=1;
  1120. $2=$1;
  1121. $4=_st($HLCloseTabCommand())._new();
  1122. $ctx1.sendIdx["new"]=2;
  1123. $3=_st($4)._asBinding();
  1124. $ctx1.sendIdx["asBinding"]=1;
  1125. _st($2)._add_($3);
  1126. $ctx1.sendIdx["add:"]=1;
  1127. _st($1)._add_(_st(_st($HLSwitchTabCommand())._new())._asBinding());
  1128. $5=_st($1)._yourself();
  1129. group=$5;
  1130. _st($HLOpenCommand())._registerConcreteClassesOn_(group);
  1131. $6=group;
  1132. return $6;
  1133. }, function($ctx1) {$ctx1.fill(self,"defaultBindings",{group:group},globals.HLKeyBinder)})},
  1134. args: [],
  1135. 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",
  1136. messageSends: ["add:", "new", "asBinding", "yourself", "registerConcreteClassesOn:"],
  1137. referencedClasses: ["HLBindingGroup", "HLCloseTabCommand", "HLSwitchTabCommand", "HLOpenCommand"]
  1138. }),
  1139. globals.HLKeyBinder);
  1140. smalltalk.addMethod(
  1141. smalltalk.method({
  1142. selector: "escapeKey",
  1143. protocol: 'accessing',
  1144. fn: function (){
  1145. var self=this;
  1146. return (27);
  1147. },
  1148. args: [],
  1149. source: "escapeKey\x0a\x09\x22ESC\x22\x0a\x09^ 27",
  1150. messageSends: [],
  1151. referencedClasses: []
  1152. }),
  1153. globals.HLKeyBinder);
  1154. smalltalk.addMethod(
  1155. smalltalk.method({
  1156. selector: "flushBindings",
  1157. protocol: 'actions',
  1158. fn: function (){
  1159. var self=this;
  1160. self["@bindings"]=nil;
  1161. return self},
  1162. args: [],
  1163. source: "flushBindings\x0a\x09bindings := nil",
  1164. messageSends: [],
  1165. referencedClasses: []
  1166. }),
  1167. globals.HLKeyBinder);
  1168. smalltalk.addMethod(
  1169. smalltalk.method({
  1170. selector: "handleActiveKeyDown:",
  1171. protocol: 'events',
  1172. fn: function (event){
  1173. var self=this;
  1174. return smalltalk.withContext(function($ctx1) {
  1175. var $3,$2,$6,$5,$4,$1,$7;
  1176. $3=_st(event)._which();
  1177. $ctx1.sendIdx["which"]=1;
  1178. $2=_st($3).__eq(self._escapeKey());
  1179. $ctx1.sendIdx["="]=1;
  1180. $1=_st($2)._or_((function(){
  1181. return smalltalk.withContext(function($ctx2) {
  1182. $6=_st(event)._which();
  1183. $ctx2.sendIdx["which"]=2;
  1184. $5=_st($6).__eq((71));
  1185. $ctx2.sendIdx["="]=2;
  1186. $4=_st($5)._or_((function(){
  1187. return smalltalk.withContext(function($ctx3) {
  1188. return _st(_st(event)._which()).__eq(self._activationKey());
  1189. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1190. return _st($4)._and_((function(){
  1191. return smalltalk.withContext(function($ctx3) {
  1192. return _st(event)._ctrlKey();
  1193. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1194. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1195. $ctx1.sendIdx["or:"]=1;
  1196. if(smalltalk.assert($1)){
  1197. self._deactivate();
  1198. _st(event)._preventDefault();
  1199. return false;
  1200. };
  1201. $7=self._handleBindingFor_(event);
  1202. return $7;
  1203. }, function($ctx1) {$ctx1.fill(self,"handleActiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1204. args: ["event"],
  1205. 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",
  1206. messageSends: ["ifTrue:", "or:", "=", "which", "escapeKey", "and:", "activationKey", "ctrlKey", "deactivate", "preventDefault", "handleBindingFor:"],
  1207. referencedClasses: []
  1208. }),
  1209. globals.HLKeyBinder);
  1210. smalltalk.addMethod(
  1211. smalltalk.method({
  1212. selector: "handleBindingFor:",
  1213. protocol: 'events',
  1214. fn: function (anEvent){
  1215. var self=this;
  1216. var binding;
  1217. return smalltalk.withContext(function($ctx1) {
  1218. var $1;
  1219. binding=_st(self._selectedBinding())._atKey_(_st(anEvent)._which());
  1220. $1=binding;
  1221. if(($receiver = $1) == nil || $receiver == null){
  1222. $1;
  1223. } else {
  1224. self._applyBinding_(binding);
  1225. _st(anEvent)._preventDefault();
  1226. return false;
  1227. };
  1228. return self}, function($ctx1) {$ctx1.fill(self,"handleBindingFor:",{anEvent:anEvent,binding:binding},globals.HLKeyBinder)})},
  1229. args: ["anEvent"],
  1230. 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 ]",
  1231. messageSends: ["atKey:", "selectedBinding", "which", "ifNotNil:", "applyBinding:", "preventDefault"],
  1232. referencedClasses: []
  1233. }),
  1234. globals.HLKeyBinder);
  1235. smalltalk.addMethod(
  1236. smalltalk.method({
  1237. selector: "handleInactiveKeyDown:",
  1238. protocol: 'events',
  1239. fn: function (event){
  1240. var self=this;
  1241. return smalltalk.withContext(function($ctx1) {
  1242. var $1,$2;
  1243. $1=_st(_st(event)._which()).__eq(self._activationKey());
  1244. if(smalltalk.assert($1)){
  1245. $2=_st(event)._ctrlKey();
  1246. if(smalltalk.assert($2)){
  1247. self._activate();
  1248. _st(event)._preventDefault();
  1249. return false;
  1250. };
  1251. };
  1252. return self}, function($ctx1) {$ctx1.fill(self,"handleInactiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1253. args: ["event"],
  1254. source: "handleInactiveKeyDown: event\x0a\x09event which = self activationKey ifTrue: [\x0a \x09event ctrlKey ifTrue: [\x0a\x09\x09\x09self activate. \x0a event preventDefault. \x0a ^ false ] ]",
  1255. messageSends: ["ifTrue:", "=", "which", "activationKey", "ctrlKey", "activate", "preventDefault"],
  1256. referencedClasses: []
  1257. }),
  1258. globals.HLKeyBinder);
  1259. smalltalk.addMethod(
  1260. smalltalk.method({
  1261. selector: "handleKeyDown:",
  1262. protocol: 'events',
  1263. fn: function (event){
  1264. var self=this;
  1265. return smalltalk.withContext(function($ctx1) {
  1266. var $2,$1;
  1267. $2=self._isActive();
  1268. if(smalltalk.assert($2)){
  1269. $1=self._handleActiveKeyDown_(event);
  1270. } else {
  1271. $1=self._handleInactiveKeyDown_(event);
  1272. };
  1273. return $1;
  1274. }, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{event:event},globals.HLKeyBinder)})},
  1275. args: ["event"],
  1276. source: "handleKeyDown: event\x0a\x09^ self isActive\x0a \x09ifTrue: [ self handleActiveKeyDown: event ]\x0a \x09ifFalse: [ self handleInactiveKeyDown: event ]",
  1277. messageSends: ["ifTrue:ifFalse:", "isActive", "handleActiveKeyDown:", "handleInactiveKeyDown:"],
  1278. referencedClasses: []
  1279. }),
  1280. globals.HLKeyBinder);
  1281. smalltalk.addMethod(
  1282. smalltalk.method({
  1283. selector: "helper",
  1284. protocol: 'accessing',
  1285. fn: function (){
  1286. var self=this;
  1287. var $1;
  1288. $1=self["@helper"];
  1289. return $1;
  1290. },
  1291. args: [],
  1292. source: "helper\x0a\x09^ helper",
  1293. messageSends: [],
  1294. referencedClasses: []
  1295. }),
  1296. globals.HLKeyBinder);
  1297. smalltalk.addMethod(
  1298. smalltalk.method({
  1299. selector: "initialize",
  1300. protocol: 'initialization',
  1301. fn: function (){
  1302. var self=this;
  1303. function $HLKeyBinderHelperWidget(){return globals.HLKeyBinderHelperWidget||(typeof HLKeyBinderHelperWidget=="undefined"?nil:HLKeyBinderHelperWidget)}
  1304. return smalltalk.withContext(function($ctx1) {
  1305. globals.HLKeyBinder.superclass.fn.prototype._initialize.apply(_st(self), []);
  1306. self["@helper"]=_st($HLKeyBinderHelperWidget())._on_(self);
  1307. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLKeyBinder)})},
  1308. args: [],
  1309. source: "initialize\x0a\x09super initialize.\x0a\x09helper := HLKeyBinderHelperWidget on: self",
  1310. messageSends: ["initialize", "on:"],
  1311. referencedClasses: ["HLKeyBinderHelperWidget"]
  1312. }),
  1313. globals.HLKeyBinder);
  1314. smalltalk.addMethod(
  1315. smalltalk.method({
  1316. selector: "isActive",
  1317. protocol: 'testing',
  1318. fn: function (){
  1319. var self=this;
  1320. return smalltalk.withContext(function($ctx1) {
  1321. var $1;
  1322. $1=_st(_st(".".__comma(_st(self._helper())._cssClass()))._asJQuery())._is_(":visible");
  1323. return $1;
  1324. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLKeyBinder)})},
  1325. args: [],
  1326. source: "isActive\x0a\x09^ ('.', self helper cssClass) asJQuery is: ':visible'",
  1327. messageSends: ["is:", "asJQuery", ",", "cssClass", "helper"],
  1328. referencedClasses: []
  1329. }),
  1330. globals.HLKeyBinder);
  1331. smalltalk.addMethod(
  1332. smalltalk.method({
  1333. selector: "selectBinding:",
  1334. protocol: 'actions',
  1335. fn: function (aBinding){
  1336. var self=this;
  1337. return smalltalk.withContext(function($ctx1) {
  1338. var $1;
  1339. $1=_st(aBinding).__eq(self["@selectedBinding"]);
  1340. if(smalltalk.assert($1)){
  1341. return self;
  1342. };
  1343. self["@selectedBinding"]=aBinding;
  1344. _st(self._helper())._refresh();
  1345. return self}, function($ctx1) {$ctx1.fill(self,"selectBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1346. args: ["aBinding"],
  1347. source: "selectBinding: aBinding\x0a\x09aBinding = selectedBinding ifTrue: [ ^ self ].\x0a\x09\x0a\x09selectedBinding := aBinding.\x0a\x09self helper refresh",
  1348. messageSends: ["ifTrue:", "=", "refresh", "helper"],
  1349. referencedClasses: []
  1350. }),
  1351. globals.HLKeyBinder);
  1352. smalltalk.addMethod(
  1353. smalltalk.method({
  1354. selector: "selectedBinding",
  1355. protocol: 'accessing',
  1356. fn: function (){
  1357. var self=this;
  1358. return smalltalk.withContext(function($ctx1) {
  1359. var $2,$1;
  1360. $2=self["@selectedBinding"];
  1361. if(($receiver = $2) == nil || $receiver == null){
  1362. $1=self._bindings();
  1363. } else {
  1364. $1=$2;
  1365. };
  1366. return $1;
  1367. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinder)})},
  1368. args: [],
  1369. source: "selectedBinding\x0a\x09^ selectedBinding ifNil: [ self bindings ]",
  1370. messageSends: ["ifNil:", "bindings"],
  1371. referencedClasses: []
  1372. }),
  1373. globals.HLKeyBinder);
  1374. smalltalk.addMethod(
  1375. smalltalk.method({
  1376. selector: "setupEvents",
  1377. protocol: 'events',
  1378. fn: function (){
  1379. var self=this;
  1380. return smalltalk.withContext(function($ctx1) {
  1381. _st("body"._asJQuery())._keydown_((function(event){
  1382. return smalltalk.withContext(function($ctx2) {
  1383. return self._handleKeyDown_(event);
  1384. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,1)})}));
  1385. return self}, function($ctx1) {$ctx1.fill(self,"setupEvents",{},globals.HLKeyBinder)})},
  1386. args: [],
  1387. source: "setupEvents\x0a\x09'body' asJQuery keydown: [ :event | self handleKeyDown: event ]",
  1388. messageSends: ["keydown:", "asJQuery", "handleKeyDown:"],
  1389. referencedClasses: []
  1390. }),
  1391. globals.HLKeyBinder);
  1392. smalltalk.addMethod(
  1393. smalltalk.method({
  1394. selector: "setupHelper",
  1395. protocol: 'initialization',
  1396. fn: function (){
  1397. var self=this;
  1398. return smalltalk.withContext(function($ctx1) {
  1399. var $1,$2;
  1400. $1=self["@helper"];
  1401. _st($1)._renderStart();
  1402. $2=_st($1)._renderCog();
  1403. return self}, function($ctx1) {$ctx1.fill(self,"setupHelper",{},globals.HLKeyBinder)})},
  1404. args: [],
  1405. source: "setupHelper\x0a\x09helper \x09\x0a\x09\x09renderStart;\x0a\x09\x09renderCog",
  1406. messageSends: ["renderStart", "renderCog"],
  1407. referencedClasses: []
  1408. }),
  1409. globals.HLKeyBinder);
  1410. smalltalk.addMethod(
  1411. smalltalk.method({
  1412. selector: "systemIsMac",
  1413. protocol: 'testing',
  1414. fn: function (){
  1415. var self=this;
  1416. return smalltalk.withContext(function($ctx1) {
  1417. var $1;
  1418. $1=_st(_st(navigator)._platform())._match_("Mac");
  1419. return $1;
  1420. }, function($ctx1) {$ctx1.fill(self,"systemIsMac",{},globals.HLKeyBinder)})},
  1421. args: [],
  1422. source: "systemIsMac\x0a\x09^ navigator platform match: 'Mac'",
  1423. messageSends: ["match:", "platform"],
  1424. referencedClasses: []
  1425. }),
  1426. globals.HLKeyBinder);
  1427. globals.HLKeyBinder.klass.iVarNames = ['current'];
  1428. smalltalk.addMethod(
  1429. smalltalk.method({
  1430. selector: "current",
  1431. protocol: 'instance creation',
  1432. fn: function (){
  1433. var self=this;
  1434. return smalltalk.withContext(function($ctx1) {
  1435. var $2,$1;
  1436. $2=self["@current"];
  1437. if(($receiver = $2) == nil || $receiver == null){
  1438. self["@current"]=globals.HLKeyBinder.klass.superclass.fn.prototype._new.apply(_st(self), []);
  1439. $1=self["@current"];
  1440. } else {
  1441. $1=$2;
  1442. };
  1443. return $1;
  1444. }, function($ctx1) {$ctx1.fill(self,"current",{},globals.HLKeyBinder.klass)})},
  1445. args: [],
  1446. source: "current\x0a\x09^ current ifNil: [ current := super new ]",
  1447. messageSends: ["ifNil:", "new"],
  1448. referencedClasses: []
  1449. }),
  1450. globals.HLKeyBinder.klass);
  1451. smalltalk.addMethod(
  1452. smalltalk.method({
  1453. selector: "new",
  1454. protocol: 'instance creation',
  1455. fn: function (){
  1456. var self=this;
  1457. return smalltalk.withContext(function($ctx1) {
  1458. self._shouldNotImplement();
  1459. return self}, function($ctx1) {$ctx1.fill(self,"new",{},globals.HLKeyBinder.klass)})},
  1460. args: [],
  1461. source: "new\x0a\x09self shouldNotImplement",
  1462. messageSends: ["shouldNotImplement"],
  1463. referencedClasses: []
  1464. }),
  1465. globals.HLKeyBinder.klass);
  1466. smalltalk.addClass('HLKeyBinderHelperWidget', globals.HLWidget, ['keyBinder'], 'Helios-KeyBindings');
  1467. 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:`.";
  1468. smalltalk.addMethod(
  1469. smalltalk.method({
  1470. selector: "cssClass",
  1471. protocol: 'accessing',
  1472. fn: function (){
  1473. var self=this;
  1474. return "key_helper";
  1475. },
  1476. args: [],
  1477. source: "cssClass\x0a\x09^ 'key_helper'",
  1478. messageSends: [],
  1479. referencedClasses: []
  1480. }),
  1481. globals.HLKeyBinderHelperWidget);
  1482. smalltalk.addMethod(
  1483. smalltalk.method({
  1484. selector: "deactivate",
  1485. protocol: 'actions',
  1486. fn: function (){
  1487. var self=this;
  1488. return smalltalk.withContext(function($ctx1) {
  1489. _st(self._keyBinder())._deactivate();
  1490. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinderHelperWidget)})},
  1491. args: [],
  1492. source: "deactivate\x0a\x09self keyBinder deactivate",
  1493. messageSends: ["deactivate", "keyBinder"],
  1494. referencedClasses: []
  1495. }),
  1496. globals.HLKeyBinderHelperWidget);
  1497. smalltalk.addMethod(
  1498. smalltalk.method({
  1499. selector: "hide",
  1500. protocol: 'actions',
  1501. fn: function (){
  1502. var self=this;
  1503. return smalltalk.withContext(function($ctx1) {
  1504. var $1;
  1505. $1=_st(".".__comma(self._cssClass()))._asJQuery();
  1506. $ctx1.sendIdx["asJQuery"]=1;
  1507. _st($1)._remove();
  1508. $ctx1.sendIdx["remove"]=1;
  1509. _st(".helper_overlay"._asJQuery())._remove();
  1510. self._showCog();
  1511. return self}, function($ctx1) {$ctx1.fill(self,"hide",{},globals.HLKeyBinderHelperWidget)})},
  1512. args: [],
  1513. source: "hide\x0a\x09('.', self cssClass) asJQuery remove.\x0a\x09'.helper_overlay' asJQuery remove.\x0a\x09self showCog",
  1514. messageSends: ["remove", "asJQuery", ",", "cssClass", "showCog"],
  1515. referencedClasses: []
  1516. }),
  1517. globals.HLKeyBinderHelperWidget);
  1518. smalltalk.addMethod(
  1519. smalltalk.method({
  1520. selector: "hideCog",
  1521. protocol: 'actions',
  1522. fn: function (){
  1523. var self=this;
  1524. return smalltalk.withContext(function($ctx1) {
  1525. _st("#cog-helper"._asJQuery())._hide();
  1526. return self}, function($ctx1) {$ctx1.fill(self,"hideCog",{},globals.HLKeyBinderHelperWidget)})},
  1527. args: [],
  1528. source: "hideCog\x0a\x09'#cog-helper' asJQuery hide",
  1529. messageSends: ["hide", "asJQuery"],
  1530. referencedClasses: []
  1531. }),
  1532. globals.HLKeyBinderHelperWidget);
  1533. smalltalk.addMethod(
  1534. smalltalk.method({
  1535. selector: "keyBinder",
  1536. protocol: 'accessing',
  1537. fn: function (){
  1538. var self=this;
  1539. var $1;
  1540. $1=self["@keyBinder"];
  1541. return $1;
  1542. },
  1543. args: [],
  1544. source: "keyBinder\x0a\x09^ keyBinder",
  1545. messageSends: [],
  1546. referencedClasses: []
  1547. }),
  1548. globals.HLKeyBinderHelperWidget);
  1549. smalltalk.addMethod(
  1550. smalltalk.method({
  1551. selector: "keyBinder:",
  1552. protocol: 'accessing',
  1553. fn: function (aKeyBinder){
  1554. var self=this;
  1555. self["@keyBinder"]=aKeyBinder;
  1556. return self},
  1557. args: ["aKeyBinder"],
  1558. source: "keyBinder: aKeyBinder\x0a\x09keyBinder := aKeyBinder",
  1559. messageSends: [],
  1560. referencedClasses: []
  1561. }),
  1562. globals.HLKeyBinderHelperWidget);
  1563. smalltalk.addMethod(
  1564. smalltalk.method({
  1565. selector: "mainId",
  1566. protocol: 'accessing',
  1567. fn: function (){
  1568. var self=this;
  1569. return "binding-helper-main";
  1570. },
  1571. args: [],
  1572. source: "mainId\x0a\x09^ 'binding-helper-main'",
  1573. messageSends: [],
  1574. referencedClasses: []
  1575. }),
  1576. globals.HLKeyBinderHelperWidget);
  1577. smalltalk.addMethod(
  1578. smalltalk.method({
  1579. selector: "renderBindingActionFor:on:",
  1580. protocol: 'rendering',
  1581. fn: function (aBinding,html){
  1582. var self=this;
  1583. return smalltalk.withContext(function($ctx1) {
  1584. var $1,$3,$4,$5,$6,$2;
  1585. $1=_st(html)._span();
  1586. _st($1)._class_("command");
  1587. $ctx1.sendIdx["class:"]=1;
  1588. $2=_st($1)._with_((function(){
  1589. return smalltalk.withContext(function($ctx2) {
  1590. $3=_st(html)._strong();
  1591. _st($3)._class_("label");
  1592. $ctx2.sendIdx["class:"]=2;
  1593. $4=_st($3)._with_(_st(_st(aBinding)._shortcut())._asLowercase());
  1594. $ctx2.sendIdx["with:"]=2;
  1595. $4;
  1596. $5=_st(html)._a();
  1597. _st($5)._class_("action");
  1598. _st($5)._with_(_st(aBinding)._displayLabel());
  1599. $6=_st($5)._onClick_((function(){
  1600. return smalltalk.withContext(function($ctx3) {
  1601. return _st(self._keyBinder())._applyBinding_(aBinding);
  1602. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1603. return $6;
  1604. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1605. $ctx1.sendIdx["with:"]=1;
  1606. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingActionFor:on:",{aBinding:aBinding,html:html},globals.HLKeyBinderHelperWidget)})},
  1607. args: ["aBinding", "html"],
  1608. 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 ] ]",
  1609. messageSends: ["class:", "span", "with:", "strong", "asLowercase", "shortcut", "a", "displayLabel", "onClick:", "applyBinding:", "keyBinder"],
  1610. referencedClasses: []
  1611. }),
  1612. globals.HLKeyBinderHelperWidget);
  1613. smalltalk.addMethod(
  1614. smalltalk.method({
  1615. selector: "renderBindingGroup:on:",
  1616. protocol: 'rendering',
  1617. fn: function (aBindingGroup,html){
  1618. var self=this;
  1619. return smalltalk.withContext(function($ctx1) {
  1620. var $1;
  1621. _st(_st(_st(aBindingGroup)._activeBindings())._sorted_((function(a,b){
  1622. return smalltalk.withContext(function($ctx2) {
  1623. $1=_st(a)._key();
  1624. $ctx2.sendIdx["key"]=1;
  1625. return _st($1).__lt(_st(b)._key());
  1626. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,1)})})))._do_((function(each){
  1627. return smalltalk.withContext(function($ctx2) {
  1628. return self._renderBindingActionFor_on_(each,html);
  1629. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)})}));
  1630. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingGroup:on:",{aBindingGroup:aBindingGroup,html:html},globals.HLKeyBinderHelperWidget)})},
  1631. args: ["aBindingGroup", "html"],
  1632. 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 ]",
  1633. messageSends: ["do:", "sorted:", "activeBindings", "<", "key", "renderBindingActionFor:on:"],
  1634. referencedClasses: []
  1635. }),
  1636. globals.HLKeyBinderHelperWidget);
  1637. smalltalk.addMethod(
  1638. smalltalk.method({
  1639. selector: "renderCloseOn:",
  1640. protocol: 'rendering',
  1641. fn: function (html){
  1642. var self=this;
  1643. return smalltalk.withContext(function($ctx1) {
  1644. var $1,$2;
  1645. $1=_st(html)._a();
  1646. _st($1)._class_("close");
  1647. $ctx1.sendIdx["class:"]=1;
  1648. _st($1)._with_((function(){
  1649. return smalltalk.withContext(function($ctx2) {
  1650. return _st(_st(html)._tag_("i"))._class_("icon-remove");
  1651. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1652. $2=_st($1)._onClick_((function(){
  1653. return smalltalk.withContext(function($ctx2) {
  1654. return _st(self._keyBinder())._deactivate();
  1655. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1656. return self}, function($ctx1) {$ctx1.fill(self,"renderCloseOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1657. args: ["html"],
  1658. 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 ]",
  1659. messageSends: ["class:", "a", "with:", "tag:", "onClick:", "deactivate", "keyBinder"],
  1660. referencedClasses: []
  1661. }),
  1662. globals.HLKeyBinderHelperWidget);
  1663. smalltalk.addMethod(
  1664. smalltalk.method({
  1665. selector: "renderCog",
  1666. protocol: 'rendering',
  1667. fn: function (){
  1668. var self=this;
  1669. return smalltalk.withContext(function($ctx1) {
  1670. var $1,$3,$4,$2;
  1671. _st((function(html){
  1672. return smalltalk.withContext(function($ctx2) {
  1673. $1=_st(html)._div();
  1674. _st($1)._id_("cog-helper");
  1675. $2=_st($1)._with_((function(){
  1676. return smalltalk.withContext(function($ctx3) {
  1677. $3=_st(html)._a();
  1678. _st($3)._with_((function(){
  1679. return smalltalk.withContext(function($ctx4) {
  1680. return _st(_st(html)._tag_("i"))._class_("icon-cog");
  1681. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,3)})}));
  1682. $4=_st($3)._onClick_((function(){
  1683. return smalltalk.withContext(function($ctx4) {
  1684. return _st(self._keyBinder())._activate();
  1685. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,4)})}));
  1686. return $4;
  1687. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1688. $ctx2.sendIdx["with:"]=1;
  1689. return $2;
  1690. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})}))._appendToJQuery_("body"._asJQuery());
  1691. return self}, function($ctx1) {$ctx1.fill(self,"renderCog",{},globals.HLKeyBinderHelperWidget)})},
  1692. args: [],
  1693. 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",
  1694. messageSends: ["appendToJQuery:", "id:", "div", "with:", "a", "class:", "tag:", "onClick:", "activate", "keyBinder", "asJQuery"],
  1695. referencedClasses: []
  1696. }),
  1697. globals.HLKeyBinderHelperWidget);
  1698. smalltalk.addMethod(
  1699. smalltalk.method({
  1700. selector: "renderContentOn:",
  1701. protocol: 'rendering',
  1702. fn: function (html){
  1703. var self=this;
  1704. return smalltalk.withContext(function($ctx1) {
  1705. var $1,$2,$3,$5,$6,$4;
  1706. $1=_st(html)._div();
  1707. $ctx1.sendIdx["div"]=1;
  1708. _st($1)._id_("overlay");
  1709. $ctx1.sendIdx["id:"]=1;
  1710. _st($1)._class_("helper_overlay");
  1711. $ctx1.sendIdx["class:"]=1;
  1712. $2=_st($1)._onClick_((function(){
  1713. return smalltalk.withContext(function($ctx2) {
  1714. return self._deactivate();
  1715. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1716. $3=_st(html)._div();
  1717. $ctx1.sendIdx["div"]=2;
  1718. _st($3)._class_(self._cssClass());
  1719. $4=_st($3)._with_((function(){
  1720. return smalltalk.withContext(function($ctx2) {
  1721. self._renderLabelOn_(html);
  1722. $5=_st(html)._div();
  1723. _st($5)._id_(self._mainId());
  1724. $6=_st($5)._with_((function(){
  1725. return smalltalk.withContext(function($ctx3) {
  1726. return self._renderSelectedBindingOn_(html);
  1727. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1728. $6;
  1729. return self._renderCloseOn_(html);
  1730. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1731. $ctx1.sendIdx["with:"]=1;
  1732. _st(":focus"._asJQuery())._blur();
  1733. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1734. args: ["html"],
  1735. 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",
  1736. messageSends: ["id:", "div", "class:", "onClick:", "deactivate", "cssClass", "with:", "renderLabelOn:", "mainId", "renderSelectedBindingOn:", "renderCloseOn:", "blur", "asJQuery"],
  1737. referencedClasses: []
  1738. }),
  1739. globals.HLKeyBinderHelperWidget);
  1740. smalltalk.addMethod(
  1741. smalltalk.method({
  1742. selector: "renderLabelOn:",
  1743. protocol: 'rendering',
  1744. fn: function (html){
  1745. var self=this;
  1746. return smalltalk.withContext(function($ctx1) {
  1747. var $1,$3,$5,$4,$2;
  1748. $1=_st(html)._span();
  1749. _st($1)._class_("selected");
  1750. $3=$1;
  1751. $5=_st(self._selectedBinding())._label();
  1752. if(($receiver = $5) == nil || $receiver == null){
  1753. $4="Action";
  1754. } else {
  1755. $4=$5;
  1756. };
  1757. $2=_st($3)._with_($4);
  1758. return self}, function($ctx1) {$ctx1.fill(self,"renderLabelOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1759. args: ["html"],
  1760. source: "renderLabelOn: html\x0a\x09\x09html span \x0a \x09class: 'selected'; \x0a with: (self selectedBinding label ifNil: [ 'Action' ])",
  1761. messageSends: ["class:", "span", "with:", "ifNil:", "label", "selectedBinding"],
  1762. referencedClasses: []
  1763. }),
  1764. globals.HLKeyBinderHelperWidget);
  1765. smalltalk.addMethod(
  1766. smalltalk.method({
  1767. selector: "renderSelectedBindingOn:",
  1768. protocol: 'rendering',
  1769. fn: function (html){
  1770. var self=this;
  1771. return smalltalk.withContext(function($ctx1) {
  1772. _st(self._selectedBinding())._renderOn_html_(self,html);
  1773. return self}, function($ctx1) {$ctx1.fill(self,"renderSelectedBindingOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1774. args: ["html"],
  1775. source: "renderSelectedBindingOn: html\x0a\x09self selectedBinding renderOn: self html: html",
  1776. messageSends: ["renderOn:html:", "selectedBinding"],
  1777. referencedClasses: []
  1778. }),
  1779. globals.HLKeyBinderHelperWidget);
  1780. smalltalk.addMethod(
  1781. smalltalk.method({
  1782. selector: "renderStart",
  1783. protocol: 'rendering',
  1784. fn: function (){
  1785. var self=this;
  1786. return smalltalk.withContext(function($ctx1) {
  1787. var $1,$3,$5,$6,$4,$2,$7;
  1788. $1="#helper"._asJQuery();
  1789. $ctx1.sendIdx["asJQuery"]=1;
  1790. _st($1)._remove();
  1791. $2=(function(html){
  1792. return smalltalk.withContext(function($ctx2) {
  1793. $3=_st(html)._div();
  1794. _st($3)._id_("helper");
  1795. $5=$3;
  1796. $6=_st("Press ".__comma(_st(self._keyBinder())._activationKeyLabel())).__comma(" to start");
  1797. $ctx2.sendIdx[","]=1;
  1798. $4=_st($5)._with_($6);
  1799. return $4;
  1800. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})});
  1801. $7="body"._asJQuery();
  1802. $ctx1.sendIdx["asJQuery"]=2;
  1803. _st($2)._appendToJQuery_($7);
  1804. _st((function(){
  1805. return smalltalk.withContext(function($ctx2) {
  1806. return _st("#helper"._asJQuery())._fadeOut_((1000));
  1807. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}))._valueWithTimeout_((2000));
  1808. return self}, function($ctx1) {$ctx1.fill(self,"renderStart",{},globals.HLKeyBinderHelperWidget)})},
  1809. args: [],
  1810. 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",
  1811. messageSends: ["remove", "asJQuery", "appendToJQuery:", "id:", "div", "with:", ",", "activationKeyLabel", "keyBinder", "valueWithTimeout:", "fadeOut:"],
  1812. referencedClasses: []
  1813. }),
  1814. globals.HLKeyBinderHelperWidget);
  1815. smalltalk.addMethod(
  1816. smalltalk.method({
  1817. selector: "selectedBinding",
  1818. protocol: 'accessing',
  1819. fn: function (){
  1820. var self=this;
  1821. return smalltalk.withContext(function($ctx1) {
  1822. var $1;
  1823. $1=_st(self._keyBinder())._selectedBinding();
  1824. return $1;
  1825. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinderHelperWidget)})},
  1826. args: [],
  1827. source: "selectedBinding\x0a\x09^ self keyBinder selectedBinding",
  1828. messageSends: ["selectedBinding", "keyBinder"],
  1829. referencedClasses: []
  1830. }),
  1831. globals.HLKeyBinderHelperWidget);
  1832. smalltalk.addMethod(
  1833. smalltalk.method({
  1834. selector: "show",
  1835. protocol: 'actions',
  1836. fn: function (){
  1837. var self=this;
  1838. return smalltalk.withContext(function($ctx1) {
  1839. self._hideCog();
  1840. self._appendToJQuery_("body"._asJQuery());
  1841. return self}, function($ctx1) {$ctx1.fill(self,"show",{},globals.HLKeyBinderHelperWidget)})},
  1842. args: [],
  1843. source: "show\x0a\x09self hideCog.\x0a\x09self appendToJQuery: 'body' asJQuery",
  1844. messageSends: ["hideCog", "appendToJQuery:", "asJQuery"],
  1845. referencedClasses: []
  1846. }),
  1847. globals.HLKeyBinderHelperWidget);
  1848. smalltalk.addMethod(
  1849. smalltalk.method({
  1850. selector: "showCog",
  1851. protocol: 'actions',
  1852. fn: function (){
  1853. var self=this;
  1854. return smalltalk.withContext(function($ctx1) {
  1855. _st("#cog-helper"._asJQuery())._show();
  1856. return self}, function($ctx1) {$ctx1.fill(self,"showCog",{},globals.HLKeyBinderHelperWidget)})},
  1857. args: [],
  1858. source: "showCog\x0a\x09'#cog-helper' asJQuery show",
  1859. messageSends: ["show", "asJQuery"],
  1860. referencedClasses: []
  1861. }),
  1862. globals.HLKeyBinderHelperWidget);
  1863. smalltalk.addMethod(
  1864. smalltalk.method({
  1865. selector: "showWidget:",
  1866. protocol: 'actions',
  1867. fn: function (aWidget){
  1868. var self=this;
  1869. return smalltalk.withContext(function($ctx1) {
  1870. var $3,$2,$1;
  1871. $3=self._mainId();
  1872. $ctx1.sendIdx["mainId"]=1;
  1873. $2="#".__comma($3);
  1874. $ctx1.sendIdx[","]=1;
  1875. $1=_st($2)._asJQuery();
  1876. $ctx1.sendIdx["asJQuery"]=1;
  1877. _st($1)._empty();
  1878. _st(aWidget)._appendToJQuery_(_st("#".__comma(self._mainId()))._asJQuery());
  1879. return self}, function($ctx1) {$ctx1.fill(self,"showWidget:",{aWidget:aWidget},globals.HLKeyBinderHelperWidget)})},
  1880. args: ["aWidget"],
  1881. 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",
  1882. messageSends: ["empty", "asJQuery", ",", "mainId", "appendToJQuery:"],
  1883. referencedClasses: []
  1884. }),
  1885. globals.HLKeyBinderHelperWidget);
  1886. smalltalk.addMethod(
  1887. smalltalk.method({
  1888. selector: "on:",
  1889. protocol: 'instance creation',
  1890. fn: function (aKeyBinder){
  1891. var self=this;
  1892. return smalltalk.withContext(function($ctx1) {
  1893. var $2,$3,$1;
  1894. $2=self._new();
  1895. _st($2)._keyBinder_(aKeyBinder);
  1896. $3=_st($2)._yourself();
  1897. $1=$3;
  1898. return $1;
  1899. }, function($ctx1) {$ctx1.fill(self,"on:",{aKeyBinder:aKeyBinder},globals.HLKeyBinderHelperWidget.klass)})},
  1900. args: ["aKeyBinder"],
  1901. source: "on: aKeyBinder\x0a\x09^ self new\x0a \x09keyBinder: aKeyBinder;\x0a yourself",
  1902. messageSends: ["keyBinder:", "new", "yourself"],
  1903. referencedClasses: []
  1904. }),
  1905. globals.HLKeyBinderHelperWidget.klass);
  1906. smalltalk.addClass('HLRepeatedKeyDownHandler', globals.Object, ['repeatInterval', 'delay', 'interval', 'keyBindings', 'widget', 'keyDown'], 'Helios-KeyBindings');
  1907. 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.";
  1908. smalltalk.addMethod(
  1909. smalltalk.method({
  1910. selector: "bindKeys",
  1911. protocol: 'binding',
  1912. fn: function (){
  1913. var self=this;
  1914. return smalltalk.withContext(function($ctx1) {
  1915. _st(self._widget())._bindKeyDown_keyUp_((function(e){
  1916. return smalltalk.withContext(function($ctx2) {
  1917. return self._handleKeyDown_(e);
  1918. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,1)})}),(function(e){
  1919. return smalltalk.withContext(function($ctx2) {
  1920. return self._handleKeyUp();
  1921. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,2)})}));
  1922. return self}, function($ctx1) {$ctx1.fill(self,"bindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  1923. args: [],
  1924. source: "bindKeys\x0a\x09self widget \x0a\x09\x09bindKeyDown: [ :e | self handleKeyDown: e ] \x0a\x09\x09keyUp: [ :e | self handleKeyUp ]",
  1925. messageSends: ["bindKeyDown:keyUp:", "widget", "handleKeyDown:", "handleKeyUp"],
  1926. referencedClasses: []
  1927. }),
  1928. globals.HLRepeatedKeyDownHandler);
  1929. smalltalk.addMethod(
  1930. smalltalk.method({
  1931. selector: "defaultRepeatInterval",
  1932. protocol: 'defaults',
  1933. fn: function (){
  1934. var self=this;
  1935. return (70);
  1936. },
  1937. args: [],
  1938. source: "defaultRepeatInterval\x0a\x09^ 70",
  1939. messageSends: [],
  1940. referencedClasses: []
  1941. }),
  1942. globals.HLRepeatedKeyDownHandler);
  1943. smalltalk.addMethod(
  1944. smalltalk.method({
  1945. selector: "handleEvent:forKey:action:",
  1946. protocol: 'events handling',
  1947. fn: function (anEvent,anInteger,aBlock){
  1948. var self=this;
  1949. return smalltalk.withContext(function($ctx1) {
  1950. var $1;
  1951. $1=_st(_st(_st(anEvent)._which()).__eq(anInteger))._and_((function(){
  1952. return smalltalk.withContext(function($ctx2) {
  1953. return _st(self._isKeyDown())._not();
  1954. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1955. if(smalltalk.assert($1)){
  1956. self._whileKeyDownDo_(aBlock);
  1957. };
  1958. return self}, function($ctx1) {$ctx1.fill(self,"handleEvent:forKey:action:",{anEvent:anEvent,anInteger:anInteger,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  1959. args: ["anEvent", "anInteger", "aBlock"],
  1960. source: "handleEvent: anEvent forKey: anInteger action: aBlock\x0a\x09(anEvent which = anInteger and: [ self isKeyDown not ])\x0a\x09\x09ifTrue: [ self whileKeyDownDo: aBlock ]",
  1961. messageSends: ["ifTrue:", "and:", "=", "which", "not", "isKeyDown", "whileKeyDownDo:"],
  1962. referencedClasses: []
  1963. }),
  1964. globals.HLRepeatedKeyDownHandler);
  1965. smalltalk.addMethod(
  1966. smalltalk.method({
  1967. selector: "handleKeyDown:",
  1968. protocol: 'events handling',
  1969. fn: function (anEvent){
  1970. var self=this;
  1971. return smalltalk.withContext(function($ctx1) {
  1972. _st(self._keyBindings())._keysAndValuesDo_((function(key,action){
  1973. return smalltalk.withContext(function($ctx2) {
  1974. return self._handleEvent_forKey_action_(anEvent,key,action);
  1975. }, function($ctx2) {$ctx2.fillBlock({key:key,action:action},$ctx1,1)})}));
  1976. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{anEvent:anEvent},globals.HLRepeatedKeyDownHandler)})},
  1977. args: ["anEvent"],
  1978. source: "handleKeyDown: anEvent\x0a\x09self keyBindings keysAndValuesDo: [ :key :action | \x0a\x09\x09self handleEvent: anEvent forKey: key action: action ]",
  1979. messageSends: ["keysAndValuesDo:", "keyBindings", "handleEvent:forKey:action:"],
  1980. referencedClasses: []
  1981. }),
  1982. globals.HLRepeatedKeyDownHandler);
  1983. smalltalk.addMethod(
  1984. smalltalk.method({
  1985. selector: "handleKeyUp",
  1986. protocol: 'events handling',
  1987. fn: function (){
  1988. var self=this;
  1989. return smalltalk.withContext(function($ctx1) {
  1990. var $1,$2,$3;
  1991. $1=self._isKeyDown();
  1992. if(smalltalk.assert($1)){
  1993. self["@keyDown"]=false;
  1994. self["@keyDown"];
  1995. $2=self["@interval"];
  1996. if(($receiver = $2) == nil || $receiver == null){
  1997. $2;
  1998. } else {
  1999. _st(self["@interval"])._clearInterval();
  2000. };
  2001. $3=self["@delay"];
  2002. if(($receiver = $3) == nil || $receiver == null){
  2003. $3;
  2004. } else {
  2005. _st(self["@delay"])._clearTimeout();
  2006. };
  2007. };
  2008. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyUp",{},globals.HLRepeatedKeyDownHandler)})},
  2009. args: [],
  2010. source: "handleKeyUp\x0a\x09self isKeyDown ifTrue: [\x0a\x09\x09keyDown := false.\x0a\x09\x09interval ifNotNil: [ interval clearInterval ].\x0a\x09\x09delay ifNotNil: [ delay clearTimeout ] ]",
  2011. messageSends: ["ifTrue:", "isKeyDown", "ifNotNil:", "clearInterval", "clearTimeout"],
  2012. referencedClasses: []
  2013. }),
  2014. globals.HLRepeatedKeyDownHandler);
  2015. smalltalk.addMethod(
  2016. smalltalk.method({
  2017. selector: "isKeyDown",
  2018. protocol: 'testing',
  2019. fn: function (){
  2020. var self=this;
  2021. return smalltalk.withContext(function($ctx1) {
  2022. var $2,$1;
  2023. $2=self["@keyDown"];
  2024. if(($receiver = $2) == nil || $receiver == null){
  2025. $1=false;
  2026. } else {
  2027. $1=$2;
  2028. };
  2029. return $1;
  2030. }, function($ctx1) {$ctx1.fill(self,"isKeyDown",{},globals.HLRepeatedKeyDownHandler)})},
  2031. args: [],
  2032. source: "isKeyDown\x0a\x09^ keyDown ifNil: [ false ]",
  2033. messageSends: ["ifNil:"],
  2034. referencedClasses: []
  2035. }),
  2036. globals.HLRepeatedKeyDownHandler);
  2037. smalltalk.addMethod(
  2038. smalltalk.method({
  2039. selector: "keyBindings",
  2040. protocol: 'accessing',
  2041. fn: function (){
  2042. var self=this;
  2043. function $Dictionary(){return globals.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  2044. return smalltalk.withContext(function($ctx1) {
  2045. var $2,$1;
  2046. $2=self["@keyBindings"];
  2047. if(($receiver = $2) == nil || $receiver == null){
  2048. self["@keyBindings"]=_st($Dictionary())._new();
  2049. $1=self["@keyBindings"];
  2050. } else {
  2051. $1=$2;
  2052. };
  2053. return $1;
  2054. }, function($ctx1) {$ctx1.fill(self,"keyBindings",{},globals.HLRepeatedKeyDownHandler)})},
  2055. args: [],
  2056. source: "keyBindings\x0a\x09^ keyBindings ifNil: [ keyBindings := Dictionary new ]",
  2057. messageSends: ["ifNil:", "new"],
  2058. referencedClasses: ["Dictionary"]
  2059. }),
  2060. globals.HLRepeatedKeyDownHandler);
  2061. smalltalk.addMethod(
  2062. smalltalk.method({
  2063. selector: "rebindKeys",
  2064. protocol: 'binding',
  2065. fn: function (){
  2066. var self=this;
  2067. return smalltalk.withContext(function($ctx1) {
  2068. var $1;
  2069. self._unbindKeys();
  2070. $1=self._bindKeys();
  2071. return self}, function($ctx1) {$ctx1.fill(self,"rebindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2072. args: [],
  2073. source: "rebindKeys\x0a\x09self \x0a\x09\x09unbindKeys;\x0a\x09\x09bindKeys",
  2074. messageSends: ["unbindKeys", "bindKeys"],
  2075. referencedClasses: []
  2076. }),
  2077. globals.HLRepeatedKeyDownHandler);
  2078. smalltalk.addMethod(
  2079. smalltalk.method({
  2080. selector: "repeatInterval",
  2081. protocol: 'accessing',
  2082. fn: function (){
  2083. var self=this;
  2084. return smalltalk.withContext(function($ctx1) {
  2085. var $2,$1;
  2086. $2=self["@repeatInterval"];
  2087. if(($receiver = $2) == nil || $receiver == null){
  2088. $1=self._defaultRepeatInterval();
  2089. } else {
  2090. $1=$2;
  2091. };
  2092. return $1;
  2093. }, function($ctx1) {$ctx1.fill(self,"repeatInterval",{},globals.HLRepeatedKeyDownHandler)})},
  2094. args: [],
  2095. source: "repeatInterval\x0a\x09^ repeatInterval ifNil: [ self defaultRepeatInterval ]",
  2096. messageSends: ["ifNil:", "defaultRepeatInterval"],
  2097. referencedClasses: []
  2098. }),
  2099. globals.HLRepeatedKeyDownHandler);
  2100. smalltalk.addMethod(
  2101. smalltalk.method({
  2102. selector: "repeatInterval:",
  2103. protocol: 'accessing',
  2104. fn: function (anInteger){
  2105. var self=this;
  2106. self["@repeatInterval"]=anInteger;
  2107. return self},
  2108. args: ["anInteger"],
  2109. source: "repeatInterval: anInteger\x0a\x09repeatInterval := anInteger",
  2110. messageSends: [],
  2111. referencedClasses: []
  2112. }),
  2113. globals.HLRepeatedKeyDownHandler);
  2114. smalltalk.addMethod(
  2115. smalltalk.method({
  2116. selector: "startRepeatingAction:",
  2117. protocol: 'actions',
  2118. fn: function (aBlock){
  2119. var self=this;
  2120. return smalltalk.withContext(function($ctx1) {
  2121. var $2,$1;
  2122. $1=_st((function(){
  2123. return smalltalk.withContext(function($ctx2) {
  2124. $2=_st(self._widget())._hasFocus();
  2125. if(smalltalk.assert($2)){
  2126. return _st(aBlock)._value();
  2127. } else {
  2128. return self._handleKeyUp();
  2129. };
  2130. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithInterval_(self._repeatInterval());
  2131. return $1;
  2132. }, function($ctx1) {$ctx1.fill(self,"startRepeatingAction:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2133. args: ["aBlock"],
  2134. source: "startRepeatingAction: aBlock\x0a\x09^ [ (self widget hasFocus)\x0a\x09\x09ifTrue: [ aBlock value ]\x0a\x09\x09ifFalse: [ self handleKeyUp ] ] valueWithInterval: self repeatInterval",
  2135. messageSends: ["valueWithInterval:", "ifTrue:ifFalse:", "hasFocus", "widget", "value", "handleKeyUp", "repeatInterval"],
  2136. referencedClasses: []
  2137. }),
  2138. globals.HLRepeatedKeyDownHandler);
  2139. smalltalk.addMethod(
  2140. smalltalk.method({
  2141. selector: "unbindKeys",
  2142. protocol: 'binding',
  2143. fn: function (){
  2144. var self=this;
  2145. return smalltalk.withContext(function($ctx1) {
  2146. _st(self._widget())._unbindKeyDownKeyUp();
  2147. return self}, function($ctx1) {$ctx1.fill(self,"unbindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2148. args: [],
  2149. source: "unbindKeys\x0a\x09self widget unbindKeyDownKeyUp",
  2150. messageSends: ["unbindKeyDownKeyUp", "widget"],
  2151. referencedClasses: []
  2152. }),
  2153. globals.HLRepeatedKeyDownHandler);
  2154. smalltalk.addMethod(
  2155. smalltalk.method({
  2156. selector: "whileKeyDown:do:",
  2157. protocol: 'actions',
  2158. fn: function (aKey,aBlock){
  2159. var self=this;
  2160. return smalltalk.withContext(function($ctx1) {
  2161. _st(self._keyBindings())._at_put_(aKey,aBlock);
  2162. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDown:do:",{aKey:aKey,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2163. args: ["aKey", "aBlock"],
  2164. source: "whileKeyDown: aKey do: aBlock\x0a\x09self keyBindings at: aKey put: aBlock",
  2165. messageSends: ["at:put:", "keyBindings"],
  2166. referencedClasses: []
  2167. }),
  2168. globals.HLRepeatedKeyDownHandler);
  2169. smalltalk.addMethod(
  2170. smalltalk.method({
  2171. selector: "whileKeyDownDo:",
  2172. protocol: 'events handling',
  2173. fn: function (aBlock){
  2174. var self=this;
  2175. return smalltalk.withContext(function($ctx1) {
  2176. self["@keyDown"]=true;
  2177. _st(aBlock)._value();
  2178. self["@delay"]=_st((function(){
  2179. return smalltalk.withContext(function($ctx2) {
  2180. self["@interval"]=self._startRepeatingAction_(aBlock);
  2181. return self["@interval"];
  2182. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithTimeout_((300));
  2183. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDownDo:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2184. args: ["aBlock"],
  2185. source: "whileKeyDownDo: aBlock\x0a\x09keyDown := true.\x0a\x09aBlock value.\x0a\x09delay := [ interval := self startRepeatingAction: aBlock ] \x0a\x09\x09valueWithTimeout: 300",
  2186. messageSends: ["value", "valueWithTimeout:", "startRepeatingAction:"],
  2187. referencedClasses: []
  2188. }),
  2189. globals.HLRepeatedKeyDownHandler);
  2190. smalltalk.addMethod(
  2191. smalltalk.method({
  2192. selector: "widget",
  2193. protocol: 'accessing',
  2194. fn: function (){
  2195. var self=this;
  2196. var $1;
  2197. $1=self["@widget"];
  2198. return $1;
  2199. },
  2200. args: [],
  2201. source: "widget\x0a\x09^ widget",
  2202. messageSends: [],
  2203. referencedClasses: []
  2204. }),
  2205. globals.HLRepeatedKeyDownHandler);
  2206. smalltalk.addMethod(
  2207. smalltalk.method({
  2208. selector: "widget:",
  2209. protocol: 'accessing',
  2210. fn: function (aWidget){
  2211. var self=this;
  2212. self["@widget"]=aWidget;
  2213. return self},
  2214. args: ["aWidget"],
  2215. source: "widget: aWidget\x0a\x09widget := aWidget",
  2216. messageSends: [],
  2217. referencedClasses: []
  2218. }),
  2219. globals.HLRepeatedKeyDownHandler);
  2220. smalltalk.addMethod(
  2221. smalltalk.method({
  2222. selector: "on:",
  2223. protocol: 'instance creation',
  2224. fn: function (aWidget){
  2225. var self=this;
  2226. return smalltalk.withContext(function($ctx1) {
  2227. var $2,$3,$1;
  2228. $2=self._new();
  2229. _st($2)._widget_(aWidget);
  2230. $3=_st($2)._yourself();
  2231. $1=$3;
  2232. return $1;
  2233. }, function($ctx1) {$ctx1.fill(self,"on:",{aWidget:aWidget},globals.HLRepeatedKeyDownHandler.klass)})},
  2234. args: ["aWidget"],
  2235. source: "on: aWidget\x0a\x09^ self new\x0a\x09\x09widget: aWidget;\x0a\x09\x09yourself",
  2236. messageSends: ["widget:", "new", "yourself"],
  2237. referencedClasses: []
  2238. }),
  2239. globals.HLRepeatedKeyDownHandler.klass);
  2240. });