Changeset 3189
- Timestamp:
- Oct 14, 2018, 10:18:53 AM (6 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r3187 r3189 217 217 218 218 ; --------------------------------------------------------------------------- 219 defproc CtrlIsDown 220 ks = getkeystate( VK_CTRL) 221 fDown = (ks = 1 | ks = 2) 222 return fDown 223 224 ; --------------------------------------------------------------------------- 219 225 defproc AltIsDown 220 226 ks = getkeystate( VK_ALT) 227 fDown = (ks = 1 | ks = 2) 228 return fDown 229 230 ; --------------------------------------------------------------------------- 231 defproc ShiftIsDown 232 ks = getkeystate( VK_SHIFT) 221 233 fDown = (ks = 1 | ks = 2) 222 234 return fDown … … 589 601 AccelId = lastkeyaccelid 590 602 endif 591 buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, AccelId 603 -- Avoid to define c_break as accelerator key to keep the internal 604 -- definition working. That key is additionally defined as ProcessBreak 605 -- in STDKEYS.E, to make MenuAccelString() work. 606 if not KeyString <> 'c_break' then 607 buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, AccelId 608 endif 592 609 593 610 -- Save key def in array to allow for searching for KeyString and Cmd -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r3135 r3189 4117 4117 UpSplitCfg = upcase( SplitCfg) 4118 4118 4119 ks = getkeystate( VK_CTRL) 4120 fCtrlDown = (ks = 1 | ks = 2) 4121 if fCtrlDown then 4119 if CtrlIsDown() then 4122 4120 'ConfigureNewlineCmd' key 4123 4121 return
Note:
See TracChangeset
for help on using the changeset viewer.