1
0

Helios-KeyBindings.js 76 KB

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