Changeset 3189


Ignore:
Timestamp:
Oct 14, 2018, 10:18:53 AM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Made c_break working. That key is already internally defined as ProcessBreak. It stops working when being defined as accelerator key additionally.
  • Added CtrlIsDown and ShiftIsDown procs.
Location:
trunk/src/netlabs/macros
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/keys.e

    r3187 r3189  
    217217
    218218; ---------------------------------------------------------------------------
     219defproc CtrlIsDown
     220   ks = getkeystate( VK_CTRL)
     221   fDown = (ks = 1 | ks = 2)
     222   return fDown
     223
     224; ---------------------------------------------------------------------------
    219225defproc AltIsDown
    220226   ks = getkeystate( VK_ALT)
     227   fDown = (ks = 1 | ks = 2)
     228   return fDown
     229
     230; ---------------------------------------------------------------------------
     231defproc ShiftIsDown
     232   ks = getkeystate( VK_SHIFT)
    221233   fDown = (ks = 1 | ks = 2)
    222234   return fDown
     
    589601      AccelId = lastkeyaccelid
    590602   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
    592609
    593610   -- Save key def in array to allow for searching for KeyString and Cmd
  • TabularUnified trunk/src/netlabs/macros/newmenu.e

    r3135 r3189  
    41174117   UpSplitCfg = upcase( SplitCfg)
    41184118
    4119    ks = getkeystate( VK_CTRL)
    4120    fCtrlDown = (ks = 1 | ks = 2)
    4121    if fCtrlDown then
     4119   if CtrlIsDown() then
    41224120      'ConfigureNewlineCmd' key
    41234121      return
Note: See TracChangeset for help on using the changeset viewer.