Changeset 2432


Ignore:
Timestamp:
Jul 9, 2011, 8:13:02 PM (14 years ago)
Author:
Andreas Schnellbacher
Message:
  • Allow for undo state at .modify = 0. This is useful after redo.
File:
1 edited

Legend:

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

    r2427 r2432  
    195195
    196196; ---------------------------------------------------------------------------
    197 ; Define a cmd to call the proc for testing
    198 defc DefKey
    199    parse arg KeyString Cmd
    200    call DefKey( KeyString, Cmd)
    201 
    202197; Add or redefine an entry to the active named accelerator key table.
    203198;
     
    326321
    327322   return
     323
     324; Define a cmd to call the proc for testing
     325defc DefKey
     326   parse arg KeyString Cmd
     327   call DefKey( KeyString, Cmd)
    328328
    329329; ---------------------------------------------------------------------------
     
    589589defproc MenuAccelString
    590590   Cmd = arg(1)
    591    AppString = ''
     591   AccelString = ''
    592592   -- Todo: allow for specifying consecutive Cmds: Cmd1,Cmd2 or Cmd1, Cmd2
    593593   if Cmd <> '' then
     
    619619               endif
    620620            endif
    621             if AppString <> '' then
    622                AppString = AppString' | 'ThisString
     621            if AccelString <> '' then
     622               AccelString = AccelString' | 'ThisString
    623623            else
    624                AppString = ThisString
     624               AccelString = ThisString
    625625            endif
    626626         enddo
    627627      endif
    628628   endif
    629    if AppString <> '' then
    630       AppString = \9''AppString
    631    endif
    632    return AppString
     629   if AccelString <> '' then
     630      AccelString = \9''AccelString
     631   endif
     632   return AccelString
    633633
    634634; For testing:
    635635defc MenuAccelString
    636636   Cmd = strip( arg(1))
    637    sayerror 'Menu item text appendix for "'Cmd'" is: |'MenuItemApp( Cmd)'|'
     637   sayerror 'Menu item text appendix for "'Cmd'" is: |'MenuAccelString( Cmd)'|'
    638638
    639639; ---------------------------------------------------------------------------
     
    657657   --dprintf( 'KeyString = 'KeyString)
    658658
     659   -- Omit new undo record for repeated keys or repeated commands
     660   if curkey = prevkey then
     661      -- nop
     662
     663/*
    659664   -- Omit new undo record for an unmodified file
    660    if not .modify then
     665   -- (This is not useful if, after a redo, a state is reached where
     666   -- .modify is 0.)
     667   elseif not .modify then
    661668      -- nop
    662 
    663    -- Omit new undo record for repeated keys
    664    elseif curkey = prevkey then
    665       -- nop
     669*/
     670
    666671/*
    667672   -- Activate this if space should not create a new undo state
     
    671676*/
    672677
     678/*
    673679   -- The following option is experimental and most likely leads to too
    674680   -- few recorded states, e.g. when formatting or clipboard macros were
    675681   -- used:
    676 /*
    677682   -- Activate this if only return or enter should create a new undo state
    678683   elseif not (rightstr( KeyString, 7) = 'newline' |
     
    14921497; ---------------------------------------------------------------------------
    14931498defproc end_shift( startline, startcol, shift_flag, forward_flag)
    1494 ; Let's let this work regardless of which marking mode is active.
     1499; Make this work regardless of which marking mode is active:
    14951500compile if 0 -- WANT_CUA_MARKING = 'SWITCH'
    14961501   universal cua_marking_switch
Note: See TracChangeset for help on using the changeset viewer.