1
0

Helios-KeyBindings.js 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  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 smalltalk.withContext(function($ctx2) {
  467. return nil;
  468. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  469. return $1;
  470. }, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString},globals.HLBindingGroup)})},
  471. args: ["aString"],
  472. source: "at: aString\x0a\x09^ self bindings \x0a \x09detect: [ :each | each label = aString ]\x0a \x09ifNone: [ nil ]",
  473. messageSends: ["detect:ifNone:", "bindings", "=", "label"],
  474. referencedClasses: []
  475. }),
  476. globals.HLBindingGroup);
  477. smalltalk.addMethod(
  478. smalltalk.method({
  479. selector: "at:add:",
  480. protocol: 'accessing',
  481. fn: function (aString,aBinding){
  482. var self=this;
  483. var binding;
  484. return smalltalk.withContext(function($ctx1) {
  485. var $1;
  486. binding=self._at_(aString);
  487. $1=binding;
  488. if(($receiver = $1) == nil || $receiver == null){
  489. return self;
  490. } else {
  491. $1;
  492. };
  493. _st(binding)._add_(aBinding);
  494. return self}, function($ctx1) {$ctx1.fill(self,"at:add:",{aString:aString,aBinding:aBinding,binding:binding},globals.HLBindingGroup)})},
  495. args: ["aString", "aBinding"],
  496. 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",
  497. messageSends: ["at:", "ifNil:", "add:"],
  498. referencedClasses: []
  499. }),
  500. globals.HLBindingGroup);
  501. smalltalk.addMethod(
  502. smalltalk.method({
  503. selector: "atKey:",
  504. protocol: 'accessing',
  505. fn: function (anInteger){
  506. var self=this;
  507. return smalltalk.withContext(function($ctx1) {
  508. var $1;
  509. $1=_st(self._bindings())._detect_ifNone_((function(each){
  510. return smalltalk.withContext(function($ctx2) {
  511. return _st(_st(each)._key()).__eq(anInteger);
  512. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}),(function(){
  513. return smalltalk.withContext(function($ctx2) {
  514. return nil;
  515. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  516. return $1;
  517. }, function($ctx1) {$ctx1.fill(self,"atKey:",{anInteger:anInteger},globals.HLBindingGroup)})},
  518. args: ["anInteger"],
  519. source: "atKey: anInteger\x0a\x09^ self bindings \x0a \x09detect: [ :each | each key = anInteger ]\x0a \x09ifNone: [ nil ]",
  520. messageSends: ["detect:ifNone:", "bindings", "=", "key"],
  521. referencedClasses: []
  522. }),
  523. globals.HLBindingGroup);
  524. smalltalk.addMethod(
  525. smalltalk.method({
  526. selector: "bindings",
  527. protocol: 'accessing',
  528. fn: function (){
  529. var self=this;
  530. function $OrderedCollection(){return globals.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  531. return smalltalk.withContext(function($ctx1) {
  532. var $2,$1;
  533. $2=self["@bindings"];
  534. if(($receiver = $2) == nil || $receiver == null){
  535. self["@bindings"]=_st($OrderedCollection())._new();
  536. $1=self["@bindings"];
  537. } else {
  538. $1=$2;
  539. };
  540. return $1;
  541. }, function($ctx1) {$ctx1.fill(self,"bindings",{},globals.HLBindingGroup)})},
  542. args: [],
  543. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := OrderedCollection new ]",
  544. messageSends: ["ifNil:", "new"],
  545. referencedClasses: ["OrderedCollection"]
  546. }),
  547. globals.HLBindingGroup);
  548. smalltalk.addMethod(
  549. smalltalk.method({
  550. selector: "displayLabel",
  551. protocol: 'accessing',
  552. fn: function (){
  553. var self=this;
  554. return smalltalk.withContext(function($ctx1) {
  555. var $1;
  556. $1=_st(globals.HLBindingGroup.superclass.fn.prototype._displayLabel.apply(_st(self), [])).__comma("...");
  557. return $1;
  558. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},globals.HLBindingGroup)})},
  559. args: [],
  560. source: "displayLabel\x0a\x09^ super displayLabel, '...'",
  561. messageSends: [",", "displayLabel"],
  562. referencedClasses: []
  563. }),
  564. globals.HLBindingGroup);
  565. smalltalk.addMethod(
  566. smalltalk.method({
  567. selector: "isActive",
  568. protocol: 'testing',
  569. fn: function (){
  570. var self=this;
  571. return smalltalk.withContext(function($ctx1) {
  572. var $1;
  573. $1=_st(self._activeBindings())._notEmpty();
  574. return $1;
  575. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLBindingGroup)})},
  576. args: [],
  577. source: "isActive\x0a\x09^ self activeBindings notEmpty",
  578. messageSends: ["notEmpty", "activeBindings"],
  579. referencedClasses: []
  580. }),
  581. globals.HLBindingGroup);
  582. smalltalk.addMethod(
  583. smalltalk.method({
  584. selector: "release",
  585. protocol: 'actions',
  586. fn: function (){
  587. var self=this;
  588. return smalltalk.withContext(function($ctx1) {
  589. _st(self._bindings())._do_((function(each){
  590. return smalltalk.withContext(function($ctx2) {
  591. return _st(each)._release();
  592. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  593. return self}, function($ctx1) {$ctx1.fill(self,"release",{},globals.HLBindingGroup)})},
  594. args: [],
  595. source: "release\x0a\x09self bindings do: [ :each | each release ]",
  596. messageSends: ["do:", "bindings", "release"],
  597. referencedClasses: []
  598. }),
  599. globals.HLBindingGroup);
  600. smalltalk.addMethod(
  601. smalltalk.method({
  602. selector: "renderOn:html:",
  603. protocol: 'rendering',
  604. fn: function (aBindingHelper,html){
  605. var self=this;
  606. return smalltalk.withContext(function($ctx1) {
  607. var $1;
  608. $1=self._isActive();
  609. if(smalltalk.assert($1)){
  610. _st(aBindingHelper)._renderBindingGroup_on_(self,html);
  611. };
  612. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html},globals.HLBindingGroup)})},
  613. args: ["aBindingHelper", "html"],
  614. source: "renderOn: aBindingHelper html: html\x0a\x09self isActive ifTrue: [\x0a\x09\x09aBindingHelper renderBindingGroup: self on: html ]",
  615. messageSends: ["ifTrue:", "isActive", "renderBindingGroup:on:"],
  616. referencedClasses: []
  617. }),
  618. globals.HLBindingGroup);
  619. smalltalk.addClass('HLBindingActionInputWidget', globals.HLWidget, ['input', 'callback', 'status', 'wrapper', 'ghostText', 'message', 'inputCompletion', 'defaultValue', 'messageTag'], 'Helios-KeyBindings');
  620. globals.HLBindingActionInputWidget.comment="My instances are built when a `HLBindingAction` that requires user input is applied.";
  621. smalltalk.addMethod(
  622. smalltalk.method({
  623. selector: "callback",
  624. protocol: 'accessing',
  625. fn: function (){
  626. var self=this;
  627. return smalltalk.withContext(function($ctx1) {
  628. var $2,$1;
  629. $2=self["@callback"];
  630. if(($receiver = $2) == nil || $receiver == null){
  631. self["@callback"]=(function(value){
  632. return smalltalk.withContext(function($ctx2) {
  633. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,2)})});
  634. $1=self["@callback"];
  635. } else {
  636. $1=$2;
  637. };
  638. return $1;
  639. }, function($ctx1) {$ctx1.fill(self,"callback",{},globals.HLBindingActionInputWidget)})},
  640. args: [],
  641. source: "callback\x0a\x09^ callback ifNil: [ callback := [ :value | ] ]",
  642. messageSends: ["ifNil:"],
  643. referencedClasses: []
  644. }),
  645. globals.HLBindingActionInputWidget);
  646. smalltalk.addMethod(
  647. smalltalk.method({
  648. selector: "callback:",
  649. protocol: 'accessing',
  650. fn: function (aBlock){
  651. var self=this;
  652. self["@callback"]=aBlock;
  653. return self},
  654. args: ["aBlock"],
  655. source: "callback: aBlock\x0a\x09callback := aBlock",
  656. messageSends: [],
  657. referencedClasses: []
  658. }),
  659. globals.HLBindingActionInputWidget);
  660. smalltalk.addMethod(
  661. smalltalk.method({
  662. selector: "clearStatus",
  663. protocol: 'actions',
  664. fn: function (){
  665. var self=this;
  666. return smalltalk.withContext(function($ctx1) {
  667. self._status_("info");
  668. self._message_("");
  669. self._refresh();
  670. return self}, function($ctx1) {$ctx1.fill(self,"clearStatus",{},globals.HLBindingActionInputWidget)})},
  671. args: [],
  672. source: "clearStatus\x0a\x09self status: 'info'.\x0a\x09self message: ''.\x0a\x09self refresh",
  673. messageSends: ["status:", "message:", "refresh"],
  674. referencedClasses: []
  675. }),
  676. globals.HLBindingActionInputWidget);
  677. smalltalk.addMethod(
  678. smalltalk.method({
  679. selector: "defaultValue",
  680. protocol: 'accessing',
  681. fn: function (){
  682. var self=this;
  683. return smalltalk.withContext(function($ctx1) {
  684. var $2,$1;
  685. $2=self["@defaultValue"];
  686. if(($receiver = $2) == nil || $receiver == null){
  687. $1="";
  688. } else {
  689. $1=$2;
  690. };
  691. return $1;
  692. }, function($ctx1) {$ctx1.fill(self,"defaultValue",{},globals.HLBindingActionInputWidget)})},
  693. args: [],
  694. source: "defaultValue\x0a\x09^ defaultValue ifNil: [ '' ]",
  695. messageSends: ["ifNil:"],
  696. referencedClasses: []
  697. }),
  698. globals.HLBindingActionInputWidget);
  699. smalltalk.addMethod(
  700. smalltalk.method({
  701. selector: "defaultValue:",
  702. protocol: 'accessing',
  703. fn: function (aString){
  704. var self=this;
  705. self["@defaultValue"]=aString;
  706. return self},
  707. args: ["aString"],
  708. source: "defaultValue: aString\x0a\x09defaultValue := aString",
  709. messageSends: [],
  710. referencedClasses: []
  711. }),
  712. globals.HLBindingActionInputWidget);
  713. smalltalk.addMethod(
  714. smalltalk.method({
  715. selector: "errorStatus",
  716. protocol: 'actions',
  717. fn: function (){
  718. var self=this;
  719. return smalltalk.withContext(function($ctx1) {
  720. self._status_("error");
  721. self._refresh();
  722. return self}, function($ctx1) {$ctx1.fill(self,"errorStatus",{},globals.HLBindingActionInputWidget)})},
  723. args: [],
  724. source: "errorStatus\x0a\x09self status: 'error'.\x0a\x09self refresh",
  725. messageSends: ["status:", "refresh"],
  726. referencedClasses: []
  727. }),
  728. globals.HLBindingActionInputWidget);
  729. smalltalk.addMethod(
  730. smalltalk.method({
  731. selector: "evaluate:",
  732. protocol: 'actions',
  733. fn: function (aString){
  734. var self=this;
  735. function $Error(){return globals.Error||(typeof Error=="undefined"?nil:Error)}
  736. return smalltalk.withContext(function($ctx1) {
  737. _st((function(){
  738. return smalltalk.withContext(function($ctx2) {
  739. return _st(self._callback())._value_(aString);
  740. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._on_do_($Error(),(function(ex){
  741. return smalltalk.withContext(function($ctx2) {
  742. _st(_st(self._input())._asJQuery())._one_do_("keydown",(function(){
  743. return smalltalk.withContext(function($ctx3) {
  744. return self._clearStatus();
  745. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  746. self._message_(_st(ex)._messageText());
  747. return self._errorStatus();
  748. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1,2)})}));
  749. return self}, function($ctx1) {$ctx1.fill(self,"evaluate:",{aString:aString},globals.HLBindingActionInputWidget)})},
  750. args: ["aString"],
  751. 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 ]",
  752. messageSends: ["on:do:", "value:", "callback", "one:do:", "asJQuery", "input", "clearStatus", "message:", "messageText", "errorStatus"],
  753. referencedClasses: ["Error"]
  754. }),
  755. globals.HLBindingActionInputWidget);
  756. smalltalk.addMethod(
  757. smalltalk.method({
  758. selector: "ghostText",
  759. protocol: 'accessing',
  760. fn: function (){
  761. var self=this;
  762. var $1;
  763. $1=self["@ghostText"];
  764. return $1;
  765. },
  766. args: [],
  767. source: "ghostText\x0a\x09^ ghostText",
  768. messageSends: [],
  769. referencedClasses: []
  770. }),
  771. globals.HLBindingActionInputWidget);
  772. smalltalk.addMethod(
  773. smalltalk.method({
  774. selector: "ghostText:",
  775. protocol: 'accessing',
  776. fn: function (aText){
  777. var self=this;
  778. self["@ghostText"]=aText;
  779. return self},
  780. args: ["aText"],
  781. source: "ghostText: aText\x0a\x09ghostText := aText",
  782. messageSends: [],
  783. referencedClasses: []
  784. }),
  785. globals.HLBindingActionInputWidget);
  786. smalltalk.addMethod(
  787. smalltalk.method({
  788. selector: "input",
  789. protocol: 'accessing',
  790. fn: function (){
  791. var self=this;
  792. var $1;
  793. $1=self["@input"];
  794. return $1;
  795. },
  796. args: [],
  797. source: "input\x0a\x09^ input",
  798. messageSends: [],
  799. referencedClasses: []
  800. }),
  801. globals.HLBindingActionInputWidget);
  802. smalltalk.addMethod(
  803. smalltalk.method({
  804. selector: "inputCompletion",
  805. protocol: 'accessing',
  806. fn: function (){
  807. var self=this;
  808. return smalltalk.withContext(function($ctx1) {
  809. var $2,$1;
  810. $2=self["@inputCompletion"];
  811. if(($receiver = $2) == nil || $receiver == null){
  812. $1=[];
  813. } else {
  814. $1=$2;
  815. };
  816. return $1;
  817. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},globals.HLBindingActionInputWidget)})},
  818. args: [],
  819. source: "inputCompletion\x0a\x09^ inputCompletion ifNil: [ #() ]",
  820. messageSends: ["ifNil:"],
  821. referencedClasses: []
  822. }),
  823. globals.HLBindingActionInputWidget);
  824. smalltalk.addMethod(
  825. smalltalk.method({
  826. selector: "inputCompletion:",
  827. protocol: 'accessing',
  828. fn: function (aCollection){
  829. var self=this;
  830. self["@inputCompletion"]=aCollection;
  831. return self},
  832. args: ["aCollection"],
  833. source: "inputCompletion: aCollection\x0a\x09inputCompletion := aCollection",
  834. messageSends: [],
  835. referencedClasses: []
  836. }),
  837. globals.HLBindingActionInputWidget);
  838. smalltalk.addMethod(
  839. smalltalk.method({
  840. selector: "message",
  841. protocol: 'accessing',
  842. fn: function (){
  843. var self=this;
  844. return smalltalk.withContext(function($ctx1) {
  845. var $2,$1;
  846. $2=self["@message"];
  847. if(($receiver = $2) == nil || $receiver == null){
  848. self["@message"]="";
  849. $1=self["@message"];
  850. } else {
  851. $1=$2;
  852. };
  853. return $1;
  854. }, function($ctx1) {$ctx1.fill(self,"message",{},globals.HLBindingActionInputWidget)})},
  855. args: [],
  856. source: "message\x0a\x09^ message ifNil: [ message := '' ]",
  857. messageSends: ["ifNil:"],
  858. referencedClasses: []
  859. }),
  860. globals.HLBindingActionInputWidget);
  861. smalltalk.addMethod(
  862. smalltalk.method({
  863. selector: "message:",
  864. protocol: 'accessing',
  865. fn: function (aString){
  866. var self=this;
  867. self["@message"]=aString;
  868. return self},
  869. args: ["aString"],
  870. source: "message: aString\x0a\x09message := aString",
  871. messageSends: [],
  872. referencedClasses: []
  873. }),
  874. globals.HLBindingActionInputWidget);
  875. smalltalk.addMethod(
  876. smalltalk.method({
  877. selector: "refresh",
  878. protocol: 'actions',
  879. fn: function (){
  880. var self=this;
  881. return smalltalk.withContext(function($ctx1) {
  882. var $1;
  883. $1=self["@wrapper"];
  884. if(($receiver = $1) == nil || $receiver == null){
  885. return self;
  886. } else {
  887. $1;
  888. };
  889. _st(self["@wrapper"])._class_(self._status());
  890. _st(self["@messageTag"])._contents_(self._message());
  891. return self}, function($ctx1) {$ctx1.fill(self,"refresh",{},globals.HLBindingActionInputWidget)})},
  892. args: [],
  893. source: "refresh\x0a\x09wrapper ifNil: [ ^ self ].\x0a \x0a\x09wrapper class: self status.\x0a\x09messageTag contents: self message",
  894. messageSends: ["ifNil:", "class:", "status", "contents:", "message"],
  895. referencedClasses: []
  896. }),
  897. globals.HLBindingActionInputWidget);
  898. smalltalk.addMethod(
  899. smalltalk.method({
  900. selector: "renderOn:",
  901. protocol: 'rendering',
  902. fn: function (html){
  903. var self=this;
  904. return smalltalk.withContext(function($ctx1) {
  905. var $1,$2,$4,$6,$8,$10,$9,$7,$5,$11,$12,$13,$3;
  906. $1=self["@wrapper"];
  907. if(($receiver = $1) == nil || $receiver == null){
  908. self["@wrapper"]=_st(html)._span();
  909. $ctx1.sendIdx["span"]=1;
  910. self["@wrapper"];
  911. } else {
  912. $1;
  913. };
  914. $2=self["@wrapper"];
  915. _st($2)._class_(self._status());
  916. $ctx1.sendIdx["class:"]=1;
  917. $3=_st($2)._with_((function(){
  918. return smalltalk.withContext(function($ctx2) {
  919. $4=_st(html)._input();
  920. _st($4)._placeholder_(self._ghostText());
  921. _st($4)._value_(self._defaultValue());
  922. $6=$4;
  923. $7=_st((function(event){
  924. return smalltalk.withContext(function($ctx3) {
  925. $8=_st(_st(event)._which()).__eq((13));
  926. if(smalltalk.assert($8)){
  927. $10=_st(self["@input"])._asJQuery();
  928. $ctx3.sendIdx["asJQuery"]=1;
  929. $9=_st($10)._val();
  930. return self._evaluate_($9);
  931. };
  932. }, function($ctx3) {$ctx3.fillBlock({event:event},$ctx2,3)})}))._yourself();
  933. $ctx2.sendIdx["yourself"]=1;
  934. $5=_st($6)._onKeyDown_($7);
  935. self["@input"]=$5;
  936. self["@input"];
  937. $11=_st(self["@input"])._asJQuery();
  938. $ctx2.sendIdx["asJQuery"]=2;
  939. _st($11)._typeahead_(globals.HashedCollection._from_(["source".__minus_gt(self._inputCompletion())]));
  940. $12=_st(html)._span();
  941. _st($12)._class_("help-inline");
  942. _st($12)._with_(self._message());
  943. $13=_st($12)._yourself();
  944. self["@messageTag"]=$13;
  945. return self["@messageTag"];
  946. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  947. $ctx1.sendIdx["with:"]=1;
  948. _st((function(){
  949. return smalltalk.withContext(function($ctx2) {
  950. return _st(_st(self["@input"])._asJQuery())._focus();
  951. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})}))._valueWithTimeout_((10));
  952. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:",{html:html},globals.HLBindingActionInputWidget)})},
  953. args: ["html"],
  954. source: "renderOn: html\x0a\x09wrapper ifNil: [ wrapper := html span ].\x0a\x0a\x09wrapper \x0a\x09\x09class: self status;\x0a\x09\x09with: [\x0a\x09\x09\x09input := html input\x0a\x09\x09\x09\x09placeholder: self ghostText;\x0a\x09\x09\x09\x09value: self defaultValue;\x0a\x09\x09\x09\x09onKeyDown: [ :event | \x0a\x09\x09\x09\x09\x09event which = 13 ifTrue: [\x0a\x09\x09\x09\x09\x09\x09self evaluate: input asJQuery val ] ]\x0a\x09\x09\x09\x09yourself.\x0a\x09\x09\x09input asJQuery \x0a\x09\x09\x09\x09typeahead: #{ 'source' -> self inputCompletion }.\x0a\x09\x09\x09messageTag := (html span\x0a\x09\x09\x09\x09class: 'help-inline';\x0a\x09\x09\x09\x09with: self message;\x0a\x09\x09\x09\x09yourself) ].\x0a\x09\x0a\x09\x22Evaluate with a timeout to ensure focus.\x0a\x09Commands can be executed from a menu, clicking on the menu to\x0a\x09evaluate the command would give it the focus otherwise\x22\x0a\x09\x0a\x09[ input asJQuery focus ] valueWithTimeout: 10",
  955. messageSends: ["ifNil:", "span", "class:", "status", "with:", "placeholder:", "input", "ghostText", "value:", "defaultValue", "onKeyDown:", "yourself", "ifTrue:", "=", "which", "evaluate:", "val", "asJQuery", "typeahead:", "->", "inputCompletion", "message", "valueWithTimeout:", "focus"],
  956. referencedClasses: []
  957. }),
  958. globals.HLBindingActionInputWidget);
  959. smalltalk.addMethod(
  960. smalltalk.method({
  961. selector: "status",
  962. protocol: 'accessing',
  963. fn: function (){
  964. var self=this;
  965. return smalltalk.withContext(function($ctx1) {
  966. var $2,$1;
  967. $2=self["@status"];
  968. if(($receiver = $2) == nil || $receiver == null){
  969. self["@status"]="info";
  970. $1=self["@status"];
  971. } else {
  972. $1=$2;
  973. };
  974. return $1;
  975. }, function($ctx1) {$ctx1.fill(self,"status",{},globals.HLBindingActionInputWidget)})},
  976. args: [],
  977. source: "status\x0a\x09^ status ifNil: [ status := 'info' ]",
  978. messageSends: ["ifNil:"],
  979. referencedClasses: []
  980. }),
  981. globals.HLBindingActionInputWidget);
  982. smalltalk.addMethod(
  983. smalltalk.method({
  984. selector: "status:",
  985. protocol: 'accessing',
  986. fn: function (aStatus){
  987. var self=this;
  988. self["@status"]=aStatus;
  989. return self},
  990. args: ["aStatus"],
  991. source: "status: aStatus\x0a\x09status := aStatus",
  992. messageSends: [],
  993. referencedClasses: []
  994. }),
  995. globals.HLBindingActionInputWidget);
  996. smalltalk.addClass('HLKeyBinder', globals.Object, ['modifierKey', 'helper', 'bindings', 'selectedBinding'], 'Helios-KeyBindings');
  997. globals.HLKeyBinder.comment="My `current` instance holds keybindings for Helios actions and evaluate them.\x0a\x0aBindings can be nested by groups. The `bindings` instance variable holds the root of the key bindings tree.\x0a\x0aBindings are instances of a concrete subclass of `HLBinding`.\x0a\x0aI am always either in 'active' or 'inactive' state. In active state I capture key down events and my `helper` widget is displayed at the bottom of the window. My `selectedBinding`, if any, is displayed by the helper.\x0a\x0aBindings are evaluated through `applyBinding:`. If a binding is final (not a group of other bindings), evaluating it will result in deactivating the binder, and hiding the `helper` widget.";
  998. smalltalk.addMethod(
  999. smalltalk.method({
  1000. selector: "activate",
  1001. protocol: 'actions',
  1002. fn: function (){
  1003. var self=this;
  1004. return smalltalk.withContext(function($ctx1) {
  1005. _st(self._helper())._show();
  1006. return self}, function($ctx1) {$ctx1.fill(self,"activate",{},globals.HLKeyBinder)})},
  1007. args: [],
  1008. source: "activate\x0a\x09self helper show",
  1009. messageSends: ["show", "helper"],
  1010. referencedClasses: []
  1011. }),
  1012. globals.HLKeyBinder);
  1013. smalltalk.addMethod(
  1014. smalltalk.method({
  1015. selector: "activationKey",
  1016. protocol: 'accessing',
  1017. fn: function (){
  1018. var self=this;
  1019. return (32);
  1020. },
  1021. args: [],
  1022. source: "activationKey\x0a\x09\x22SPACE\x22\x0a\x09^ 32",
  1023. messageSends: [],
  1024. referencedClasses: []
  1025. }),
  1026. globals.HLKeyBinder);
  1027. smalltalk.addMethod(
  1028. smalltalk.method({
  1029. selector: "activationKeyLabel",
  1030. protocol: 'accessing',
  1031. fn: function (){
  1032. var self=this;
  1033. return "ctrl + space";
  1034. },
  1035. args: [],
  1036. source: "activationKeyLabel\x0a\x09^ 'ctrl + space'",
  1037. messageSends: [],
  1038. referencedClasses: []
  1039. }),
  1040. globals.HLKeyBinder);
  1041. smalltalk.addMethod(
  1042. smalltalk.method({
  1043. selector: "applyBinding:",
  1044. protocol: 'actions',
  1045. fn: function (aBinding){
  1046. var self=this;
  1047. return smalltalk.withContext(function($ctx1) {
  1048. var $1;
  1049. $1=_st(aBinding)._isActive();
  1050. if(! smalltalk.assert($1)){
  1051. return self;
  1052. };
  1053. self._selectBinding_(aBinding);
  1054. _st(aBinding)._apply();
  1055. return self}, function($ctx1) {$ctx1.fill(self,"applyBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1056. args: ["aBinding"],
  1057. source: "applyBinding: aBinding\x0a\x09aBinding isActive ifFalse: [ ^ self ].\x0a\x09\x0a\x09self selectBinding: aBinding.\x0a aBinding apply",
  1058. messageSends: ["ifFalse:", "isActive", "selectBinding:", "apply"],
  1059. referencedClasses: []
  1060. }),
  1061. globals.HLKeyBinder);
  1062. smalltalk.addMethod(
  1063. smalltalk.method({
  1064. selector: "bindings",
  1065. protocol: 'accessing',
  1066. fn: function (){
  1067. var self=this;
  1068. return smalltalk.withContext(function($ctx1) {
  1069. var $2,$1;
  1070. $2=self["@bindings"];
  1071. if(($receiver = $2) == nil || $receiver == null){
  1072. self["@bindings"]=self._defaultBindings();
  1073. $1=self["@bindings"];
  1074. } else {
  1075. $1=$2;
  1076. };
  1077. return $1;
  1078. }, function($ctx1) {$ctx1.fill(self,"bindings",{},globals.HLKeyBinder)})},
  1079. args: [],
  1080. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := self defaultBindings ]",
  1081. messageSends: ["ifNil:", "defaultBindings"],
  1082. referencedClasses: []
  1083. }),
  1084. globals.HLKeyBinder);
  1085. smalltalk.addMethod(
  1086. smalltalk.method({
  1087. selector: "deactivate",
  1088. protocol: 'actions',
  1089. fn: function (){
  1090. var self=this;
  1091. return smalltalk.withContext(function($ctx1) {
  1092. var $1;
  1093. $1=self["@selectedBinding"];
  1094. if(($receiver = $1) == nil || $receiver == null){
  1095. $1;
  1096. } else {
  1097. _st(self["@selectedBinding"])._release();
  1098. };
  1099. self["@selectedBinding"]=nil;
  1100. _st(self._helper())._hide();
  1101. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinder)})},
  1102. args: [],
  1103. source: "deactivate\x0a\x09selectedBinding ifNotNil: [ selectedBinding release ].\x0a selectedBinding := nil.\x0a\x09self helper hide",
  1104. messageSends: ["ifNotNil:", "release", "hide", "helper"],
  1105. referencedClasses: []
  1106. }),
  1107. globals.HLKeyBinder);
  1108. smalltalk.addMethod(
  1109. smalltalk.method({
  1110. selector: "defaultBindings",
  1111. protocol: 'defaults',
  1112. fn: function (){
  1113. var self=this;
  1114. var group;
  1115. function $HLBindingGroup(){return globals.HLBindingGroup||(typeof HLBindingGroup=="undefined"?nil:HLBindingGroup)}
  1116. function $HLCloseTabCommand(){return globals.HLCloseTabCommand||(typeof HLCloseTabCommand=="undefined"?nil:HLCloseTabCommand)}
  1117. function $HLSwitchTabCommand(){return globals.HLSwitchTabCommand||(typeof HLSwitchTabCommand=="undefined"?nil:HLSwitchTabCommand)}
  1118. function $HLOpenCommand(){return globals.HLOpenCommand||(typeof HLOpenCommand=="undefined"?nil:HLOpenCommand)}
  1119. return smalltalk.withContext(function($ctx1) {
  1120. var $1,$2,$4,$3,$5,$6;
  1121. $1=_st($HLBindingGroup())._new();
  1122. $ctx1.sendIdx["new"]=1;
  1123. $2=$1;
  1124. $4=_st($HLCloseTabCommand())._new();
  1125. $ctx1.sendIdx["new"]=2;
  1126. $3=_st($4)._asBinding();
  1127. $ctx1.sendIdx["asBinding"]=1;
  1128. _st($2)._add_($3);
  1129. $ctx1.sendIdx["add:"]=1;
  1130. _st($1)._add_(_st(_st($HLSwitchTabCommand())._new())._asBinding());
  1131. $5=_st($1)._yourself();
  1132. group=$5;
  1133. _st($HLOpenCommand())._registerConcreteClassesOn_(group);
  1134. $6=group;
  1135. return $6;
  1136. }, function($ctx1) {$ctx1.fill(self,"defaultBindings",{group:group},globals.HLKeyBinder)})},
  1137. args: [],
  1138. source: "defaultBindings\x0a\x09| group |\x0a\x09\x0a\x09group := HLBindingGroup new\x0a\x09\x09add: HLCloseTabCommand new asBinding;\x0a\x09\x09add: HLSwitchTabCommand new asBinding;\x0a\x09\x09yourself.\x0a\x09\x09\x0a\x09HLOpenCommand registerConcreteClassesOn: group.\x0a\x09\x09\x09\x09\x0a\x09^ group",
  1139. messageSends: ["add:", "new", "asBinding", "yourself", "registerConcreteClassesOn:"],
  1140. referencedClasses: ["HLBindingGroup", "HLCloseTabCommand", "HLSwitchTabCommand", "HLOpenCommand"]
  1141. }),
  1142. globals.HLKeyBinder);
  1143. smalltalk.addMethod(
  1144. smalltalk.method({
  1145. selector: "escapeKey",
  1146. protocol: 'accessing',
  1147. fn: function (){
  1148. var self=this;
  1149. return (27);
  1150. },
  1151. args: [],
  1152. source: "escapeKey\x0a\x09\x22ESC\x22\x0a\x09^ 27",
  1153. messageSends: [],
  1154. referencedClasses: []
  1155. }),
  1156. globals.HLKeyBinder);
  1157. smalltalk.addMethod(
  1158. smalltalk.method({
  1159. selector: "flushBindings",
  1160. protocol: 'actions',
  1161. fn: function (){
  1162. var self=this;
  1163. self["@bindings"]=nil;
  1164. return self},
  1165. args: [],
  1166. source: "flushBindings\x0a\x09bindings := nil",
  1167. messageSends: [],
  1168. referencedClasses: []
  1169. }),
  1170. globals.HLKeyBinder);
  1171. smalltalk.addMethod(
  1172. smalltalk.method({
  1173. selector: "handleActiveKeyDown:",
  1174. protocol: 'events',
  1175. fn: function (event){
  1176. var self=this;
  1177. return smalltalk.withContext(function($ctx1) {
  1178. var $3,$2,$1,$4;
  1179. $3=_st(event)._which();
  1180. $ctx1.sendIdx["which"]=1;
  1181. $2=_st($3).__eq(self._escapeKey());
  1182. $ctx1.sendIdx["="]=1;
  1183. $1=_st($2)._or_((function(){
  1184. return smalltalk.withContext(function($ctx2) {
  1185. return _st(_st(_st(event)._which()).__eq((71)))._and_((function(){
  1186. return smalltalk.withContext(function($ctx3) {
  1187. return _st(event)._ctrlKey();
  1188. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1189. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1190. if(smalltalk.assert($1)){
  1191. self._deactivate();
  1192. _st(event)._preventDefault();
  1193. return false;
  1194. };
  1195. $4=self._handleBindingFor_(event);
  1196. return $4;
  1197. }, function($ctx1) {$ctx1.fill(self,"handleActiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1198. args: ["event"],
  1199. source: "handleActiveKeyDown: event\x0a\x0a\x09\x22ESC or ctrl+g deactivate the keyBinder\x22\x0a\x09(event which = self escapeKey or: [\x0a\x09\x09event which = 71 and: [ event ctrlKey ] ])\x0a \x09ifTrue: [ \x0a \x09self deactivate.\x0a\x09\x09\x09\x09event preventDefault.\x0a\x09\x09\x09\x09^ false ].\x0a \x0a \x22Handle the keybinding\x22\x0a ^ self handleBindingFor: event",
  1200. messageSends: ["ifTrue:", "or:", "=", "which", "escapeKey", "and:", "ctrlKey", "deactivate", "preventDefault", "handleBindingFor:"],
  1201. referencedClasses: []
  1202. }),
  1203. globals.HLKeyBinder);
  1204. smalltalk.addMethod(
  1205. smalltalk.method({
  1206. selector: "handleBindingFor:",
  1207. protocol: 'events',
  1208. fn: function (anEvent){
  1209. var self=this;
  1210. var binding;
  1211. return smalltalk.withContext(function($ctx1) {
  1212. var $1;
  1213. binding=_st(self._selectedBinding())._atKey_(_st(anEvent)._which());
  1214. $1=binding;
  1215. if(($receiver = $1) == nil || $receiver == null){
  1216. $1;
  1217. } else {
  1218. self._applyBinding_(binding);
  1219. _st(anEvent)._preventDefault();
  1220. return false;
  1221. };
  1222. return self}, function($ctx1) {$ctx1.fill(self,"handleBindingFor:",{anEvent:anEvent,binding:binding},globals.HLKeyBinder)})},
  1223. args: ["anEvent"],
  1224. 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 ]",
  1225. messageSends: ["atKey:", "selectedBinding", "which", "ifNotNil:", "applyBinding:", "preventDefault"],
  1226. referencedClasses: []
  1227. }),
  1228. globals.HLKeyBinder);
  1229. smalltalk.addMethod(
  1230. smalltalk.method({
  1231. selector: "handleInactiveKeyDown:",
  1232. protocol: 'events',
  1233. fn: function (event){
  1234. var self=this;
  1235. return smalltalk.withContext(function($ctx1) {
  1236. var $1,$2;
  1237. $1=_st(_st(event)._which()).__eq(self._activationKey());
  1238. if(smalltalk.assert($1)){
  1239. $2=_st(event)._ctrlKey();
  1240. if(smalltalk.assert($2)){
  1241. self._activate();
  1242. _st(event)._preventDefault();
  1243. return false;
  1244. };
  1245. };
  1246. return self}, function($ctx1) {$ctx1.fill(self,"handleInactiveKeyDown:",{event:event},globals.HLKeyBinder)})},
  1247. args: ["event"],
  1248. source: "handleInactiveKeyDown: event\x0a\x09event which = self activationKey ifTrue: [\x0a \x09event ctrlKey ifTrue: [\x0a\x09\x09\x09self activate. \x0a event preventDefault. \x0a ^ false ] ]",
  1249. messageSends: ["ifTrue:", "=", "which", "activationKey", "ctrlKey", "activate", "preventDefault"],
  1250. referencedClasses: []
  1251. }),
  1252. globals.HLKeyBinder);
  1253. smalltalk.addMethod(
  1254. smalltalk.method({
  1255. selector: "handleKeyDown:",
  1256. protocol: 'events',
  1257. fn: function (event){
  1258. var self=this;
  1259. return smalltalk.withContext(function($ctx1) {
  1260. var $2,$1;
  1261. $2=self._isActive();
  1262. if(smalltalk.assert($2)){
  1263. $1=self._handleActiveKeyDown_(event);
  1264. } else {
  1265. $1=self._handleInactiveKeyDown_(event);
  1266. };
  1267. return $1;
  1268. }, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{event:event},globals.HLKeyBinder)})},
  1269. args: ["event"],
  1270. source: "handleKeyDown: event\x0a\x09^ self isActive\x0a \x09ifTrue: [ self handleActiveKeyDown: event ]\x0a \x09ifFalse: [ self handleInactiveKeyDown: event ]",
  1271. messageSends: ["ifTrue:ifFalse:", "isActive", "handleActiveKeyDown:", "handleInactiveKeyDown:"],
  1272. referencedClasses: []
  1273. }),
  1274. globals.HLKeyBinder);
  1275. smalltalk.addMethod(
  1276. smalltalk.method({
  1277. selector: "helper",
  1278. protocol: 'accessing',
  1279. fn: function (){
  1280. var self=this;
  1281. var $1;
  1282. $1=self["@helper"];
  1283. return $1;
  1284. },
  1285. args: [],
  1286. source: "helper\x0a\x09^ helper",
  1287. messageSends: [],
  1288. referencedClasses: []
  1289. }),
  1290. globals.HLKeyBinder);
  1291. smalltalk.addMethod(
  1292. smalltalk.method({
  1293. selector: "initialize",
  1294. protocol: 'initialization',
  1295. fn: function (){
  1296. var self=this;
  1297. function $HLKeyBinderHelperWidget(){return globals.HLKeyBinderHelperWidget||(typeof HLKeyBinderHelperWidget=="undefined"?nil:HLKeyBinderHelperWidget)}
  1298. return smalltalk.withContext(function($ctx1) {
  1299. globals.HLKeyBinder.superclass.fn.prototype._initialize.apply(_st(self), []);
  1300. self["@helper"]=_st($HLKeyBinderHelperWidget())._on_(self);
  1301. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLKeyBinder)})},
  1302. args: [],
  1303. source: "initialize\x0a\x09super initialize.\x0a\x09helper := HLKeyBinderHelperWidget on: self",
  1304. messageSends: ["initialize", "on:"],
  1305. referencedClasses: ["HLKeyBinderHelperWidget"]
  1306. }),
  1307. globals.HLKeyBinder);
  1308. smalltalk.addMethod(
  1309. smalltalk.method({
  1310. selector: "isActive",
  1311. protocol: 'testing',
  1312. fn: function (){
  1313. var self=this;
  1314. return smalltalk.withContext(function($ctx1) {
  1315. var $1;
  1316. $1=_st(_st(".".__comma(_st(self._helper())._cssClass()))._asJQuery())._is_(":visible");
  1317. return $1;
  1318. }, function($ctx1) {$ctx1.fill(self,"isActive",{},globals.HLKeyBinder)})},
  1319. args: [],
  1320. source: "isActive\x0a\x09^ ('.', self helper cssClass) asJQuery is: ':visible'",
  1321. messageSends: ["is:", "asJQuery", ",", "cssClass", "helper"],
  1322. referencedClasses: []
  1323. }),
  1324. globals.HLKeyBinder);
  1325. smalltalk.addMethod(
  1326. smalltalk.method({
  1327. selector: "selectBinding:",
  1328. protocol: 'actions',
  1329. fn: function (aBinding){
  1330. var self=this;
  1331. return smalltalk.withContext(function($ctx1) {
  1332. var $1;
  1333. $1=_st(aBinding).__eq(self["@selectedBinding"]);
  1334. if(smalltalk.assert($1)){
  1335. return self;
  1336. };
  1337. self["@selectedBinding"]=aBinding;
  1338. _st(self._helper())._refresh();
  1339. return self}, function($ctx1) {$ctx1.fill(self,"selectBinding:",{aBinding:aBinding},globals.HLKeyBinder)})},
  1340. args: ["aBinding"],
  1341. source: "selectBinding: aBinding\x0a\x09aBinding = selectedBinding ifTrue: [ ^ self ].\x0a\x09\x0a\x09selectedBinding := aBinding.\x0a\x09self helper refresh",
  1342. messageSends: ["ifTrue:", "=", "refresh", "helper"],
  1343. referencedClasses: []
  1344. }),
  1345. globals.HLKeyBinder);
  1346. smalltalk.addMethod(
  1347. smalltalk.method({
  1348. selector: "selectedBinding",
  1349. protocol: 'accessing',
  1350. fn: function (){
  1351. var self=this;
  1352. return smalltalk.withContext(function($ctx1) {
  1353. var $2,$1;
  1354. $2=self["@selectedBinding"];
  1355. if(($receiver = $2) == nil || $receiver == null){
  1356. $1=self._bindings();
  1357. } else {
  1358. $1=$2;
  1359. };
  1360. return $1;
  1361. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinder)})},
  1362. args: [],
  1363. source: "selectedBinding\x0a\x09^ selectedBinding ifNil: [ self bindings ]",
  1364. messageSends: ["ifNil:", "bindings"],
  1365. referencedClasses: []
  1366. }),
  1367. globals.HLKeyBinder);
  1368. smalltalk.addMethod(
  1369. smalltalk.method({
  1370. selector: "setupEvents",
  1371. protocol: 'events',
  1372. fn: function (){
  1373. var self=this;
  1374. return smalltalk.withContext(function($ctx1) {
  1375. _st("body"._asJQuery())._keydown_((function(event){
  1376. return smalltalk.withContext(function($ctx2) {
  1377. return self._handleKeyDown_(event);
  1378. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1,1)})}));
  1379. return self}, function($ctx1) {$ctx1.fill(self,"setupEvents",{},globals.HLKeyBinder)})},
  1380. args: [],
  1381. source: "setupEvents\x0a\x09'body' asJQuery keydown: [ :event | self handleKeyDown: event ]",
  1382. messageSends: ["keydown:", "asJQuery", "handleKeyDown:"],
  1383. referencedClasses: []
  1384. }),
  1385. globals.HLKeyBinder);
  1386. smalltalk.addMethod(
  1387. smalltalk.method({
  1388. selector: "setupHelper",
  1389. protocol: 'initialization',
  1390. fn: function (){
  1391. var self=this;
  1392. return smalltalk.withContext(function($ctx1) {
  1393. var $1,$2;
  1394. $1=self["@helper"];
  1395. _st($1)._renderStart();
  1396. $2=_st($1)._renderCog();
  1397. return self}, function($ctx1) {$ctx1.fill(self,"setupHelper",{},globals.HLKeyBinder)})},
  1398. args: [],
  1399. source: "setupHelper\x0a\x09helper \x09\x0a\x09\x09renderStart;\x0a\x09\x09renderCog",
  1400. messageSends: ["renderStart", "renderCog"],
  1401. referencedClasses: []
  1402. }),
  1403. globals.HLKeyBinder);
  1404. smalltalk.addMethod(
  1405. smalltalk.method({
  1406. selector: "systemIsMac",
  1407. protocol: 'testing',
  1408. fn: function (){
  1409. var self=this;
  1410. return smalltalk.withContext(function($ctx1) {
  1411. var $1;
  1412. $1=_st(_st(navigator)._platform())._match_("Mac");
  1413. return $1;
  1414. }, function($ctx1) {$ctx1.fill(self,"systemIsMac",{},globals.HLKeyBinder)})},
  1415. args: [],
  1416. source: "systemIsMac\x0a\x09^ navigator platform match: 'Mac'",
  1417. messageSends: ["match:", "platform"],
  1418. referencedClasses: []
  1419. }),
  1420. globals.HLKeyBinder);
  1421. globals.HLKeyBinder.klass.iVarNames = ['current'];
  1422. smalltalk.addMethod(
  1423. smalltalk.method({
  1424. selector: "current",
  1425. protocol: 'instance creation',
  1426. fn: function (){
  1427. var self=this;
  1428. return smalltalk.withContext(function($ctx1) {
  1429. var $2,$1;
  1430. $2=self["@current"];
  1431. if(($receiver = $2) == nil || $receiver == null){
  1432. self["@current"]=globals.HLKeyBinder.klass.superclass.fn.prototype._new.apply(_st(self), []);
  1433. $1=self["@current"];
  1434. } else {
  1435. $1=$2;
  1436. };
  1437. return $1;
  1438. }, function($ctx1) {$ctx1.fill(self,"current",{},globals.HLKeyBinder.klass)})},
  1439. args: [],
  1440. source: "current\x0a\x09^ current ifNil: [ current := super new ]",
  1441. messageSends: ["ifNil:", "new"],
  1442. referencedClasses: []
  1443. }),
  1444. globals.HLKeyBinder.klass);
  1445. smalltalk.addMethod(
  1446. smalltalk.method({
  1447. selector: "new",
  1448. protocol: 'instance creation',
  1449. fn: function (){
  1450. var self=this;
  1451. return smalltalk.withContext(function($ctx1) {
  1452. self._shouldNotImplement();
  1453. return self}, function($ctx1) {$ctx1.fill(self,"new",{},globals.HLKeyBinder.klass)})},
  1454. args: [],
  1455. source: "new\x0a\x09self shouldNotImplement",
  1456. messageSends: ["shouldNotImplement"],
  1457. referencedClasses: []
  1458. }),
  1459. globals.HLKeyBinder.klass);
  1460. smalltalk.addClass('HLKeyBinderHelperWidget', globals.HLWidget, ['keyBinder'], 'Helios-KeyBindings');
  1461. 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:`.";
  1462. smalltalk.addMethod(
  1463. smalltalk.method({
  1464. selector: "cssClass",
  1465. protocol: 'accessing',
  1466. fn: function (){
  1467. var self=this;
  1468. return "key_helper";
  1469. },
  1470. args: [],
  1471. source: "cssClass\x0a\x09^ 'key_helper'",
  1472. messageSends: [],
  1473. referencedClasses: []
  1474. }),
  1475. globals.HLKeyBinderHelperWidget);
  1476. smalltalk.addMethod(
  1477. smalltalk.method({
  1478. selector: "deactivate",
  1479. protocol: 'actions',
  1480. fn: function (){
  1481. var self=this;
  1482. return smalltalk.withContext(function($ctx1) {
  1483. _st(self._keyBinder())._deactivate();
  1484. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{},globals.HLKeyBinderHelperWidget)})},
  1485. args: [],
  1486. source: "deactivate\x0a\x09self keyBinder deactivate",
  1487. messageSends: ["deactivate", "keyBinder"],
  1488. referencedClasses: []
  1489. }),
  1490. globals.HLKeyBinderHelperWidget);
  1491. smalltalk.addMethod(
  1492. smalltalk.method({
  1493. selector: "hide",
  1494. protocol: 'actions',
  1495. fn: function (){
  1496. var self=this;
  1497. return smalltalk.withContext(function($ctx1) {
  1498. var $1;
  1499. $1=_st(".".__comma(self._cssClass()))._asJQuery();
  1500. $ctx1.sendIdx["asJQuery"]=1;
  1501. _st($1)._remove();
  1502. $ctx1.sendIdx["remove"]=1;
  1503. _st("#overlay"._asJQuery())._remove();
  1504. self._showCog();
  1505. return self}, function($ctx1) {$ctx1.fill(self,"hide",{},globals.HLKeyBinderHelperWidget)})},
  1506. args: [],
  1507. source: "hide\x0a\x09('.', self cssClass) asJQuery remove.\x0a\x09'#overlay' asJQuery remove.\x0a\x09self showCog",
  1508. messageSends: ["remove", "asJQuery", ",", "cssClass", "showCog"],
  1509. referencedClasses: []
  1510. }),
  1511. globals.HLKeyBinderHelperWidget);
  1512. smalltalk.addMethod(
  1513. smalltalk.method({
  1514. selector: "hideCog",
  1515. protocol: 'actions',
  1516. fn: function (){
  1517. var self=this;
  1518. return smalltalk.withContext(function($ctx1) {
  1519. _st("#cog-helper"._asJQuery())._hide();
  1520. return self}, function($ctx1) {$ctx1.fill(self,"hideCog",{},globals.HLKeyBinderHelperWidget)})},
  1521. args: [],
  1522. source: "hideCog\x0a\x09'#cog-helper' asJQuery hide",
  1523. messageSends: ["hide", "asJQuery"],
  1524. referencedClasses: []
  1525. }),
  1526. globals.HLKeyBinderHelperWidget);
  1527. smalltalk.addMethod(
  1528. smalltalk.method({
  1529. selector: "keyBinder",
  1530. protocol: 'accessing',
  1531. fn: function (){
  1532. var self=this;
  1533. var $1;
  1534. $1=self["@keyBinder"];
  1535. return $1;
  1536. },
  1537. args: [],
  1538. source: "keyBinder\x0a\x09^ keyBinder",
  1539. messageSends: [],
  1540. referencedClasses: []
  1541. }),
  1542. globals.HLKeyBinderHelperWidget);
  1543. smalltalk.addMethod(
  1544. smalltalk.method({
  1545. selector: "keyBinder:",
  1546. protocol: 'accessing',
  1547. fn: function (aKeyBinder){
  1548. var self=this;
  1549. self["@keyBinder"]=aKeyBinder;
  1550. return self},
  1551. args: ["aKeyBinder"],
  1552. source: "keyBinder: aKeyBinder\x0a\x09keyBinder := aKeyBinder",
  1553. messageSends: [],
  1554. referencedClasses: []
  1555. }),
  1556. globals.HLKeyBinderHelperWidget);
  1557. smalltalk.addMethod(
  1558. smalltalk.method({
  1559. selector: "mainId",
  1560. protocol: 'accessing',
  1561. fn: function (){
  1562. var self=this;
  1563. return "binding-helper-main";
  1564. },
  1565. args: [],
  1566. source: "mainId\x0a\x09^ 'binding-helper-main'",
  1567. messageSends: [],
  1568. referencedClasses: []
  1569. }),
  1570. globals.HLKeyBinderHelperWidget);
  1571. smalltalk.addMethod(
  1572. smalltalk.method({
  1573. selector: "renderBindingActionFor:on:",
  1574. protocol: 'rendering',
  1575. fn: function (aBinding,html){
  1576. var self=this;
  1577. return smalltalk.withContext(function($ctx1) {
  1578. var $1,$3,$4,$5,$6,$2;
  1579. $1=_st(html)._span();
  1580. _st($1)._class_("command");
  1581. $ctx1.sendIdx["class:"]=1;
  1582. $2=_st($1)._with_((function(){
  1583. return smalltalk.withContext(function($ctx2) {
  1584. $3=_st(html)._strong();
  1585. _st($3)._class_("label");
  1586. $ctx2.sendIdx["class:"]=2;
  1587. $4=_st($3)._with_(_st(_st(aBinding)._shortcut())._asLowercase());
  1588. $ctx2.sendIdx["with:"]=2;
  1589. $4;
  1590. $5=_st(html)._a();
  1591. _st($5)._class_("action");
  1592. _st($5)._with_(_st(aBinding)._displayLabel());
  1593. $6=_st($5)._onClick_((function(){
  1594. return smalltalk.withContext(function($ctx3) {
  1595. return _st(self._keyBinder())._applyBinding_(aBinding);
  1596. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1597. return $6;
  1598. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1599. $ctx1.sendIdx["with:"]=1;
  1600. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingActionFor:on:",{aBinding:aBinding,html:html},globals.HLKeyBinderHelperWidget)})},
  1601. args: ["aBinding", "html"],
  1602. 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 ] ]",
  1603. messageSends: ["class:", "span", "with:", "strong", "asLowercase", "shortcut", "a", "displayLabel", "onClick:", "applyBinding:", "keyBinder"],
  1604. referencedClasses: []
  1605. }),
  1606. globals.HLKeyBinderHelperWidget);
  1607. smalltalk.addMethod(
  1608. smalltalk.method({
  1609. selector: "renderBindingGroup:on:",
  1610. protocol: 'rendering',
  1611. fn: function (aBindingGroup,html){
  1612. var self=this;
  1613. return smalltalk.withContext(function($ctx1) {
  1614. var $1;
  1615. _st(_st(_st(aBindingGroup)._activeBindings())._sorted_((function(a,b){
  1616. return smalltalk.withContext(function($ctx2) {
  1617. $1=_st(a)._key();
  1618. $ctx2.sendIdx["key"]=1;
  1619. return _st($1).__lt(_st(b)._key());
  1620. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,1)})})))._do_((function(each){
  1621. return smalltalk.withContext(function($ctx2) {
  1622. return self._renderBindingActionFor_on_(each,html);
  1623. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)})}));
  1624. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingGroup:on:",{aBindingGroup:aBindingGroup,html:html},globals.HLKeyBinderHelperWidget)})},
  1625. args: ["aBindingGroup", "html"],
  1626. 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 ]",
  1627. messageSends: ["do:", "sorted:", "activeBindings", "<", "key", "renderBindingActionFor:on:"],
  1628. referencedClasses: []
  1629. }),
  1630. globals.HLKeyBinderHelperWidget);
  1631. smalltalk.addMethod(
  1632. smalltalk.method({
  1633. selector: "renderCloseOn:",
  1634. protocol: 'rendering',
  1635. fn: function (html){
  1636. var self=this;
  1637. return smalltalk.withContext(function($ctx1) {
  1638. var $1,$2;
  1639. $1=_st(html)._a();
  1640. _st($1)._class_("close");
  1641. $ctx1.sendIdx["class:"]=1;
  1642. _st($1)._with_((function(){
  1643. return smalltalk.withContext(function($ctx2) {
  1644. return _st(_st(html)._tag_("i"))._class_("icon-remove");
  1645. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1646. $2=_st($1)._onClick_((function(){
  1647. return smalltalk.withContext(function($ctx2) {
  1648. return _st(self._keyBinder())._deactivate();
  1649. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1650. return self}, function($ctx1) {$ctx1.fill(self,"renderCloseOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1651. args: ["html"],
  1652. 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 ]",
  1653. messageSends: ["class:", "a", "with:", "tag:", "onClick:", "deactivate", "keyBinder"],
  1654. referencedClasses: []
  1655. }),
  1656. globals.HLKeyBinderHelperWidget);
  1657. smalltalk.addMethod(
  1658. smalltalk.method({
  1659. selector: "renderCog",
  1660. protocol: 'rendering',
  1661. fn: function (){
  1662. var self=this;
  1663. return smalltalk.withContext(function($ctx1) {
  1664. var $1,$3,$4,$2;
  1665. _st((function(html){
  1666. return smalltalk.withContext(function($ctx2) {
  1667. $1=_st(html)._div();
  1668. _st($1)._id_("cog-helper");
  1669. $2=_st($1)._with_((function(){
  1670. return smalltalk.withContext(function($ctx3) {
  1671. $3=_st(html)._a();
  1672. _st($3)._with_((function(){
  1673. return smalltalk.withContext(function($ctx4) {
  1674. return _st(_st(html)._tag_("i"))._class_("icon-cog");
  1675. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,3)})}));
  1676. $4=_st($3)._onClick_((function(){
  1677. return smalltalk.withContext(function($ctx4) {
  1678. return _st(self._keyBinder())._activate();
  1679. }, function($ctx4) {$ctx4.fillBlock({},$ctx3,4)})}));
  1680. return $4;
  1681. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1682. $ctx2.sendIdx["with:"]=1;
  1683. return $2;
  1684. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})}))._appendToJQuery_("body"._asJQuery());
  1685. return self}, function($ctx1) {$ctx1.fill(self,"renderCog",{},globals.HLKeyBinderHelperWidget)})},
  1686. args: [],
  1687. 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",
  1688. messageSends: ["appendToJQuery:", "id:", "div", "with:", "a", "class:", "tag:", "onClick:", "activate", "keyBinder", "asJQuery"],
  1689. referencedClasses: []
  1690. }),
  1691. globals.HLKeyBinderHelperWidget);
  1692. smalltalk.addMethod(
  1693. smalltalk.method({
  1694. selector: "renderContentOn:",
  1695. protocol: 'rendering',
  1696. fn: function (html){
  1697. var self=this;
  1698. return smalltalk.withContext(function($ctx1) {
  1699. var $1,$2,$3,$5,$6,$4;
  1700. $1=_st(html)._div();
  1701. $ctx1.sendIdx["div"]=1;
  1702. _st($1)._id_("overlay");
  1703. $ctx1.sendIdx["id:"]=1;
  1704. _st($1)._class_("light");
  1705. $ctx1.sendIdx["class:"]=1;
  1706. $2=_st($1)._onClick_((function(){
  1707. return smalltalk.withContext(function($ctx2) {
  1708. return self._deactivate();
  1709. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1710. $3=_st(html)._div();
  1711. $ctx1.sendIdx["div"]=2;
  1712. _st($3)._class_(self._cssClass());
  1713. $4=_st($3)._with_((function(){
  1714. return smalltalk.withContext(function($ctx2) {
  1715. self._renderLabelOn_(html);
  1716. $5=_st(html)._div();
  1717. _st($5)._id_(self._mainId());
  1718. $6=_st($5)._with_((function(){
  1719. return smalltalk.withContext(function($ctx3) {
  1720. return self._renderSelectedBindingOn_(html);
  1721. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1722. $6;
  1723. return self._renderCloseOn_(html);
  1724. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  1725. $ctx1.sendIdx["with:"]=1;
  1726. _st(":focus"._asJQuery())._blur();
  1727. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1728. args: ["html"],
  1729. source: "renderContentOn: html\x0a\x09html div \x0a\x09\x09id: 'overlay';\x0a\x09\x09class: 'light';\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",
  1730. messageSends: ["id:", "div", "class:", "onClick:", "deactivate", "cssClass", "with:", "renderLabelOn:", "mainId", "renderSelectedBindingOn:", "renderCloseOn:", "blur", "asJQuery"],
  1731. referencedClasses: []
  1732. }),
  1733. globals.HLKeyBinderHelperWidget);
  1734. smalltalk.addMethod(
  1735. smalltalk.method({
  1736. selector: "renderLabelOn:",
  1737. protocol: 'rendering',
  1738. fn: function (html){
  1739. var self=this;
  1740. return smalltalk.withContext(function($ctx1) {
  1741. var $1,$3,$5,$4,$2;
  1742. $1=_st(html)._span();
  1743. _st($1)._class_("selected");
  1744. $3=$1;
  1745. $5=_st(self._selectedBinding())._label();
  1746. if(($receiver = $5) == nil || $receiver == null){
  1747. $4="Action";
  1748. } else {
  1749. $4=$5;
  1750. };
  1751. $2=_st($3)._with_($4);
  1752. return self}, function($ctx1) {$ctx1.fill(self,"renderLabelOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1753. args: ["html"],
  1754. source: "renderLabelOn: html\x0a\x09\x09html span \x0a \x09class: 'selected'; \x0a with: (self selectedBinding label ifNil: [ 'Action' ])",
  1755. messageSends: ["class:", "span", "with:", "ifNil:", "label", "selectedBinding"],
  1756. referencedClasses: []
  1757. }),
  1758. globals.HLKeyBinderHelperWidget);
  1759. smalltalk.addMethod(
  1760. smalltalk.method({
  1761. selector: "renderSelectedBindingOn:",
  1762. protocol: 'rendering',
  1763. fn: function (html){
  1764. var self=this;
  1765. return smalltalk.withContext(function($ctx1) {
  1766. _st(self._selectedBinding())._renderOn_html_(self,html);
  1767. return self}, function($ctx1) {$ctx1.fill(self,"renderSelectedBindingOn:",{html:html},globals.HLKeyBinderHelperWidget)})},
  1768. args: ["html"],
  1769. source: "renderSelectedBindingOn: html\x0a\x09self selectedBinding renderOn: self html: html",
  1770. messageSends: ["renderOn:html:", "selectedBinding"],
  1771. referencedClasses: []
  1772. }),
  1773. globals.HLKeyBinderHelperWidget);
  1774. smalltalk.addMethod(
  1775. smalltalk.method({
  1776. selector: "renderStart",
  1777. protocol: 'rendering',
  1778. fn: function (){
  1779. var self=this;
  1780. return smalltalk.withContext(function($ctx1) {
  1781. var $1,$3,$5,$6,$4,$2,$7;
  1782. $1="#helper"._asJQuery();
  1783. $ctx1.sendIdx["asJQuery"]=1;
  1784. _st($1)._remove();
  1785. $2=(function(html){
  1786. return smalltalk.withContext(function($ctx2) {
  1787. $3=_st(html)._div();
  1788. _st($3)._id_("helper");
  1789. $5=$3;
  1790. $6=_st("Press ".__comma(_st(self._keyBinder())._activationKeyLabel())).__comma(" to start");
  1791. $ctx2.sendIdx[","]=1;
  1792. $4=_st($5)._with_($6);
  1793. return $4;
  1794. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1,1)})});
  1795. $7="body"._asJQuery();
  1796. $ctx1.sendIdx["asJQuery"]=2;
  1797. _st($2)._appendToJQuery_($7);
  1798. _st((function(){
  1799. return smalltalk.withContext(function($ctx2) {
  1800. return _st("#helper"._asJQuery())._fadeOut_((1000));
  1801. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}))._valueWithTimeout_((2000));
  1802. return self}, function($ctx1) {$ctx1.fill(self,"renderStart",{},globals.HLKeyBinderHelperWidget)})},
  1803. args: [],
  1804. 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",
  1805. messageSends: ["remove", "asJQuery", "appendToJQuery:", "id:", "div", "with:", ",", "activationKeyLabel", "keyBinder", "valueWithTimeout:", "fadeOut:"],
  1806. referencedClasses: []
  1807. }),
  1808. globals.HLKeyBinderHelperWidget);
  1809. smalltalk.addMethod(
  1810. smalltalk.method({
  1811. selector: "selectedBinding",
  1812. protocol: 'accessing',
  1813. fn: function (){
  1814. var self=this;
  1815. return smalltalk.withContext(function($ctx1) {
  1816. var $1;
  1817. $1=_st(self._keyBinder())._selectedBinding();
  1818. return $1;
  1819. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{},globals.HLKeyBinderHelperWidget)})},
  1820. args: [],
  1821. source: "selectedBinding\x0a\x09^ self keyBinder selectedBinding",
  1822. messageSends: ["selectedBinding", "keyBinder"],
  1823. referencedClasses: []
  1824. }),
  1825. globals.HLKeyBinderHelperWidget);
  1826. smalltalk.addMethod(
  1827. smalltalk.method({
  1828. selector: "show",
  1829. protocol: 'actions',
  1830. fn: function (){
  1831. var self=this;
  1832. return smalltalk.withContext(function($ctx1) {
  1833. self._hideCog();
  1834. self._appendToJQuery_("body"._asJQuery());
  1835. return self}, function($ctx1) {$ctx1.fill(self,"show",{},globals.HLKeyBinderHelperWidget)})},
  1836. args: [],
  1837. source: "show\x0a\x09self hideCog.\x0a\x09self appendToJQuery: 'body' asJQuery",
  1838. messageSends: ["hideCog", "appendToJQuery:", "asJQuery"],
  1839. referencedClasses: []
  1840. }),
  1841. globals.HLKeyBinderHelperWidget);
  1842. smalltalk.addMethod(
  1843. smalltalk.method({
  1844. selector: "showCog",
  1845. protocol: 'actions',
  1846. fn: function (){
  1847. var self=this;
  1848. return smalltalk.withContext(function($ctx1) {
  1849. _st("#cog-helper"._asJQuery())._show();
  1850. return self}, function($ctx1) {$ctx1.fill(self,"showCog",{},globals.HLKeyBinderHelperWidget)})},
  1851. args: [],
  1852. source: "showCog\x0a\x09'#cog-helper' asJQuery show",
  1853. messageSends: ["show", "asJQuery"],
  1854. referencedClasses: []
  1855. }),
  1856. globals.HLKeyBinderHelperWidget);
  1857. smalltalk.addMethod(
  1858. smalltalk.method({
  1859. selector: "showWidget:",
  1860. protocol: 'actions',
  1861. fn: function (aWidget){
  1862. var self=this;
  1863. return smalltalk.withContext(function($ctx1) {
  1864. var $3,$2,$1;
  1865. $3=self._mainId();
  1866. $ctx1.sendIdx["mainId"]=1;
  1867. $2="#".__comma($3);
  1868. $ctx1.sendIdx[","]=1;
  1869. $1=_st($2)._asJQuery();
  1870. $ctx1.sendIdx["asJQuery"]=1;
  1871. _st($1)._empty();
  1872. _st(aWidget)._appendToJQuery_(_st("#".__comma(self._mainId()))._asJQuery());
  1873. return self}, function($ctx1) {$ctx1.fill(self,"showWidget:",{aWidget:aWidget},globals.HLKeyBinderHelperWidget)})},
  1874. args: ["aWidget"],
  1875. 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",
  1876. messageSends: ["empty", "asJQuery", ",", "mainId", "appendToJQuery:"],
  1877. referencedClasses: []
  1878. }),
  1879. globals.HLKeyBinderHelperWidget);
  1880. smalltalk.addMethod(
  1881. smalltalk.method({
  1882. selector: "on:",
  1883. protocol: 'instance creation',
  1884. fn: function (aKeyBinder){
  1885. var self=this;
  1886. return smalltalk.withContext(function($ctx1) {
  1887. var $2,$3,$1;
  1888. $2=self._new();
  1889. _st($2)._keyBinder_(aKeyBinder);
  1890. $3=_st($2)._yourself();
  1891. $1=$3;
  1892. return $1;
  1893. }, function($ctx1) {$ctx1.fill(self,"on:",{aKeyBinder:aKeyBinder},globals.HLKeyBinderHelperWidget.klass)})},
  1894. args: ["aKeyBinder"],
  1895. source: "on: aKeyBinder\x0a\x09^ self new\x0a \x09keyBinder: aKeyBinder;\x0a yourself",
  1896. messageSends: ["keyBinder:", "new", "yourself"],
  1897. referencedClasses: []
  1898. }),
  1899. globals.HLKeyBinderHelperWidget.klass);
  1900. smalltalk.addClass('HLRepeatedKeyDownHandler', globals.Object, ['repeatInterval', 'delay', 'interval', 'keyBindings', 'widget', 'keyDown'], 'Helios-KeyBindings');
  1901. 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.";
  1902. smalltalk.addMethod(
  1903. smalltalk.method({
  1904. selector: "bindKeys",
  1905. protocol: 'binding',
  1906. fn: function (){
  1907. var self=this;
  1908. return smalltalk.withContext(function($ctx1) {
  1909. _st(self._widget())._bindKeyDown_keyUp_((function(e){
  1910. return smalltalk.withContext(function($ctx2) {
  1911. return self._handleKeyDown_(e);
  1912. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,1)})}),(function(e){
  1913. return smalltalk.withContext(function($ctx2) {
  1914. return self._handleKeyUp();
  1915. }, function($ctx2) {$ctx2.fillBlock({e:e},$ctx1,2)})}));
  1916. return self}, function($ctx1) {$ctx1.fill(self,"bindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  1917. args: [],
  1918. source: "bindKeys\x0a\x09self widget \x0a\x09\x09bindKeyDown: [ :e | self handleKeyDown: e ] \x0a\x09\x09keyUp: [ :e | self handleKeyUp ]",
  1919. messageSends: ["bindKeyDown:keyUp:", "widget", "handleKeyDown:", "handleKeyUp"],
  1920. referencedClasses: []
  1921. }),
  1922. globals.HLRepeatedKeyDownHandler);
  1923. smalltalk.addMethod(
  1924. smalltalk.method({
  1925. selector: "defaultRepeatInterval",
  1926. protocol: 'defaults',
  1927. fn: function (){
  1928. var self=this;
  1929. return (70);
  1930. },
  1931. args: [],
  1932. source: "defaultRepeatInterval\x0a\x09^ 70",
  1933. messageSends: [],
  1934. referencedClasses: []
  1935. }),
  1936. globals.HLRepeatedKeyDownHandler);
  1937. smalltalk.addMethod(
  1938. smalltalk.method({
  1939. selector: "handleEvent:forKey:action:",
  1940. protocol: 'events handling',
  1941. fn: function (anEvent,anInteger,aBlock){
  1942. var self=this;
  1943. return smalltalk.withContext(function($ctx1) {
  1944. var $1;
  1945. $1=_st(_st(_st(anEvent)._which()).__eq(anInteger))._and_((function(){
  1946. return smalltalk.withContext(function($ctx2) {
  1947. return _st(self._isKeyDown())._not();
  1948. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1949. if(smalltalk.assert($1)){
  1950. self._whileKeyDownDo_(aBlock);
  1951. };
  1952. return self}, function($ctx1) {$ctx1.fill(self,"handleEvent:forKey:action:",{anEvent:anEvent,anInteger:anInteger,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  1953. args: ["anEvent", "anInteger", "aBlock"],
  1954. source: "handleEvent: anEvent forKey: anInteger action: aBlock\x0a\x09(anEvent which = anInteger and: [ self isKeyDown not ])\x0a\x09\x09ifTrue: [ self whileKeyDownDo: aBlock ]",
  1955. messageSends: ["ifTrue:", "and:", "=", "which", "not", "isKeyDown", "whileKeyDownDo:"],
  1956. referencedClasses: []
  1957. }),
  1958. globals.HLRepeatedKeyDownHandler);
  1959. smalltalk.addMethod(
  1960. smalltalk.method({
  1961. selector: "handleKeyDown:",
  1962. protocol: 'events handling',
  1963. fn: function (anEvent){
  1964. var self=this;
  1965. return smalltalk.withContext(function($ctx1) {
  1966. _st(self._keyBindings())._keysAndValuesDo_((function(key,action){
  1967. return smalltalk.withContext(function($ctx2) {
  1968. return self._handleEvent_forKey_action_(anEvent,key,action);
  1969. }, function($ctx2) {$ctx2.fillBlock({key:key,action:action},$ctx1,1)})}));
  1970. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{anEvent:anEvent},globals.HLRepeatedKeyDownHandler)})},
  1971. args: ["anEvent"],
  1972. source: "handleKeyDown: anEvent\x0a\x09self keyBindings keysAndValuesDo: [ :key :action | \x0a\x09\x09self handleEvent: anEvent forKey: key action: action ]",
  1973. messageSends: ["keysAndValuesDo:", "keyBindings", "handleEvent:forKey:action:"],
  1974. referencedClasses: []
  1975. }),
  1976. globals.HLRepeatedKeyDownHandler);
  1977. smalltalk.addMethod(
  1978. smalltalk.method({
  1979. selector: "handleKeyUp",
  1980. protocol: 'events handling',
  1981. fn: function (){
  1982. var self=this;
  1983. return smalltalk.withContext(function($ctx1) {
  1984. var $1,$2,$3;
  1985. $1=self._isKeyDown();
  1986. if(smalltalk.assert($1)){
  1987. self["@keyDown"]=false;
  1988. self["@keyDown"];
  1989. $2=self["@interval"];
  1990. if(($receiver = $2) == nil || $receiver == null){
  1991. $2;
  1992. } else {
  1993. _st(self["@interval"])._clearInterval();
  1994. };
  1995. $3=self["@delay"];
  1996. if(($receiver = $3) == nil || $receiver == null){
  1997. $3;
  1998. } else {
  1999. _st(self["@delay"])._clearTimeout();
  2000. };
  2001. };
  2002. return self}, function($ctx1) {$ctx1.fill(self,"handleKeyUp",{},globals.HLRepeatedKeyDownHandler)})},
  2003. args: [],
  2004. source: "handleKeyUp\x0a\x09self isKeyDown ifTrue: [\x0a\x09\x09keyDown := false.\x0a\x09\x09interval ifNotNil: [ interval clearInterval ].\x0a\x09\x09delay ifNotNil: [ delay clearTimeout ] ]",
  2005. messageSends: ["ifTrue:", "isKeyDown", "ifNotNil:", "clearInterval", "clearTimeout"],
  2006. referencedClasses: []
  2007. }),
  2008. globals.HLRepeatedKeyDownHandler);
  2009. smalltalk.addMethod(
  2010. smalltalk.method({
  2011. selector: "isKeyDown",
  2012. protocol: 'testing',
  2013. fn: function (){
  2014. var self=this;
  2015. return smalltalk.withContext(function($ctx1) {
  2016. var $2,$1;
  2017. $2=self["@keyDown"];
  2018. if(($receiver = $2) == nil || $receiver == null){
  2019. $1=false;
  2020. } else {
  2021. $1=$2;
  2022. };
  2023. return $1;
  2024. }, function($ctx1) {$ctx1.fill(self,"isKeyDown",{},globals.HLRepeatedKeyDownHandler)})},
  2025. args: [],
  2026. source: "isKeyDown\x0a\x09^ keyDown ifNil: [ false ]",
  2027. messageSends: ["ifNil:"],
  2028. referencedClasses: []
  2029. }),
  2030. globals.HLRepeatedKeyDownHandler);
  2031. smalltalk.addMethod(
  2032. smalltalk.method({
  2033. selector: "keyBindings",
  2034. protocol: 'accessing',
  2035. fn: function (){
  2036. var self=this;
  2037. function $Dictionary(){return globals.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  2038. return smalltalk.withContext(function($ctx1) {
  2039. var $2,$1;
  2040. $2=self["@keyBindings"];
  2041. if(($receiver = $2) == nil || $receiver == null){
  2042. self["@keyBindings"]=_st($Dictionary())._new();
  2043. $1=self["@keyBindings"];
  2044. } else {
  2045. $1=$2;
  2046. };
  2047. return $1;
  2048. }, function($ctx1) {$ctx1.fill(self,"keyBindings",{},globals.HLRepeatedKeyDownHandler)})},
  2049. args: [],
  2050. source: "keyBindings\x0a\x09^ keyBindings ifNil: [ keyBindings := Dictionary new ]",
  2051. messageSends: ["ifNil:", "new"],
  2052. referencedClasses: ["Dictionary"]
  2053. }),
  2054. globals.HLRepeatedKeyDownHandler);
  2055. smalltalk.addMethod(
  2056. smalltalk.method({
  2057. selector: "rebindKeys",
  2058. protocol: 'binding',
  2059. fn: function (){
  2060. var self=this;
  2061. return smalltalk.withContext(function($ctx1) {
  2062. var $1;
  2063. self._unbindKeys();
  2064. $1=self._bindKeys();
  2065. return self}, function($ctx1) {$ctx1.fill(self,"rebindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2066. args: [],
  2067. source: "rebindKeys\x0a\x09self \x0a\x09\x09unbindKeys;\x0a\x09\x09bindKeys",
  2068. messageSends: ["unbindKeys", "bindKeys"],
  2069. referencedClasses: []
  2070. }),
  2071. globals.HLRepeatedKeyDownHandler);
  2072. smalltalk.addMethod(
  2073. smalltalk.method({
  2074. selector: "repeatInterval",
  2075. protocol: 'accessing',
  2076. fn: function (){
  2077. var self=this;
  2078. return smalltalk.withContext(function($ctx1) {
  2079. var $2,$1;
  2080. $2=self["@repeatInterval"];
  2081. if(($receiver = $2) == nil || $receiver == null){
  2082. $1=self._defaultRepeatInterval();
  2083. } else {
  2084. $1=$2;
  2085. };
  2086. return $1;
  2087. }, function($ctx1) {$ctx1.fill(self,"repeatInterval",{},globals.HLRepeatedKeyDownHandler)})},
  2088. args: [],
  2089. source: "repeatInterval\x0a\x09^ repeatInterval ifNil: [ self defaultRepeatInterval ]",
  2090. messageSends: ["ifNil:", "defaultRepeatInterval"],
  2091. referencedClasses: []
  2092. }),
  2093. globals.HLRepeatedKeyDownHandler);
  2094. smalltalk.addMethod(
  2095. smalltalk.method({
  2096. selector: "repeatInterval:",
  2097. protocol: 'accessing',
  2098. fn: function (anInteger){
  2099. var self=this;
  2100. self["@repeatInterval"]=anInteger;
  2101. return self},
  2102. args: ["anInteger"],
  2103. source: "repeatInterval: anInteger\x0a\x09repeatInterval := anInteger",
  2104. messageSends: [],
  2105. referencedClasses: []
  2106. }),
  2107. globals.HLRepeatedKeyDownHandler);
  2108. smalltalk.addMethod(
  2109. smalltalk.method({
  2110. selector: "startRepeatingAction:",
  2111. protocol: 'actions',
  2112. fn: function (aBlock){
  2113. var self=this;
  2114. return smalltalk.withContext(function($ctx1) {
  2115. var $2,$1;
  2116. $1=_st((function(){
  2117. return smalltalk.withContext(function($ctx2) {
  2118. $2=_st(self._widget())._hasFocus();
  2119. if(smalltalk.assert($2)){
  2120. return _st(aBlock)._value();
  2121. } else {
  2122. return self._handleKeyUp();
  2123. };
  2124. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithInterval_(self._repeatInterval());
  2125. return $1;
  2126. }, function($ctx1) {$ctx1.fill(self,"startRepeatingAction:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2127. args: ["aBlock"],
  2128. source: "startRepeatingAction: aBlock\x0a\x09^ [ (self widget hasFocus)\x0a\x09\x09ifTrue: [ aBlock value ]\x0a\x09\x09ifFalse: [ self handleKeyUp ] ] valueWithInterval: self repeatInterval",
  2129. messageSends: ["valueWithInterval:", "ifTrue:ifFalse:", "hasFocus", "widget", "value", "handleKeyUp", "repeatInterval"],
  2130. referencedClasses: []
  2131. }),
  2132. globals.HLRepeatedKeyDownHandler);
  2133. smalltalk.addMethod(
  2134. smalltalk.method({
  2135. selector: "unbindKeys",
  2136. protocol: 'binding',
  2137. fn: function (){
  2138. var self=this;
  2139. return smalltalk.withContext(function($ctx1) {
  2140. _st(self._widget())._unbindKeyDownKeyUp();
  2141. return self}, function($ctx1) {$ctx1.fill(self,"unbindKeys",{},globals.HLRepeatedKeyDownHandler)})},
  2142. args: [],
  2143. source: "unbindKeys\x0a\x09self widget unbindKeyDownKeyUp",
  2144. messageSends: ["unbindKeyDownKeyUp", "widget"],
  2145. referencedClasses: []
  2146. }),
  2147. globals.HLRepeatedKeyDownHandler);
  2148. smalltalk.addMethod(
  2149. smalltalk.method({
  2150. selector: "whileKeyDown:do:",
  2151. protocol: 'actions',
  2152. fn: function (aKey,aBlock){
  2153. var self=this;
  2154. return smalltalk.withContext(function($ctx1) {
  2155. _st(self._keyBindings())._at_put_(aKey,aBlock);
  2156. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDown:do:",{aKey:aKey,aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2157. args: ["aKey", "aBlock"],
  2158. source: "whileKeyDown: aKey do: aBlock\x0a\x09self keyBindings at: aKey put: aBlock",
  2159. messageSends: ["at:put:", "keyBindings"],
  2160. referencedClasses: []
  2161. }),
  2162. globals.HLRepeatedKeyDownHandler);
  2163. smalltalk.addMethod(
  2164. smalltalk.method({
  2165. selector: "whileKeyDownDo:",
  2166. protocol: 'events handling',
  2167. fn: function (aBlock){
  2168. var self=this;
  2169. return smalltalk.withContext(function($ctx1) {
  2170. self["@keyDown"]=true;
  2171. _st(aBlock)._value();
  2172. self["@delay"]=_st((function(){
  2173. return smalltalk.withContext(function($ctx2) {
  2174. self["@interval"]=self._startRepeatingAction_(aBlock);
  2175. return self["@interval"];
  2176. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithTimeout_((300));
  2177. return self}, function($ctx1) {$ctx1.fill(self,"whileKeyDownDo:",{aBlock:aBlock},globals.HLRepeatedKeyDownHandler)})},
  2178. args: ["aBlock"],
  2179. source: "whileKeyDownDo: aBlock\x0a\x09keyDown := true.\x0a\x09aBlock value.\x0a\x09delay := [ interval := self startRepeatingAction: aBlock ] \x0a\x09\x09valueWithTimeout: 300",
  2180. messageSends: ["value", "valueWithTimeout:", "startRepeatingAction:"],
  2181. referencedClasses: []
  2182. }),
  2183. globals.HLRepeatedKeyDownHandler);
  2184. smalltalk.addMethod(
  2185. smalltalk.method({
  2186. selector: "widget",
  2187. protocol: 'accessing',
  2188. fn: function (){
  2189. var self=this;
  2190. var $1;
  2191. $1=self["@widget"];
  2192. return $1;
  2193. },
  2194. args: [],
  2195. source: "widget\x0a\x09^ widget",
  2196. messageSends: [],
  2197. referencedClasses: []
  2198. }),
  2199. globals.HLRepeatedKeyDownHandler);
  2200. smalltalk.addMethod(
  2201. smalltalk.method({
  2202. selector: "widget:",
  2203. protocol: 'accessing',
  2204. fn: function (aWidget){
  2205. var self=this;
  2206. self["@widget"]=aWidget;
  2207. return self},
  2208. args: ["aWidget"],
  2209. source: "widget: aWidget\x0a\x09widget := aWidget",
  2210. messageSends: [],
  2211. referencedClasses: []
  2212. }),
  2213. globals.HLRepeatedKeyDownHandler);
  2214. smalltalk.addMethod(
  2215. smalltalk.method({
  2216. selector: "on:",
  2217. protocol: 'instance creation',
  2218. fn: function (aWidget){
  2219. var self=this;
  2220. return smalltalk.withContext(function($ctx1) {
  2221. var $2,$3,$1;
  2222. $2=self._new();
  2223. _st($2)._widget_(aWidget);
  2224. $3=_st($2)._yourself();
  2225. $1=$3;
  2226. return $1;
  2227. }, function($ctx1) {$ctx1.fill(self,"on:",{aWidget:aWidget},globals.HLRepeatedKeyDownHandler.klass)})},
  2228. args: ["aWidget"],
  2229. source: "on: aWidget\x0a\x09^ self new\x0a\x09\x09widget: aWidget;\x0a\x09\x09yourself",
  2230. messageSends: ["widget:", "new", "yourself"],
  2231. referencedClasses: []
  2232. }),
  2233. globals.HLRepeatedKeyDownHandler.klass);
  2234. });