1
0

Helios-KeyBindings.js 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296
  1. smalltalk.addPackage('Helios-KeyBindings');
  2. smalltalk.addClass('HLBinding', smalltalk.Object, ['key', 'label'], 'Helios-KeyBindings');
  3. smalltalk.addMethod(
  4. "_applyOn_",
  5. smalltalk.method({
  6. selector: "applyOn:",
  7. category: 'actions',
  8. fn: function (aKeyBinder){
  9. var self=this;
  10. return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility();
  11. return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder}, smalltalk.HLBinding)})},
  12. args: ["aKeyBinder"],
  13. source: "applyOn: aKeyBinder\x0a\x09self subclassResponsibility",
  14. messageSends: ["subclassResponsibility"],
  15. referencedClasses: []
  16. }),
  17. smalltalk.HLBinding);
  18. smalltalk.addMethod(
  19. "_displayLabel",
  20. smalltalk.method({
  21. selector: "displayLabel",
  22. category: 'accessing',
  23. fn: function (){
  24. var self=this;
  25. return smalltalk.withContext(function($ctx1) { var $1;
  26. $1=_st(self)._label();
  27. return $1;
  28. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{}, smalltalk.HLBinding)})},
  29. args: [],
  30. source: "displayLabel\x0a\x09^ self label",
  31. messageSends: ["label"],
  32. referencedClasses: []
  33. }),
  34. smalltalk.HLBinding);
  35. smalltalk.addMethod(
  36. "_isActive",
  37. smalltalk.method({
  38. selector: "isActive",
  39. category: 'testing',
  40. fn: function (){
  41. var self=this;
  42. return smalltalk.withContext(function($ctx1) { var $1;
  43. $1=_st(self)._subclassResponsibility();
  44. return $1;
  45. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBinding)})},
  46. args: [],
  47. source: "isActive\x0a\x09^ self subclassResponsibility",
  48. messageSends: ["subclassResponsibility"],
  49. referencedClasses: []
  50. }),
  51. smalltalk.HLBinding);
  52. smalltalk.addMethod(
  53. "_isBindingAction",
  54. smalltalk.method({
  55. selector: "isBindingAction",
  56. category: 'testing',
  57. fn: function (){
  58. var self=this;
  59. return smalltalk.withContext(function($ctx1) { return false;
  60. }, function($ctx1) {$ctx1.fill(self,"isBindingAction",{}, smalltalk.HLBinding)})},
  61. args: [],
  62. source: "isBindingAction\x0a\x09^ false",
  63. messageSends: [],
  64. referencedClasses: []
  65. }),
  66. smalltalk.HLBinding);
  67. smalltalk.addMethod(
  68. "_isBindingGroup",
  69. smalltalk.method({
  70. selector: "isBindingGroup",
  71. category: 'testing',
  72. fn: function (){
  73. var self=this;
  74. return smalltalk.withContext(function($ctx1) { return false;
  75. }, function($ctx1) {$ctx1.fill(self,"isBindingGroup",{}, smalltalk.HLBinding)})},
  76. args: [],
  77. source: "isBindingGroup\x0a\x09^ false",
  78. messageSends: [],
  79. referencedClasses: []
  80. }),
  81. smalltalk.HLBinding);
  82. smalltalk.addMethod(
  83. "_key",
  84. smalltalk.method({
  85. selector: "key",
  86. category: 'accessing',
  87. fn: function (){
  88. var self=this;
  89. return smalltalk.withContext(function($ctx1) { var $1;
  90. $1=self["@key"];
  91. return $1;
  92. }, function($ctx1) {$ctx1.fill(self,"key",{}, smalltalk.HLBinding)})},
  93. args: [],
  94. source: "key\x0a\x09^ key",
  95. messageSends: [],
  96. referencedClasses: []
  97. }),
  98. smalltalk.HLBinding);
  99. smalltalk.addMethod(
  100. "_key_",
  101. smalltalk.method({
  102. selector: "key:",
  103. category: 'accessing',
  104. fn: function (anInteger){
  105. var self=this;
  106. return smalltalk.withContext(function($ctx1) { self["@key"]=anInteger;
  107. return self}, function($ctx1) {$ctx1.fill(self,"key:",{anInteger:anInteger}, smalltalk.HLBinding)})},
  108. args: ["anInteger"],
  109. source: "key: anInteger\x0a\x09key := anInteger",
  110. messageSends: [],
  111. referencedClasses: []
  112. }),
  113. smalltalk.HLBinding);
  114. smalltalk.addMethod(
  115. "_label",
  116. smalltalk.method({
  117. selector: "label",
  118. category: 'accessing',
  119. fn: function (){
  120. var self=this;
  121. return smalltalk.withContext(function($ctx1) { var $1;
  122. $1=self["@label"];
  123. return $1;
  124. }, function($ctx1) {$ctx1.fill(self,"label",{}, smalltalk.HLBinding)})},
  125. args: [],
  126. source: "label\x0a\x09^ label",
  127. messageSends: [],
  128. referencedClasses: []
  129. }),
  130. smalltalk.HLBinding);
  131. smalltalk.addMethod(
  132. "_label_",
  133. smalltalk.method({
  134. selector: "label:",
  135. category: 'accessing',
  136. fn: function (aString){
  137. var self=this;
  138. return smalltalk.withContext(function($ctx1) { self["@label"]=aString;
  139. return self}, function($ctx1) {$ctx1.fill(self,"label:",{aString:aString}, smalltalk.HLBinding)})},
  140. args: ["aString"],
  141. source: "label: aString\x0a\x09label := aString",
  142. messageSends: [],
  143. referencedClasses: []
  144. }),
  145. smalltalk.HLBinding);
  146. smalltalk.addMethod(
  147. "_renderOn_html_",
  148. smalltalk.method({
  149. selector: "renderOn:html:",
  150. category: 'rendering',
  151. fn: function (aBindingHelper,html){
  152. var self=this;
  153. return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html}, smalltalk.HLBinding)})},
  154. args: ["aBindingHelper", "html"],
  155. source: "renderOn: aBindingHelper html: html",
  156. messageSends: [],
  157. referencedClasses: []
  158. }),
  159. smalltalk.HLBinding);
  160. smalltalk.addMethod(
  161. "_shortcut",
  162. smalltalk.method({
  163. selector: "shortcut",
  164. category: 'accessing',
  165. fn: function (){
  166. var self=this;
  167. return smalltalk.withContext(function($ctx1) { var $1;
  168. $1=_st((smalltalk.String || String))._fromCharCode_(_st(self)._key());
  169. return $1;
  170. }, function($ctx1) {$ctx1.fill(self,"shortcut",{}, smalltalk.HLBinding)})},
  171. args: [],
  172. source: "shortcut\x0a\x09^ String fromCharCode: self key",
  173. messageSends: ["fromCharCode:", "key"],
  174. referencedClasses: ["String"]
  175. }),
  176. smalltalk.HLBinding);
  177. smalltalk.addMethod(
  178. "_on_labelled_",
  179. smalltalk.method({
  180. selector: "on:labelled:",
  181. category: 'instance creation',
  182. fn: function (anInteger,aString){
  183. var self=this;
  184. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  185. $2=_st(self)._new();
  186. _st($2)._key_(anInteger);
  187. _st($2)._label_(aString);
  188. $3=_st($2)._yourself();
  189. $1=$3;
  190. return $1;
  191. }, function($ctx1) {$ctx1.fill(self,"on:labelled:",{anInteger:anInteger,aString:aString}, smalltalk.HLBinding.klass)})},
  192. args: ["anInteger", "aString"],
  193. source: "on: anInteger labelled: aString\x0a\x09^ self new\x0a \x09key: anInteger;\x0a label: aString;\x0a yourself",
  194. messageSends: ["key:", "new", "label:", "yourself"],
  195. referencedClasses: []
  196. }),
  197. smalltalk.HLBinding.klass);
  198. smalltalk.addClass('HLBindingAction', smalltalk.HLBinding, ['callback', 'activeBlock'], 'Helios-KeyBindings');
  199. smalltalk.addMethod(
  200. "_activeBlock",
  201. smalltalk.method({
  202. selector: "activeBlock",
  203. category: 'accessing',
  204. fn: function (){
  205. var self=this;
  206. return smalltalk.withContext(function($ctx1) { var $2,$1;
  207. $2=self["@activeBlock"];
  208. if(($receiver = $2) == nil || $receiver == undefined){
  209. self["@activeBlock"]=(function(){
  210. return smalltalk.withContext(function($ctx2) { return true;
  211. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})});
  212. $1=self["@activeBlock"];
  213. } else {
  214. $1=$2;
  215. };
  216. return $1;
  217. }, function($ctx1) {$ctx1.fill(self,"activeBlock",{},smalltalk.HLBindingAction)})},
  218. args: [],
  219. source: "activeBlock\x0a\x09^ activeBlock ifNil: [ activeBlock := [ true ] ]",
  220. messageSends: ["ifNil:"],
  221. referencedClasses: []
  222. }),
  223. smalltalk.HLBindingAction);
  224. smalltalk.addMethod(
  225. "_activeBlock_",
  226. smalltalk.method({
  227. selector: "activeBlock:",
  228. category: 'accessing',
  229. fn: function (aBlock){
  230. var self=this;
  231. return smalltalk.withContext(function($ctx1) { self["@activeBlock"]=aBlock;
  232. return self}, function($ctx1) {$ctx1.fill(self,"activeBlock:",{aBlock:aBlock},smalltalk.HLBindingAction)})},
  233. args: ["aBlock"],
  234. source: "activeBlock: aBlock\x0a\x09activeBlock := aBlock",
  235. messageSends: [],
  236. referencedClasses: []
  237. }),
  238. smalltalk.HLBindingAction);
  239. smalltalk.addMethod(
  240. "_applyOn_",
  241. smalltalk.method({
  242. selector: "applyOn:",
  243. category: 'actions',
  244. fn: function (aKeyBinder){
  245. var self=this;
  246. return smalltalk.withContext(function($ctx1) { var $1,$2;
  247. $1=_st(self)._isActive();
  248. if(! smalltalk.assert($1)){
  249. $2=self;
  250. return $2;
  251. };
  252. _st(aKeyBinder)._applyBindingAction_(self);
  253. return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder},smalltalk.HLBindingAction)})},
  254. args: ["aKeyBinder"],
  255. source: "applyOn: aKeyBinder\x0a\x09self isActive ifFalse: [ ^ self ].\x0a\x09\x0a\x09aKeyBinder applyBindingAction: self",
  256. messageSends: ["ifFalse:", "isActive", "applyBindingAction:"],
  257. referencedClasses: []
  258. }),
  259. smalltalk.HLBindingAction);
  260. smalltalk.addMethod(
  261. "_callback",
  262. smalltalk.method({
  263. selector: "callback",
  264. category: 'accessing',
  265. fn: function (){
  266. var self=this;
  267. return smalltalk.withContext(function($ctx1) { var $1;
  268. $1=self["@callback"];
  269. return $1;
  270. }, function($ctx1) {$ctx1.fill(self,"callback",{}, smalltalk.HLBindingAction)})},
  271. args: [],
  272. source: "callback\x0a\x09^ callback",
  273. messageSends: [],
  274. referencedClasses: []
  275. }),
  276. smalltalk.HLBindingAction);
  277. smalltalk.addMethod(
  278. "_callback_",
  279. smalltalk.method({
  280. selector: "callback:",
  281. category: 'accessing',
  282. fn: function (aBlock){
  283. var self=this;
  284. return smalltalk.withContext(function($ctx1) { self["@callback"]=aBlock;
  285. return self}, function($ctx1) {$ctx1.fill(self,"callback:",{aBlock:aBlock}, smalltalk.HLBindingAction)})},
  286. args: ["aBlock"],
  287. source: "callback: aBlock\x0a\x09callback := aBlock",
  288. messageSends: [],
  289. referencedClasses: []
  290. }),
  291. smalltalk.HLBindingAction);
  292. smalltalk.addMethod(
  293. "_isActive",
  294. smalltalk.method({
  295. selector: "isActive",
  296. category: 'testing',
  297. fn: function (){
  298. var self=this;
  299. return smalltalk.withContext(function($ctx1) { var $1;
  300. $1=_st(_st(self)._activeBlock())._value();
  301. return $1;
  302. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBindingAction)})},
  303. args: [],
  304. source: "isActive\x0a\x09^ self activeBlock value",
  305. messageSends: ["value", "activeBlock"],
  306. referencedClasses: []
  307. }),
  308. smalltalk.HLBindingAction);
  309. smalltalk.addMethod(
  310. "_isBindingAction",
  311. smalltalk.method({
  312. selector: "isBindingAction",
  313. category: 'testing',
  314. fn: function (){
  315. var self=this;
  316. return smalltalk.withContext(function($ctx1) { return true;
  317. }, function($ctx1) {$ctx1.fill(self,"isBindingAction",{}, smalltalk.HLBindingAction)})},
  318. args: [],
  319. source: "isBindingAction\x0a\x09^ true",
  320. messageSends: [],
  321. referencedClasses: []
  322. }),
  323. smalltalk.HLBindingAction);
  324. smalltalk.addClass('HLBindingGroup', smalltalk.HLBinding, ['bindings'], 'Helios-KeyBindings');
  325. smalltalk.addMethod(
  326. "_activeBindings",
  327. smalltalk.method({
  328. selector: "activeBindings",
  329. category: 'accessing',
  330. fn: function (){
  331. var self=this;
  332. return smalltalk.withContext(function($ctx1) { var $1;
  333. $1=_st(_st(self)._bindings())._select_((function(each){
  334. return smalltalk.withContext(function($ctx2) { return _st(each)._isActive();
  335. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  336. return $1;
  337. }, function($ctx1) {$ctx1.fill(self,"activeBindings",{},smalltalk.HLBindingGroup)})},
  338. args: [],
  339. source: "activeBindings\x0a\x09^ self bindings select: [ :each | each isActive ]",
  340. messageSends: ["select:", "isActive", "bindings"],
  341. referencedClasses: []
  342. }),
  343. smalltalk.HLBindingGroup);
  344. smalltalk.addMethod(
  345. "_add_",
  346. smalltalk.method({
  347. selector: "add:",
  348. category: 'accessing',
  349. fn: function (aBinding){
  350. var self=this;
  351. return smalltalk.withContext(function($ctx1) { var $1;
  352. $1=_st(_st(self)._bindings())._add_(aBinding);
  353. return $1;
  354. }, function($ctx1) {$ctx1.fill(self,"add:",{aBinding:aBinding}, smalltalk.HLBindingGroup)})},
  355. args: ["aBinding"],
  356. source: "add: aBinding\x0a\x09^ self bindings add: aBinding",
  357. messageSends: ["add:", "bindings"],
  358. referencedClasses: []
  359. }),
  360. smalltalk.HLBindingGroup);
  361. smalltalk.addMethod(
  362. "_addActionKey_labelled_callback_",
  363. smalltalk.method({
  364. selector: "addActionKey:labelled:callback:",
  365. category: 'accessing',
  366. fn: function (anInteger,aString,aBlock){
  367. var self=this;
  368. return smalltalk.withContext(function($ctx1) { var $1,$2;
  369. $1=_st((smalltalk.HLBindingAction || HLBindingAction))._on_labelled_(anInteger,aString);
  370. _st($1)._callback_(aBlock);
  371. $2=_st($1)._yourself();
  372. _st(self)._add_($2);
  373. return self}, function($ctx1) {$ctx1.fill(self,"addActionKey:labelled:callback:",{anInteger:anInteger,aString:aString,aBlock:aBlock}, smalltalk.HLBindingGroup)})},
  374. args: ["anInteger", "aString", "aBlock"],
  375. source: "addActionKey: anInteger labelled: aString callback: aBlock\x0a\x09self add: ((HLBindingAction on: anInteger labelled: aString)\x0a \x09callback: aBlock;\x0a yourself)",
  376. messageSends: ["add:", "callback:", "on:labelled:", "yourself"],
  377. referencedClasses: ["HLBindingAction"]
  378. }),
  379. smalltalk.HLBindingGroup);
  380. smalltalk.addMethod(
  381. "_addActionKey_labelled_command_",
  382. smalltalk.method({
  383. selector: "addActionKey:labelled:command:",
  384. category: 'accessing',
  385. fn: function (anInteger,aString,aCommand){
  386. var self=this;
  387. return smalltalk.withContext(function($ctx1) { var $1,$2;
  388. $1=_st((smalltalk.HLBindingAction || HLBindingAction))._on_labelled_(anInteger,aString);
  389. _st($1)._command_(aCommand);
  390. $2=_st($1)._yourself();
  391. _st(self)._add_($2);
  392. return self}, function($ctx1) {$ctx1.fill(self,"addActionKey:labelled:command:",{anInteger:anInteger,aString:aString,aCommand:aCommand}, smalltalk.HLBindingGroup)})},
  393. args: ["anInteger", "aString", "aCommand"],
  394. source: "addActionKey: anInteger labelled: aString command: aCommand\x0a\x09self add: ((HLBindingAction on: anInteger labelled: aString)\x0a \x09command: aCommand;\x0a yourself)",
  395. messageSends: ["add:", "command:", "on:labelled:", "yourself"],
  396. referencedClasses: ["HLBindingAction"]
  397. }),
  398. smalltalk.HLBindingGroup);
  399. smalltalk.addMethod(
  400. "_addGroupKey_labelled_",
  401. smalltalk.method({
  402. selector: "addGroupKey:labelled:",
  403. category: 'accessing',
  404. fn: function (anInteger,aString){
  405. var self=this;
  406. return smalltalk.withContext(function($ctx1) { _st(self)._add_(_st((smalltalk.HLBindingGroup || HLBindingGroup))._on_labelled_(anInteger,aString));
  407. return self}, function($ctx1) {$ctx1.fill(self,"addGroupKey:labelled:",{anInteger:anInteger,aString:aString}, smalltalk.HLBindingGroup)})},
  408. args: ["anInteger", "aString"],
  409. source: "addGroupKey: anInteger labelled: aString\x0a\x09self add: (HLBindingGroup on: anInteger labelled: aString)",
  410. messageSends: ["add:", "on:labelled:"],
  411. referencedClasses: ["HLBindingGroup"]
  412. }),
  413. smalltalk.HLBindingGroup);
  414. smalltalk.addMethod(
  415. "_applyOn_",
  416. smalltalk.method({
  417. selector: "applyOn:",
  418. category: 'actions',
  419. fn: function (aKeyBinder){
  420. var self=this;
  421. return smalltalk.withContext(function($ctx1) { var $1,$2;
  422. $1=_st(self)._isActive();
  423. if(! smalltalk.assert($1)){
  424. $2=self;
  425. return $2;
  426. };
  427. _st(aKeyBinder)._applyBindingGroup_(self);
  428. return self}, function($ctx1) {$ctx1.fill(self,"applyOn:",{aKeyBinder:aKeyBinder},smalltalk.HLBindingGroup)})},
  429. args: ["aKeyBinder"],
  430. source: "applyOn: aKeyBinder\x0a\x09self isActive ifFalse: [ ^ self ].\x0a\x09\x0a\x09aKeyBinder applyBindingGroup: self",
  431. messageSends: ["ifFalse:", "isActive", "applyBindingGroup:"],
  432. referencedClasses: []
  433. }),
  434. smalltalk.HLBindingGroup);
  435. smalltalk.addMethod(
  436. "_at_",
  437. smalltalk.method({
  438. selector: "at:",
  439. category: 'accessing',
  440. fn: function (aString){
  441. var self=this;
  442. return smalltalk.withContext(function($ctx1) { var $1;
  443. $1=_st(_st(self)._bindings())._detect_ifNone_((function(each){
  444. return smalltalk.withContext(function($ctx2) { return _st(_st(each)._label()).__eq(aString);
  445. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  446. return smalltalk.withContext(function($ctx2) { return nil;
  447. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  448. return $1;
  449. }, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString}, smalltalk.HLBindingGroup)})},
  450. args: ["aString"],
  451. source: "at: aString\x0a\x09^ self bindings \x0a \x09detect: [ :each | each label = aString ]\x0a \x09ifNone: [ nil ]",
  452. messageSends: ["detect:ifNone:", "=", "label", "bindings"],
  453. referencedClasses: []
  454. }),
  455. smalltalk.HLBindingGroup);
  456. smalltalk.addMethod(
  457. "_atKey_",
  458. smalltalk.method({
  459. selector: "atKey:",
  460. category: 'accessing',
  461. fn: function (anInteger){
  462. var self=this;
  463. return smalltalk.withContext(function($ctx1) { var $1;
  464. $1=_st(_st(self)._bindings())._detect_ifNone_((function(each){
  465. return smalltalk.withContext(function($ctx2) { return _st(_st(each)._key()).__eq(anInteger);
  466. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  467. return smalltalk.withContext(function($ctx2) { return nil;
  468. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  469. return $1;
  470. }, function($ctx1) {$ctx1.fill(self,"atKey:",{anInteger:anInteger}, smalltalk.HLBindingGroup)})},
  471. args: ["anInteger"],
  472. source: "atKey: anInteger\x0a\x09^ self bindings \x0a \x09detect: [ :each | each key = anInteger ]\x0a \x09ifNone: [ nil ]",
  473. messageSends: ["detect:ifNone:", "=", "key", "bindings"],
  474. referencedClasses: []
  475. }),
  476. smalltalk.HLBindingGroup);
  477. smalltalk.addMethod(
  478. "_bindings",
  479. smalltalk.method({
  480. selector: "bindings",
  481. category: 'accessing',
  482. fn: function (){
  483. var self=this;
  484. return smalltalk.withContext(function($ctx1) { var $2,$1;
  485. $2=self["@bindings"];
  486. if(($receiver = $2) == nil || $receiver == undefined){
  487. self["@bindings"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new();
  488. $1=self["@bindings"];
  489. } else {
  490. $1=$2;
  491. };
  492. return $1;
  493. }, function($ctx1) {$ctx1.fill(self,"bindings",{}, smalltalk.HLBindingGroup)})},
  494. args: [],
  495. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := OrderedCollection new ]",
  496. messageSends: ["ifNil:", "new"],
  497. referencedClasses: ["OrderedCollection"]
  498. }),
  499. smalltalk.HLBindingGroup);
  500. smalltalk.addMethod(
  501. "_displayLabel",
  502. smalltalk.method({
  503. selector: "displayLabel",
  504. category: 'accessing',
  505. fn: function (){
  506. var self=this;
  507. return smalltalk.withContext(function($ctx1) { var $1;
  508. $1=_st(smalltalk.HLBinding.fn.prototype._displayLabel.apply(_st(self), [])).__comma("...");
  509. return $1;
  510. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{}, smalltalk.HLBindingGroup)})},
  511. args: [],
  512. source: "displayLabel\x0a\x09^ super displayLabel, '...'",
  513. messageSends: [",", "displayLabel"],
  514. referencedClasses: []
  515. }),
  516. smalltalk.HLBindingGroup);
  517. smalltalk.addMethod(
  518. "_isActive",
  519. smalltalk.method({
  520. selector: "isActive",
  521. category: 'testing',
  522. fn: function (){
  523. var self=this;
  524. return smalltalk.withContext(function($ctx1) { var $1;
  525. $1=_st(_st(self)._activeBindings())._notEmpty();
  526. return $1;
  527. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLBindingGroup)})},
  528. args: [],
  529. source: "isActive\x0a\x09^ self activeBindings notEmpty",
  530. messageSends: ["notEmpty", "activeBindings"],
  531. referencedClasses: []
  532. }),
  533. smalltalk.HLBindingGroup);
  534. smalltalk.addMethod(
  535. "_isBindingGroup",
  536. smalltalk.method({
  537. selector: "isBindingGroup",
  538. category: 'testing',
  539. fn: function (){
  540. var self=this;
  541. return smalltalk.withContext(function($ctx1) { return true;
  542. }, function($ctx1) {$ctx1.fill(self,"isBindingGroup",{}, smalltalk.HLBindingGroup)})},
  543. args: [],
  544. source: "isBindingGroup\x0a\x09^ true",
  545. messageSends: [],
  546. referencedClasses: []
  547. }),
  548. smalltalk.HLBindingGroup);
  549. smalltalk.addMethod(
  550. "_renderOn_html_",
  551. smalltalk.method({
  552. selector: "renderOn:html:",
  553. category: 'rendering',
  554. fn: function (aBindingHelper,html){
  555. var self=this;
  556. return smalltalk.withContext(function($ctx1) { var $1;
  557. $1=_st(self)._isActive();
  558. if(smalltalk.assert($1)){
  559. _st(aBindingHelper)._renderBindingGroup_on_(self,html);
  560. };
  561. return self}, function($ctx1) {$ctx1.fill(self,"renderOn:html:",{aBindingHelper:aBindingHelper,html:html},smalltalk.HLBindingGroup)})},
  562. args: ["aBindingHelper", "html"],
  563. source: "renderOn: aBindingHelper html: html\x0a\x09self isActive ifTrue: [\x0a\x09\x09aBindingHelper renderBindingGroup: self on: html ]",
  564. messageSends: ["ifTrue:", "renderBindingGroup:on:", "isActive"],
  565. referencedClasses: []
  566. }),
  567. smalltalk.HLBindingGroup);
  568. smalltalk.addClass('HLKeyBinder', smalltalk.Object, ['modifierKey', 'active', 'helper', 'bindings', 'selectedBinding'], 'Helios-KeyBindings');
  569. smalltalk.addMethod(
  570. "_activate",
  571. smalltalk.method({
  572. selector: "activate",
  573. category: 'actions',
  574. fn: function (){
  575. var self=this;
  576. return smalltalk.withContext(function($ctx1) { self["@active"]=true;
  577. _st(_st(self)._helper())._show();
  578. return self}, function($ctx1) {$ctx1.fill(self,"activate",{}, smalltalk.HLKeyBinder)})},
  579. args: [],
  580. source: "activate\x0a\x09active := true.\x0a\x09self helper show",
  581. messageSends: ["show", "helper"],
  582. referencedClasses: []
  583. }),
  584. smalltalk.HLKeyBinder);
  585. smalltalk.addMethod(
  586. "_activationKey",
  587. smalltalk.method({
  588. selector: "activationKey",
  589. category: 'accessing',
  590. fn: function (){
  591. var self=this;
  592. return smalltalk.withContext(function($ctx1) { return (32);
  593. }, function($ctx1) {$ctx1.fill(self,"activationKey",{}, smalltalk.HLKeyBinder)})},
  594. args: [],
  595. source: "activationKey\x0a\x09\x22SPACE\x22\x0a\x09^ 32",
  596. messageSends: [],
  597. referencedClasses: []
  598. }),
  599. smalltalk.HLKeyBinder);
  600. smalltalk.addMethod(
  601. "_activationKeyLabel",
  602. smalltalk.method({
  603. selector: "activationKeyLabel",
  604. category: 'accessing',
  605. fn: function (){
  606. var self=this;
  607. return smalltalk.withContext(function($ctx1) { return "ctrl + space";
  608. }, function($ctx1) {$ctx1.fill(self,"activationKeyLabel",{}, smalltalk.HLKeyBinder)})},
  609. args: [],
  610. source: "activationKeyLabel\x0a\x09^ 'ctrl + space'",
  611. messageSends: [],
  612. referencedClasses: []
  613. }),
  614. smalltalk.HLKeyBinder);
  615. smalltalk.addMethod(
  616. "_applyBinding_",
  617. smalltalk.method({
  618. selector: "applyBinding:",
  619. category: 'actions',
  620. fn: function (aBinding){
  621. var self=this;
  622. return smalltalk.withContext(function($ctx1) { _st(aBinding)._applyOn_(self);
  623. return self}, function($ctx1) {$ctx1.fill(self,"applyBinding:",{aBinding:aBinding}, smalltalk.HLKeyBinder)})},
  624. args: ["aBinding"],
  625. source: "applyBinding: aBinding\x0a aBinding applyOn: self",
  626. messageSends: ["applyOn:"],
  627. referencedClasses: []
  628. }),
  629. smalltalk.HLKeyBinder);
  630. smalltalk.addMethod(
  631. "_applyBindingAction_",
  632. smalltalk.method({
  633. selector: "applyBindingAction:",
  634. category: 'actions',
  635. fn: function (aBinding){
  636. var self=this;
  637. return smalltalk.withContext(function($ctx1) { _st(_st(aBinding)._callback())._value();
  638. _st(self)._deactivate();
  639. return self}, function($ctx1) {$ctx1.fill(self,"applyBindingAction:",{aBinding:aBinding}, smalltalk.HLKeyBinder)})},
  640. args: ["aBinding"],
  641. source: "applyBindingAction: aBinding\x0a aBinding callback value.\x0a\x09self deactivate",
  642. messageSends: ["value", "callback", "deactivate"],
  643. referencedClasses: []
  644. }),
  645. smalltalk.HLKeyBinder);
  646. smalltalk.addMethod(
  647. "_applyBindingGroup_",
  648. smalltalk.method({
  649. selector: "applyBindingGroup:",
  650. category: 'actions',
  651. fn: function (aBinding){
  652. var self=this;
  653. return smalltalk.withContext(function($ctx1) { self["@selectedBinding"]=aBinding;
  654. _st(_st(self)._helper())._refresh();
  655. return self}, function($ctx1) {$ctx1.fill(self,"applyBindingGroup:",{aBinding:aBinding}, smalltalk.HLKeyBinder)})},
  656. args: ["aBinding"],
  657. source: "applyBindingGroup: aBinding\x0a selectedBinding := aBinding.\x0a self helper refresh",
  658. messageSends: ["refresh", "helper"],
  659. referencedClasses: []
  660. }),
  661. smalltalk.HLKeyBinder);
  662. smalltalk.addMethod(
  663. "_bindings",
  664. smalltalk.method({
  665. selector: "bindings",
  666. category: 'accessing',
  667. fn: function (){
  668. var self=this;
  669. return smalltalk.withContext(function($ctx1) { var $2,$1;
  670. $2=self["@bindings"];
  671. if(($receiver = $2) == nil || $receiver == undefined){
  672. self["@bindings"]=_st(self)._defaulBindings();
  673. $1=self["@bindings"];
  674. } else {
  675. $1=$2;
  676. };
  677. return $1;
  678. }, function($ctx1) {$ctx1.fill(self,"bindings",{}, smalltalk.HLKeyBinder)})},
  679. args: [],
  680. source: "bindings\x0a\x09^ bindings ifNil: [ bindings := self defaulBindings ]",
  681. messageSends: ["ifNil:", "defaulBindings"],
  682. referencedClasses: []
  683. }),
  684. smalltalk.HLKeyBinder);
  685. smalltalk.addMethod(
  686. "_deactivate",
  687. smalltalk.method({
  688. selector: "deactivate",
  689. category: 'actions',
  690. fn: function (){
  691. var self=this;
  692. return smalltalk.withContext(function($ctx1) { self["@active"]=false;
  693. self["@selectedBinding"]=nil;
  694. _st(_st(self)._helper())._hide();
  695. return self}, function($ctx1) {$ctx1.fill(self,"deactivate",{}, smalltalk.HLKeyBinder)})},
  696. args: [],
  697. source: "deactivate\x0a\x09active := false.\x0a selectedBinding := nil.\x0a\x09self helper hide",
  698. messageSends: ["hide", "helper"],
  699. referencedClasses: []
  700. }),
  701. smalltalk.HLKeyBinder);
  702. smalltalk.addMethod(
  703. "_defaulBindings",
  704. smalltalk.method({
  705. selector: "defaulBindings",
  706. category: 'accessing',
  707. fn: function (){
  708. var self=this;
  709. var group;
  710. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  711. $1=_st((smalltalk.HLBindingGroup || HLBindingGroup))._new();
  712. _st($1)._addGroupKey_labelled_((79),"Open");
  713. _st($1)._addGroupKey_labelled_((86),"View");
  714. _st($1)._add_(_st(_st((smalltalk.HLCloseTabCommand || HLCloseTabCommand))._new())._asBinding());
  715. $2=_st($1)._yourself();
  716. group=$2;
  717. _st(_st((smalltalk.HLOpenCommand || HLOpenCommand))._allSubclasses())._do_((function(each){
  718. return smalltalk.withContext(function($ctx2) { return _st(_st(group)._at_(_st(each)._bindingGroup()))._add_(_st(_st(each)._new())._asBinding());
  719. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  720. $3=group;
  721. return $3;
  722. }, function($ctx1) {$ctx1.fill(self,"defaulBindings",{group:group}, smalltalk.HLKeyBinder)})},
  723. args: [],
  724. source: "defaulBindings\x0a\x09| group |\x0a\x09\x0a\x09group := HLBindingGroup new\x0a\x09\x09addGroupKey: 79 labelled: 'Open';\x0a\x09\x09addGroupKey: 86 labelled: 'View';\x0a\x09\x09add: HLCloseTabCommand new asBinding;\x0a\x09\x09yourself.\x0a\x09\x09\x0a\x09HLOpenCommand allSubclasses do: [ :each | \x0a\x09\x09(group at: each bindingGroup) \x0a \x09\x09\x09add: each new asBinding ].\x0a\x09\x09\x09\x09\x0a\x09^ group",
  725. messageSends: ["addGroupKey:labelled:", "new", "add:", "asBinding", "yourself", "do:", "at:", "bindingGroup", "allSubclasses"],
  726. referencedClasses: ["HLBindingGroup", "HLCloseTabCommand", "HLOpenCommand"]
  727. }),
  728. smalltalk.HLKeyBinder);
  729. smalltalk.addMethod(
  730. "_escapeKey",
  731. smalltalk.method({
  732. selector: "escapeKey",
  733. category: 'accessing',
  734. fn: function (){
  735. var self=this;
  736. return smalltalk.withContext(function($ctx1) { return (27);
  737. }, function($ctx1) {$ctx1.fill(self,"escapeKey",{}, smalltalk.HLKeyBinder)})},
  738. args: [],
  739. source: "escapeKey\x0a\x09\x22ESC\x22\x0a\x09^ 27",
  740. messageSends: [],
  741. referencedClasses: []
  742. }),
  743. smalltalk.HLKeyBinder);
  744. smalltalk.addMethod(
  745. "_flushBindings",
  746. smalltalk.method({
  747. selector: "flushBindings",
  748. category: 'actions',
  749. fn: function (){
  750. var self=this;
  751. return smalltalk.withContext(function($ctx1) { self["@bindings"]=nil;
  752. return self}, function($ctx1) {$ctx1.fill(self,"flushBindings",{}, smalltalk.HLKeyBinder)})},
  753. args: [],
  754. source: "flushBindings\x0a\x09bindings := nil",
  755. messageSends: [],
  756. referencedClasses: []
  757. }),
  758. smalltalk.HLKeyBinder);
  759. smalltalk.addMethod(
  760. "_handleActiveKeyDown_",
  761. smalltalk.method({
  762. selector: "handleActiveKeyDown:",
  763. category: 'events',
  764. fn: function (event){
  765. var self=this;
  766. return smalltalk.withContext(function($ctx1) { var $1,$2;
  767. $1=_st(_st(_st(event)._which()).__eq(_st(self)._escapeKey()))._or_((function(){
  768. return smalltalk.withContext(function($ctx2) { return _st(_st(_st(event)._which()).__eq((71)))._and_((function(){
  769. return smalltalk.withContext(function($ctx3) { return _st(event)._ctrlKey();
  770. }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
  771. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  772. if(smalltalk.assert($1)){
  773. _st(self)._deactivate();
  774. _st(event)._preventDefault();
  775. return false;
  776. };
  777. $2=_st(self)._handleBindingFor_(event);
  778. return $2;
  779. }, function($ctx1) {$ctx1.fill(self,"handleActiveKeyDown:",{event:event}, smalltalk.HLKeyBinder)})},
  780. args: ["event"],
  781. 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",
  782. messageSends: ["ifTrue:", "deactivate", "preventDefault", "or:", "and:", "ctrlKey", "=", "which", "escapeKey", "handleBindingFor:"],
  783. referencedClasses: []
  784. }),
  785. smalltalk.HLKeyBinder);
  786. smalltalk.addMethod(
  787. "_handleBindingFor_",
  788. smalltalk.method({
  789. selector: "handleBindingFor:",
  790. category: 'events',
  791. fn: function (anEvent){
  792. var self=this;
  793. var binding;
  794. return smalltalk.withContext(function($ctx1) { var $1;
  795. binding=_st(_st(self)._selectedBinding())._atKey_(_st(anEvent)._which());
  796. $1=binding;
  797. if(($receiver = $1) == nil || $receiver == undefined){
  798. $1;
  799. } else {
  800. _st(self)._applyBinding_(binding);
  801. _st(anEvent)._preventDefault();
  802. return false;
  803. };
  804. return self}, function($ctx1) {$ctx1.fill(self,"handleBindingFor:",{anEvent:anEvent,binding:binding}, smalltalk.HLKeyBinder)})},
  805. args: ["anEvent"],
  806. 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 ]",
  807. messageSends: ["atKey:", "which", "selectedBinding", "ifNotNil:", "applyBinding:", "preventDefault"],
  808. referencedClasses: []
  809. }),
  810. smalltalk.HLKeyBinder);
  811. smalltalk.addMethod(
  812. "_handleInactiveKeyDown_",
  813. smalltalk.method({
  814. selector: "handleInactiveKeyDown:",
  815. category: 'events',
  816. fn: function (event){
  817. var self=this;
  818. return smalltalk.withContext(function($ctx1) { var $1,$2;
  819. $1=_st(_st(event)._which()).__eq(_st(self)._activationKey());
  820. if(smalltalk.assert($1)){
  821. $2=_st(event)._ctrlKey();
  822. if(smalltalk.assert($2)){
  823. _st(self)._activate();
  824. _st(event)._preventDefault();
  825. return false;
  826. };
  827. };
  828. return self}, function($ctx1) {$ctx1.fill(self,"handleInactiveKeyDown:",{event:event}, smalltalk.HLKeyBinder)})},
  829. args: ["event"],
  830. source: "handleInactiveKeyDown: event\x0a event which = self activationKey ifTrue: [\x0a \x09\x09event ctrlKey ifTrue: [\x0a\x09\x09\x09\x09\x09self activate. \x0a \x09\x09 event preventDefault. \x0a \x09^ false ] ]",
  831. messageSends: ["ifTrue:", "activate", "preventDefault", "ctrlKey", "=", "activationKey", "which"],
  832. referencedClasses: []
  833. }),
  834. smalltalk.HLKeyBinder);
  835. smalltalk.addMethod(
  836. "_handleKeyDown_",
  837. smalltalk.method({
  838. selector: "handleKeyDown:",
  839. category: 'events',
  840. fn: function (event){
  841. var self=this;
  842. return smalltalk.withContext(function($ctx1) { var $2,$1;
  843. $2=_st(self)._isActive();
  844. if(smalltalk.assert($2)){
  845. $1=_st(self)._handleActiveKeyDown_(event);
  846. } else {
  847. $1=_st(self)._handleInactiveKeyDown_(event);
  848. };
  849. return $1;
  850. }, function($ctx1) {$ctx1.fill(self,"handleKeyDown:",{event:event}, smalltalk.HLKeyBinder)})},
  851. args: ["event"],
  852. source: "handleKeyDown: event\x0a\x09^ self isActive\x0a \x09ifTrue: [ self handleActiveKeyDown: event ]\x0a \x09ifFalse: [ self handleInactiveKeyDown: event ]",
  853. messageSends: ["ifTrue:ifFalse:", "handleActiveKeyDown:", "handleInactiveKeyDown:", "isActive"],
  854. referencedClasses: []
  855. }),
  856. smalltalk.HLKeyBinder);
  857. smalltalk.addMethod(
  858. "_helper",
  859. smalltalk.method({
  860. selector: "helper",
  861. category: 'accessing',
  862. fn: function (){
  863. var self=this;
  864. return smalltalk.withContext(function($ctx1) { var $1;
  865. $1=self["@helper"];
  866. return $1;
  867. }, function($ctx1) {$ctx1.fill(self,"helper",{}, smalltalk.HLKeyBinder)})},
  868. args: [],
  869. source: "helper\x0a\x09^ helper",
  870. messageSends: [],
  871. referencedClasses: []
  872. }),
  873. smalltalk.HLKeyBinder);
  874. smalltalk.addMethod(
  875. "_initialize",
  876. smalltalk.method({
  877. selector: "initialize",
  878. category: 'initialization',
  879. fn: function (){
  880. var self=this;
  881. return smalltalk.withContext(function($ctx1) { smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);
  882. self["@helper"]=_st((smalltalk.HLKeyBinderHelper || HLKeyBinderHelper))._on_(self);
  883. _st(self["@helper"])._renderStart();
  884. self["@active"]=false;
  885. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HLKeyBinder)})},
  886. args: [],
  887. source: "initialize\x0a\x09super initialize.\x0a\x09helper := HLKeyBinderHelper on: self.\x0a\x09helper renderStart.\x0a active := false",
  888. messageSends: ["initialize", "on:", "renderStart"],
  889. referencedClasses: ["HLKeyBinderHelper"]
  890. }),
  891. smalltalk.HLKeyBinder);
  892. smalltalk.addMethod(
  893. "_isActive",
  894. smalltalk.method({
  895. selector: "isActive",
  896. category: 'testing',
  897. fn: function (){
  898. var self=this;
  899. return smalltalk.withContext(function($ctx1) { var $2,$1;
  900. $2=self["@active"];
  901. if(($receiver = $2) == nil || $receiver == undefined){
  902. $1=false;
  903. } else {
  904. $1=$2;
  905. };
  906. return $1;
  907. }, function($ctx1) {$ctx1.fill(self,"isActive",{}, smalltalk.HLKeyBinder)})},
  908. args: [],
  909. source: "isActive\x0a\x09^ active ifNil: [ false ]",
  910. messageSends: ["ifNil:"],
  911. referencedClasses: []
  912. }),
  913. smalltalk.HLKeyBinder);
  914. smalltalk.addMethod(
  915. "_selectedBinding",
  916. smalltalk.method({
  917. selector: "selectedBinding",
  918. category: 'accessing',
  919. fn: function (){
  920. var self=this;
  921. return smalltalk.withContext(function($ctx1) { var $2,$1;
  922. $2=self["@selectedBinding"];
  923. if(($receiver = $2) == nil || $receiver == undefined){
  924. $1=_st(self)._bindings();
  925. } else {
  926. $1=$2;
  927. };
  928. return $1;
  929. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{}, smalltalk.HLKeyBinder)})},
  930. args: [],
  931. source: "selectedBinding\x0a\x09^ selectedBinding ifNil: [ self bindings ]",
  932. messageSends: ["ifNil:", "bindings"],
  933. referencedClasses: []
  934. }),
  935. smalltalk.HLKeyBinder);
  936. smalltalk.addMethod(
  937. "_setupEvents",
  938. smalltalk.method({
  939. selector: "setupEvents",
  940. category: 'events',
  941. fn: function (){
  942. var self=this;
  943. return smalltalk.withContext(function($ctx1) { _st(_st(window)._jQuery_("body"))._keydown_((function(event){
  944. return smalltalk.withContext(function($ctx2) { return _st(self)._handleKeyDown_(event);
  945. }, function($ctx2) {$ctx2.fillBlock({event:event},$ctx1)})}));
  946. return self}, function($ctx1) {$ctx1.fill(self,"setupEvents",{}, smalltalk.HLKeyBinder)})},
  947. args: [],
  948. source: "setupEvents\x0a\x09(window jQuery: 'body') keydown: [ :event | self handleKeyDown: event ]",
  949. messageSends: ["keydown:", "handleKeyDown:", "jQuery:"],
  950. referencedClasses: []
  951. }),
  952. smalltalk.HLKeyBinder);
  953. smalltalk.addMethod(
  954. "_systemIsMac",
  955. smalltalk.method({
  956. selector: "systemIsMac",
  957. category: 'testing',
  958. fn: function (){
  959. var self=this;
  960. return smalltalk.withContext(function($ctx1) { var $1;
  961. $1=_st(_st(navigator)._platform())._match_("Mac");
  962. return $1;
  963. }, function($ctx1) {$ctx1.fill(self,"systemIsMac",{}, smalltalk.HLKeyBinder)})},
  964. args: [],
  965. source: "systemIsMac\x0a\x09^ navigator platform match: 'Mac'",
  966. messageSends: ["match:", "platform"],
  967. referencedClasses: []
  968. }),
  969. smalltalk.HLKeyBinder);
  970. smalltalk.addClass('HLKeyBinderHelper', smalltalk.HLWidget, ['keyBinder'], 'Helios-KeyBindings');
  971. smalltalk.addMethod(
  972. "_cssClass",
  973. smalltalk.method({
  974. selector: "cssClass",
  975. category: 'accessing',
  976. fn: function (){
  977. var self=this;
  978. return smalltalk.withContext(function($ctx1) { return "key_helper";
  979. }, function($ctx1) {$ctx1.fill(self,"cssClass",{}, smalltalk.HLKeyBinderHelper)})},
  980. args: [],
  981. source: "cssClass\x0a\x09^ 'key_helper'",
  982. messageSends: [],
  983. referencedClasses: []
  984. }),
  985. smalltalk.HLKeyBinderHelper);
  986. smalltalk.addMethod(
  987. "_hide",
  988. smalltalk.method({
  989. selector: "hide",
  990. category: 'actions',
  991. fn: function (){
  992. var self=this;
  993. return smalltalk.withContext(function($ctx1) { _st(_st(_st(".").__comma(_st(self)._cssClass()))._asJQuery())._remove();
  994. return self}, function($ctx1) {$ctx1.fill(self,"hide",{}, smalltalk.HLKeyBinderHelper)})},
  995. args: [],
  996. source: "hide\x0a\x09('.', self cssClass) asJQuery remove",
  997. messageSends: ["remove", "asJQuery", ",", "cssClass"],
  998. referencedClasses: []
  999. }),
  1000. smalltalk.HLKeyBinderHelper);
  1001. smalltalk.addMethod(
  1002. "_keyBinder",
  1003. smalltalk.method({
  1004. selector: "keyBinder",
  1005. category: 'accessing',
  1006. fn: function (){
  1007. var self=this;
  1008. return smalltalk.withContext(function($ctx1) { var $1;
  1009. $1=self["@keyBinder"];
  1010. return $1;
  1011. }, function($ctx1) {$ctx1.fill(self,"keyBinder",{}, smalltalk.HLKeyBinderHelper)})},
  1012. args: [],
  1013. source: "keyBinder\x0a\x09^ keyBinder",
  1014. messageSends: [],
  1015. referencedClasses: []
  1016. }),
  1017. smalltalk.HLKeyBinderHelper);
  1018. smalltalk.addMethod(
  1019. "_keyBinder_",
  1020. smalltalk.method({
  1021. selector: "keyBinder:",
  1022. category: 'accessing',
  1023. fn: function (aKeyBinder){
  1024. var self=this;
  1025. return smalltalk.withContext(function($ctx1) { self["@keyBinder"]=aKeyBinder;
  1026. return self}, function($ctx1) {$ctx1.fill(self,"keyBinder:",{aKeyBinder:aKeyBinder}, smalltalk.HLKeyBinderHelper)})},
  1027. args: ["aKeyBinder"],
  1028. source: "keyBinder: aKeyBinder\x0a\x09keyBinder := aKeyBinder",
  1029. messageSends: [],
  1030. referencedClasses: []
  1031. }),
  1032. smalltalk.HLKeyBinderHelper);
  1033. smalltalk.addMethod(
  1034. "_registerBindings",
  1035. smalltalk.method({
  1036. selector: "registerBindings",
  1037. category: 'keyBindings',
  1038. fn: function (){
  1039. var self=this;
  1040. return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"registerBindings",{}, smalltalk.HLKeyBinderHelper)})},
  1041. args: [],
  1042. source: "registerBindings\x0a\x09\x22Do nothing\x22",
  1043. messageSends: [],
  1044. referencedClasses: []
  1045. }),
  1046. smalltalk.HLKeyBinderHelper);
  1047. smalltalk.addMethod(
  1048. "_renderBindingGroup_on_",
  1049. smalltalk.method({
  1050. selector: "renderBindingGroup:on:",
  1051. category: 'rendering',
  1052. fn: function (aBindingGroup,html){
  1053. var self=this;
  1054. return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$5,$6,$2;
  1055. _st(_st(_st(aBindingGroup)._activeBindings())._sorted_((function(a,b){
  1056. return smalltalk.withContext(function($ctx2) { return _st(_st(a)._key()).__lt(_st(b)._key());
  1057. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._do_((function(each){
  1058. return smalltalk.withContext(function($ctx2) { $1=_st(html)._span();
  1059. _st($1)._class_("command");
  1060. $2=_st($1)._with_((function(){
  1061. return smalltalk.withContext(function($ctx3) { $3=_st(html)._span();
  1062. _st($3)._class_("label");
  1063. $4=_st($3)._with_(_st(_st(each)._shortcut())._asLowercase());
  1064. $4;
  1065. $5=_st(html)._a();
  1066. _st($5)._class_("action");
  1067. _st($5)._with_(_st(each)._displayLabel());
  1068. $6=_st($5)._onClick_((function(){
  1069. return smalltalk.withContext(function($ctx4) { return _st(_st(self)._keyBinder())._applyBinding_(each);
  1070. }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));
  1071. return $6;
  1072. }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
  1073. return $2;
  1074. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1075. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingGroup:on:",{aBindingGroup:aBindingGroup,html:html},smalltalk.HLKeyBinderHelper)})},
  1076. args: ["aBindingGroup", "html"],
  1077. source: "renderBindingGroup: aBindingGroup on: html\x0a\x09(aBindingGroup activeBindings \x0a \x09sorted: [ :a :b | a key < b key ])\x0a do: [ :each |\x0a\x09\x09\x09html span class: 'command'; with: [\x0a\x09\x09\x09\x09html span class: 'label'; with: each shortcut asLowercase.\x0a \x09\x09\x09\x09html a \x0a \x09class: 'action'; \x0a with: each displayLabel;\x0a \x09\x09\x09\x09\x09onClick: [ self keyBinder applyBinding: each ] ] ]",
  1078. messageSends: ["do:", "class:", "span", "with:", "asLowercase", "shortcut", "a", "displayLabel", "onClick:", "applyBinding:", "keyBinder", "sorted:", "<", "key", "activeBindings"],
  1079. referencedClasses: []
  1080. }),
  1081. smalltalk.HLKeyBinderHelper);
  1082. smalltalk.addMethod(
  1083. "_renderBindingOn_",
  1084. smalltalk.method({
  1085. selector: "renderBindingOn:",
  1086. category: 'rendering',
  1087. fn: function (html){
  1088. var self=this;
  1089. return smalltalk.withContext(function($ctx1) { _st(_st(self)._selectedBinding())._renderOn_html_(self,html);
  1090. return self}, function($ctx1) {$ctx1.fill(self,"renderBindingOn:",{html:html}, smalltalk.HLKeyBinderHelper)})},
  1091. args: ["html"],
  1092. source: "renderBindingOn: html\x0a\x09self selectedBinding renderOn: self html: html",
  1093. messageSends: ["renderOn:html:", "selectedBinding"],
  1094. referencedClasses: []
  1095. }),
  1096. smalltalk.HLKeyBinderHelper);
  1097. smalltalk.addMethod(
  1098. "_renderContentOn_",
  1099. smalltalk.method({
  1100. selector: "renderContentOn:",
  1101. category: 'rendering',
  1102. fn: function (html){
  1103. var self=this;
  1104. return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$2;
  1105. $1=_st(html)._div();
  1106. _st($1)._class_(_st(self)._cssClass());
  1107. $2=_st($1)._with_((function(){
  1108. return smalltalk.withContext(function($ctx2) { $3=self;
  1109. _st($3)._renderSelectionOn_(html);
  1110. $4=_st($3)._renderBindingOn_(html);
  1111. return $4;
  1112. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1113. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html}, smalltalk.HLKeyBinderHelper)})},
  1114. args: ["html"],
  1115. source: "renderContentOn: html\x0a\x09html div class: self cssClass; with: [\x0a \x09self \x0a \x09renderSelectionOn:html;\x0a \x09renderBindingOn: html ]",
  1116. messageSends: ["class:", "cssClass", "div", "with:", "renderSelectionOn:", "renderBindingOn:"],
  1117. referencedClasses: []
  1118. }),
  1119. smalltalk.HLKeyBinderHelper);
  1120. smalltalk.addMethod(
  1121. "_renderSelectionOn_",
  1122. smalltalk.method({
  1123. selector: "renderSelectionOn:",
  1124. category: 'rendering',
  1125. fn: function (html){
  1126. var self=this;
  1127. return smalltalk.withContext(function($ctx1) { var $1,$3,$5,$4,$2;
  1128. $1=_st(html)._span();
  1129. _st($1)._class_("selected");
  1130. $3=$1;
  1131. $5=_st(_st(self)._selectedBinding())._label();
  1132. if(($receiver = $5) == nil || $receiver == undefined){
  1133. $4="Action";
  1134. } else {
  1135. $4=$5;
  1136. };
  1137. $2=_st($3)._with_($4);
  1138. return self}, function($ctx1) {$ctx1.fill(self,"renderSelectionOn:",{html:html}, smalltalk.HLKeyBinderHelper)})},
  1139. args: ["html"],
  1140. source: "renderSelectionOn: html\x0a\x09\x09html span \x0a \x09class: 'selected'; \x0a with: (self selectedBinding label ifNil: [ 'Action' ])",
  1141. messageSends: ["class:", "span", "with:", "ifNil:", "label", "selectedBinding"],
  1142. referencedClasses: []
  1143. }),
  1144. smalltalk.HLKeyBinderHelper);
  1145. smalltalk.addMethod(
  1146. "_renderStart",
  1147. smalltalk.method({
  1148. selector: "renderStart",
  1149. category: 'rendering',
  1150. fn: function (){
  1151. var self=this;
  1152. return smalltalk.withContext(function($ctx1) { var $1,$2;
  1153. _st((function(html){
  1154. return smalltalk.withContext(function($ctx2) { $1=_st(html)._div();
  1155. _st($1)._id_("keybinding-start-helper");
  1156. $2=_st($1)._with_(_st(_st("Press ").__comma(_st(_st(self)._keyBinder())._activationKeyLabel())).__comma(" to start"));
  1157. return $2;
  1158. }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st("body")._asJQuery());
  1159. _st((function(){
  1160. return smalltalk.withContext(function($ctx2) { return _st(_st(window)._jQuery_("#keybinding-start-helper"))._fadeOut_((1000));
  1161. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithTimeout_((2000));
  1162. return self}, function($ctx1) {$ctx1.fill(self,"renderStart",{}, smalltalk.HLKeyBinderHelper)})},
  1163. args: [],
  1164. source: "renderStart\x0a\x09[ :html |\x0a\x09\x09html div \x0a\x09\x09\x09id: 'keybinding-start-helper';\x0a\x09\x09\x09with: 'Press ', self keyBinder activationKeyLabel, ' to start' ] appendToJQuery: 'body' asJQuery.\x0a\x09\x0a\x09[ (window jQuery: '#keybinding-start-helper') fadeOut: 1000 ] \x0a\x09\x09valueWithTimeout: 2000",
  1165. messageSends: ["appendToJQuery:", "asJQuery", "id:", "div", "with:", ",", "activationKeyLabel", "keyBinder", "valueWithTimeout:", "fadeOut:", "jQuery:"],
  1166. referencedClasses: []
  1167. }),
  1168. smalltalk.HLKeyBinderHelper);
  1169. smalltalk.addMethod(
  1170. "_selectedBinding",
  1171. smalltalk.method({
  1172. selector: "selectedBinding",
  1173. category: 'accessing',
  1174. fn: function (){
  1175. var self=this;
  1176. return smalltalk.withContext(function($ctx1) { var $1;
  1177. $1=_st(_st(self)._keyBinder())._selectedBinding();
  1178. return $1;
  1179. }, function($ctx1) {$ctx1.fill(self,"selectedBinding",{}, smalltalk.HLKeyBinderHelper)})},
  1180. args: [],
  1181. source: "selectedBinding\x0a\x09^ self keyBinder selectedBinding",
  1182. messageSends: ["selectedBinding", "keyBinder"],
  1183. referencedClasses: []
  1184. }),
  1185. smalltalk.HLKeyBinderHelper);
  1186. smalltalk.addMethod(
  1187. "_show",
  1188. smalltalk.method({
  1189. selector: "show",
  1190. category: 'actions',
  1191. fn: function (){
  1192. var self=this;
  1193. return smalltalk.withContext(function($ctx1) { _st(self)._appendToJQuery_(_st("body")._asJQuery());
  1194. return self}, function($ctx1) {$ctx1.fill(self,"show",{}, smalltalk.HLKeyBinderHelper)})},
  1195. args: [],
  1196. source: "show\x0a\x09self appendToJQuery: 'body' asJQuery",
  1197. messageSends: ["appendToJQuery:", "asJQuery"],
  1198. referencedClasses: []
  1199. }),
  1200. smalltalk.HLKeyBinderHelper);
  1201. smalltalk.addMethod(
  1202. "_on_",
  1203. smalltalk.method({
  1204. selector: "on:",
  1205. category: 'instance creation',
  1206. fn: function (aKeyBinder){
  1207. var self=this;
  1208. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  1209. $2=_st(self)._new();
  1210. _st($2)._keyBinder_(aKeyBinder);
  1211. $3=_st($2)._yourself();
  1212. $1=$3;
  1213. return $1;
  1214. }, function($ctx1) {$ctx1.fill(self,"on:",{aKeyBinder:aKeyBinder}, smalltalk.HLKeyBinderHelper.klass)})},
  1215. args: ["aKeyBinder"],
  1216. source: "on: aKeyBinder\x0a\x09^ self new\x0a \x09keyBinder: aKeyBinder;\x0a yourself",
  1217. messageSends: ["keyBinder:", "new", "yourself"],
  1218. referencedClasses: []
  1219. }),
  1220. smalltalk.HLKeyBinderHelper.klass);