Changeset 2432
- Timestamp:
- Jul 9, 2011, 8:13:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r2427 r2432 195 195 196 196 ; --------------------------------------------------------------------------- 197 ; Define a cmd to call the proc for testing198 defc DefKey199 parse arg KeyString Cmd200 call DefKey( KeyString, Cmd)201 202 197 ; Add or redefine an entry to the active named accelerator key table. 203 198 ; … … 326 321 327 322 return 323 324 ; Define a cmd to call the proc for testing 325 defc DefKey 326 parse arg KeyString Cmd 327 call DefKey( KeyString, Cmd) 328 328 329 329 ; --------------------------------------------------------------------------- … … 589 589 defproc MenuAccelString 590 590 Cmd = arg(1) 591 A ppString = ''591 AccelString = '' 592 592 -- Todo: allow for specifying consecutive Cmds: Cmd1,Cmd2 or Cmd1, Cmd2 593 593 if Cmd <> '' then … … 619 619 endif 620 620 endif 621 if A ppString <> '' then622 A ppString = AppString' | 'ThisString621 if AccelString <> '' then 622 AccelString = AccelString' | 'ThisString 623 623 else 624 A ppString = ThisString624 AccelString = ThisString 625 625 endif 626 626 enddo 627 627 endif 628 628 endif 629 if A ppString <> '' then630 A ppString = \9''AppString631 endif 632 return A ppString629 if AccelString <> '' then 630 AccelString = \9''AccelString 631 endif 632 return AccelString 633 633 634 634 ; For testing: 635 635 defc MenuAccelString 636 636 Cmd = strip( arg(1)) 637 sayerror 'Menu item text appendix for "'Cmd'" is: |'Menu ItemApp( Cmd)'|'637 sayerror 'Menu item text appendix for "'Cmd'" is: |'MenuAccelString( Cmd)'|' 638 638 639 639 ; --------------------------------------------------------------------------- … … 657 657 --dprintf( 'KeyString = 'KeyString) 658 658 659 -- Omit new undo record for repeated keys or repeated commands 660 if curkey = prevkey then 661 -- nop 662 663 /* 659 664 -- 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 661 668 -- nop 662 663 -- Omit new undo record for repeated keys 664 elseif curkey = prevkey then 665 -- nop 669 */ 670 666 671 /* 667 672 -- Activate this if space should not create a new undo state … … 671 676 */ 672 677 678 /* 673 679 -- The following option is experimental and most likely leads to too 674 680 -- few recorded states, e.g. when formatting or clipboard macros were 675 681 -- used: 676 /*677 682 -- Activate this if only return or enter should create a new undo state 678 683 elseif not (rightstr( KeyString, 7) = 'newline' | … … 1492 1497 ; --------------------------------------------------------------------------- 1493 1498 defproc 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: 1495 1500 compile if 0 -- WANT_CUA_MARKING = 'SWITCH' 1496 1501 universal cua_marking_switch
Note:
See TracChangeset
for help on using the changeset viewer.