Changeset 2566


Ignore:
Timestamp:
Dec 30, 2012, 9:37:11 PM (12 years ago)
Author:
Andreas Schnellbacher
Message:
Location:
trunk/src/netlabs/macros
Files:
6 edited

Legend:

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

    r2562 r2566  
    9292   WANT_TAB_INSERTION_TO_SPACE = 0
    9393compile endif
    94 
     94compile if not defined(WORD_MARK_TYPE)
     95   -- Bug using 'BLOCK':
     96   -- If a block is copied to the clipboard, a CRLF is appended.
     97   -- Sh+Ins will insert this CRLF instead of ignoring it.
     98   --WORD_MARK_TYPE = 'BLOCK'  -- changed by aschn
     99   WORD_MARK_TYPE = 'CHAR'
     100compile endif
    95101; ---------------------------------------------------------------------------
    96102definit
     
    220226
    221227; ---------------------------------------------------------------------------
    222 ; An accelerator key issues a WM_COMMAND message, that is processed by the
     228; An accelerator key issues a WM_COMMAND message, which is processed by the
    223229; ProcessCommand command defined in menu.e.
    224230; Some other defs where accelerator keys are filtered are:
     
    359365         Flags = Flags + AF_SHIFT
    360366         lastkeyaccelid = lastkeyaccelid + 1
    361          buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, lastkeyaccelid
     367         buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, AccelId
    362368      endif
    363369   endif
     
    23952401;  call end_shift( startline, startcol, shift_flag, 1)
    23962402
    2397 ; Moved def c_f to LOCATE.E
    2398 
    2399 ; c_f1 is not definable in EPM.
     2403; ---------------------------------------------------------------------------
     2404defc MarkWord
     2405   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     2406   if arg(1) then
     2407      'MH_gotoposition'
     2408      unmark
     2409   endif
     2410   call pmark_word()
     2411
     2412; ---------------------------------------------------------------------------
     2413defc MarkSentence
     2414   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     2415   if arg(1) then
     2416      'MH_gotoposition'
     2417      unmark
     2418   endif
     2419   call mark_sentence()
     2420
     2421; ---------------------------------------------------------------------------
     2422defc MarkParagraph
     2423   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     2424   if arg(1) then
     2425      'MH_gotoposition'
     2426      unmark
     2427   endif
     2428   call mark_paragraph()
     2429
     2430; ---------------------------------------------------------------------------
     2431defc ExtendSentence
     2432   call mark_through_next_sentence()
     2433
     2434; ---------------------------------------------------------------------------
     2435defc ExtendParagraph
     2436   call mark_through_next_paragraph()
     2437
     2438; ---------------------------------------------------------------------------
     2439defc MarkToken
     2440   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     2441   if arg(1) then
     2442      'MH_gotoposition'
     2443   endif
     2444;   if marktype() <> '' then
     2445;      sayerror -279  -- 'Text already marked'
     2446;      return
     2447;   endif
     2448   if find_token( startcol, endcol) then
     2449      getfileid fid
     2450compile if WORD_MARK_TYPE = 'CHAR'
     2451      call pset_mark(.line, .line, startcol, endcol, 'CHAR', fid)
     2452compile else
     2453      call pset_mark(.line, .line, startcol, endcol, 'BLOCK', fid)
     2454compile endif
     2455      'Copy2SharBuff'  -- Copy mark to shared text buffer
     2456   endif
     2457
     2458; ---------------------------------------------------------------------------
    24002459defc UppercaseWord
    24012460   call NextCmdAltersText()
  • TabularUnified trunk/src/netlabs/macros/locate.e

    r2525 r2566  
    2424; display 8  ==> reenables messages from a previous display -8
    2525; The rest is documented in epmtech.inf.
     26
     27; xcom l has some bugs:
     28; -  It doesn't move the cursor.
     29; -  With option 'r', it also finds the search string at the cursor.
     30; -  In replace mode, it moves the cursor, but by the length on the search
     31;    string, not by the replace string.
    2632
    2733; ---------------------------------------------------------------------------
     
    13221328
    13231329; ---------------------------------------------------------------------------
    1324 defc FindMark
    1325    if not FileIsMarked() then
    1326      'MarkWord'
    1327    endif
    1328    -- Get active mark coordinates and fileid
    1329    getmark first_line, last_line, first_col, last_col, mark_fileid
    1330    if last_line <> first_line then
    1331       last_line = first_line
    1332       endline
    1333       last_col = .col
    1334    endif
    1335    searchstring = substr( textline( first_line ), first_col, last_col - first_col + 1)
    1336    if searchstring <> '' then
    1337       'l '\1''searchstring
    1338    endif
    1339 
    1340 ; ---------------------------------------------------------------------------
    13411330; Support for Graphical File Comparison
    13421331; Compares current file with another. File open dialog of GFC will open.
     
    13821371
    13831372; ---------------------------------------------------------------------------
    1384 ; Moved from MOUSE.E
    1385 ; Find identifier under cursor -- if arg(1) > 0: -- under pointer.
     1373defc FindMark
     1374   if FileIsMarked() then
     1375      -- Get active mark coordinates and fileid
     1376      getmark first_line, last_line, first_col, last_col, mark_fileid
     1377      if last_line <> first_line then
     1378         -- Take up to one line
     1379         last_line = first_line
     1380         endline
     1381         last_col = .col
     1382      endif
     1383      searchstring = substr( textline( first_line ), first_col, last_col - first_col + 1)
     1384      if searchstring <> '' then
     1385         'l '\1''searchstring
     1386      endif
     1387   endif
     1388
     1389; ---------------------------------------------------------------------------
     1390; Find word under cursor -- if arg(1) > 0: -- under pointer.
    13861391defc FindWord
    13871392   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     
    13891394      'MH_gotoposition'
    13901395   endif
    1391    call psave_pos(savedpos)
    1392    if find_token(startcol, endcol) then
     1396   lrc = 1
     1397   startline = .line
     1398   startcol  = .col
     1399   call pend_word()
     1400   lastcol = .col
     1401   call pbegin_word()
     1402   firstcol = .col
     1403   -- Start search after current word
     1404   .col = lastcol + 1
     1405   searchstring = substr( textline( startline), firstcol, lastcol - firstcol + 1)
     1406   if searchstring <> '' then
     1407      'l '\1''searchstring
     1408      lrc = rc
     1409   endif
     1410   if rc <> 0 then
     1411      .col = startcol
     1412   endif
     1413
     1414; ---------------------------------------------------------------------------
     1415; Moved from MOUSE.E
     1416; Find identifier under cursor -- if arg(1) > 0: -- under pointer.
     1417defc FindToken
     1418   -- If arg(1) specified and > 0: Set cursor to pos of pointer.
     1419   if arg(1) then
     1420      'MH_gotoposition'
     1421   endif
     1422   lrc = 1
     1423   call psave_pos( savedpos)
     1424   if find_token( startcol, endcol) then
    13931425      -- find_token returns first and last col of the found string. Therefore
    13941426      -- search shall start from 1 col behind.
     
    14031435      -- rc is the rc from 'xcom locate'.
    14041436      -- (rc is a universal var, that doesn't need the universal definition.)
    1405       'l '\1''substr( textline(.line), startcol, (endcol - startcol) + 1)
     1437      'l '\1''substr( textline( .line), startcol, (endcol - startcol) + 1)
    14061438      lrc = rc
    14071439   endif
    14081440   --sayerror 'defc findword: lrc = 'lrc
    14091441   if lrc <> 0 then  -- if not found
    1410       call prestore_pos(savedpos)
     1442      call prestore_pos( savedpos)
    14111443   endif
    14121444
    14131445; ---------------------------------------------------------------------------
    14141446; Moved from STDPROCS.E
    1415 defproc find_token(var startcol, var endcol)  -- find a token around the cursor.
     1447defproc find_token( var startcol, var endcol)  -- find a token around the cursor.
    14161448   if arg(3)='' then
    14171449      token_separators = ' ~`!%^&*()-+=][{}|\:;?/><,''"'\t
     
    14251457   endif
    14261458   getline line
    1427    len = length(line)
    1428    if .col>len | pos(substr(line, .col, 1), ' '\t) then
     1459   len = length( line)
     1460   if .col > len | pos( substr( line, .col, 1), ' '\t) then
    14291461      return  -- Past end of line, or over whitespace
    14301462   endif
    1431    endcol = verify(line, token_separators, 'M', .col)
     1463   endcol = verify( line, token_separators, 'M', .col)
    14321464   if endcol = .col then  -- On an operator.
    14331465      startcol = endcol
    1434       if wordpos(substr(line, startcol, 2), diads) then
     1466      if wordpos( substr( line, startcol, 2), diads) then
    14351467         endcol = endcol + 1  -- On first character
    14361468      elseif .col > 1 then
    1437          if wordpos(substr(line, endcol-1, 2), diads) then
     1469         if wordpos( substr( line, endcol-1, 2), diads) then
    14381470            startcol = startcol - 1  -- -- On last character
    14391471         endif
     
    14461478      endcol = len
    14471479   endif
    1448    startcol = verify(reverse(line), token_separators, 'M', len - .col + 1)
     1480   startcol = verify( reverse( line), token_separators, 'M', len - .col + 1)
    14491481   if startcol then
    14501482      startcol = len - startcol + 2
  • TabularUnified trunk/src/netlabs/macros/mouse.e

    r2545 r2566  
    543543   call register_mousehandler( 1, 'CANCELDRAG', ' ')
    544544   refresh
    545 
    546 ; ---------------------------------------------------------------------------
    547 defc markword
    548    -- If arg(1) specified and > 0: Set cursor to pos of pointer.
    549    if arg(1) then
    550       'MH_gotoposition'
    551       unmark
    552    endif
    553    call pmark_word()
    554 
    555 ; ---------------------------------------------------------------------------
    556 defc marksentence
    557    -- If arg(1) specified and > 0: Set cursor to pos of pointer.
    558    if arg(1) then
    559       'MH_gotoposition'
    560       unmark
    561    endif
    562    call mark_sentence()
    563 
    564 ; ---------------------------------------------------------------------------
    565 defc markparagraph
    566    -- If arg(1) specified and > 0: Set cursor to pos of pointer.
    567    if arg(1) then
    568       'MH_gotoposition'
    569       unmark
    570    endif
    571    call mark_paragraph()
    572 
    573 ; ---------------------------------------------------------------------------
    574 defc extendsentence
    575    call mark_through_next_sentence()
    576 
    577 ; ---------------------------------------------------------------------------
    578 defc extendparagraph
    579    call mark_through_next_paragraph()
    580 
    581 ; ---------------------------------------------------------------------------
    582 defc marktoken
    583    -- If arg(1) specified and > 0: Set cursor to pos of pointer.
    584    if arg(1) then
    585       'MH_gotoposition'
    586    endif
    587 ;   if marktype() <> '' then
    588 ;      sayerror -279  -- 'Text already marked'
    589 ;      return
    590 ;   endif
    591    if find_token( startcol, endcol) then
    592       getfileid fid
    593 compile if WORD_MARK_TYPE = 'CHAR'
    594       call pset_mark(.line, .line, startcol, endcol, 'CHAR', fid)
    595 compile else
    596       call pset_mark(.line, .line, startcol, endcol, 'BLOCK', fid)
    597 compile endif
    598       'Copy2SharBuff'       /* Copy mark to shared text buffer */
    599    endif
    600 
    601 ; Moved defc findword to LOCATE.E
    602545
    603546; ---------------------------------------------------------------------------
  • TabularUnified trunk/src/netlabs/macros/newmenu.e

    r2564 r2566  
    10661066                                   \1'Create a line mark between two cursor positions',
    10671067                                   MIS_TEXT, 0
     1068   i = i + 1; call SetAVar( 'mid_marktoken', i);
     1069   buildmenuitem menuname, mid, i, 'Mark ~identifier'MenuAccelString( 'MarkToken'),                      -- Mark identifier
     1070                                   'MarkToken' ||
     1071                                   \1'Mark identifier (C-style word) under cursor',
     1072                                   MIS_TEXT, 0
    10681073   i = i + 1; call SetAVar( 'mid_markword', i);
    10691074   buildmenuitem menuname, mid, i, 'Mark ~word'MenuAccelString( 'MarkWord'),                             -- Mark word
    10701075                                   'MarkWord' ||
    10711076                                   \1'Mark word under cursor',
    1072                                    MIS_TEXT, 0
    1073    i = i + 1; call SetAVar( 'mid_marktoken', i);
    1074    buildmenuitem menuname, mid, i, 'Mark ~identifier'MenuAccelString( 'MarkToken'),                      -- Mark identifier
    1075                                    'MarkToken' ||
    1076                                    \1'Mark identifier (C-style word) under cursor',
    10771077                                   MIS_TEXT, 0
    10781078   i = i + 1;
     
    16481648                                   MIS_SEPARATOR, 0
    16491649   i = i + 1;
    1650    buildmenuitem menuname, mid, i, 'Find ~indentifier'MenuAccelString( 'FindWord'),                -- Find identifier
     1650   buildmenuitem menuname, mid, i, 'Find ~indentifier'MenuAccelString( 'FindToken'),               -- Find identifier
     1651                                   'FindToken' ||
     1652                                   \1'Find identifier (C-style word) under cursor',
     1653                                   MIS_TEXT, 0
     1654   i = i + 1;
     1655   buildmenuitem menuname, mid, i, 'Find ~word'MenuAccelString( 'FindWord'),                       -- Find word
    16511656                                   'FindWord' ||
    1652                                    \1'Find identifier (C-style word) under cursor',
     1657                                   \1'Find word under cursor',
    16531658                                   MIS_TEXT, 0
    16541659   i = i + 1; call SetAVar( 'mid_findmark', i);
    1655    buildmenuitem menuname, mid, i, 'Find ~mark/word'MenuAccelString( 'FindMark'),                  -- Find mark
     1660   buildmenuitem menuname, mid, i, 'Find ~mark'MenuAccelString( 'FindMark'),                       -- Find mark
    16561661                                   'FindMark' ||
    16571662                                   \1'Find marked string else word under cursor',
     
    26872692
    26882693   i = i + 1; call SetAVar( 'mid_directories', i);
    2689    buildmenuitem menuname, mid, i, 'Director~ies',                                                 -- Directories >
     2694   buildmenuitem menuname, mid, i, 'Director~ies',                                                 -- Directories  >
    26902695                                   '',
    26912696                                   MIS_TEXT + MIS_SUBMENU, 0
     
    30693074                                   MIS_TEXT, 0
    30703075   i = i + 1;
    3071    buildmenuitem menuname, mid, i, 'Commandline current ~line'MenuAccelString( 'CommandDlgLine'),  -- Commandline current line
     3076   buildmenuitem menuname, mid, i, 'Command line current ~line'MenuAccelString( 'CommandDlgLine'),  -- Command line current line
    30723077                                   'CommandDlgLine' ||
    3073                                    \1'Open line under cursor in commandline window',
     3078                                   \1'Open line under cursor in command dialog',
    30743079                                   MIS_TEXT, 0
    30753080   i = i + 1;
     
    31223127   i = i + 1;
    31233128   buildmenuitem menuname, mid, i, HELP_HELP_MENU__MSG,                                            -- Using help
    3124                                    'helpmenu 64027' ||
     3129                                   'helpmenu 0'/*64027*/ ||
    31253130                                   HELP_HELP_MENUP__MSG,
    31263131                                   0, mpfrom2short(HP_HELP_HELP, 0)
     
    34943499;   SetMenuAttribute( GetAVar('mid_toggledirection'),  MIA_DISABLED, c <> '')               -- Toggle direction OK if not blank
    34953500   on = FileIsMarked()
    3496    if on then
    3497       SetMenuText( GetAVar('mid_findmark'), 'Find ~mark')
    3498    else
    3499       SetMenuText( GetAVar('mid_findmark'), 'Find ~word')
    3500    endif
     3501   SetMenuAttribute( GetAVar('mid_findmark'), MIA_DISABLED, on)
    35013502   -- Menu for CUA keys doesn't have a Backward item
    35023503   if GetKeyDef() = '-none-' then
     
    50595060      new = args
    50605061      if new = '' then
    5061          'ma'  -- Open commandline with current .margins value
     5062         'ma'  -- Open command line with current .margins value
    50625063         return
    50635064      endif
     
    50685069      if new = '' then
    50695070         old = NepmdQueryConfigValue( nepmd_hini, KeyPath)
    5070          'commandline set_ReflowMargins' old  -- Open commandline with current value
     5071         'commandline set_ReflowMargins' old  -- Open command line with current value
    50715072         return
    50725073      endif
  • TabularUnified trunk/src/netlabs/macros/popup.e

    r2549 r2566  
    152152;compile endif
    153153
    154 
    155154defc MH_popup
    156155   universal activemenu
     
    383382      ch = substr( textline(.line), .col, 1)
    384383      gray_if_space = 16384*( ch = ' ' | not .line)
    385       buildmenuitem menuname, 80, 8000, MARK_WORD_MENU__MSG''MenuAccelString( 'MarkWord'),
     384      buildmenuitem menuname, 80, 8000, MARK_TOKEN_MENU__MSG''MenuAccelString( 'MarkToken'),
     385                                        'MarkToken'MARK_TOKEN_MENUP__MSG,
     386                                        0, mpfrom2short(HP_POPUP_MARKTOKEN, gray_if_space)
     387      buildmenuitem menuname, 80, 8001, MARK_WORD_MENU__MSG''MenuAccelString( 'MarkWord'),
    386388                                        'MarkWord'MARK_WORD_MENUP__MSG,
    387389                                        0, mpfrom2short(HP_POPUP_MARKWORD, gray_if_space)
    388       buildmenuitem menuname, 80, 8001, MARK_TOKEN_MENU__MSG''MenuAccelString( 'MarkToken'),
    389                                         'MarkToken'MARK_TOKEN_MENUP__MSG,
    390                                         0, mpfrom2short(HP_POPUP_MARKTOKEN, gray_if_space)
    391       buildmenuitem menuname, 80, 8002, FIND_TOKEN_MENU__MSG''MenuAccelString( 'FindWord'),
    392                                         'FindWord'FIND_TOKEN_MENUP__MSG,
     390      buildmenuitem menuname, 80, 8002, FIND_TOKEN_MENU__MSG''MenuAccelString( 'FindToken'),
     391                                        'FindToken'FIND_TOKEN_MENUP__MSG,
    393392                                        0, mpfrom2short(HP_POPUP_FINDTOKEN, gray_if_space)
    394393      buildmenuitem menuname, 80, 8010, \0,
  • TabularUnified trunk/src/netlabs/macros/stdkeys.e

    r2564 r2566  
    6262DefKey( 'a_l'          , 'MarkLine'        )    -- Start/end line mark
    6363DefKey( 'a_z'          , 'MarkChar'        )    -- Start/end char mark
    64 DefKey( 'a_w'          , 'MarkWord'        )    -- Mark current word
    65 ;DefKey( 'c_w'          , 'MarkToken'       )    -- Mark current word, separators according to C syntax
    66 DefKey( 'a_s_w'        , 'MarkToken'       )    -- Mark current word, separators according to C syntax
     64DefKey( 'a_w'          , 'MarkToken'       )    -- Mark current word, separators according to C syntax
     65DefKey( 'a_s_w'        , 'MarkWord'        )    -- Mark current word
    6766DefKey( 'a_u'          , 'UnMark'          )    -- Unmark all
    6867DefKey( 'c_\'          , 'UnMark'          )    -- Unmark all
     
    117116DefKey( 'c_v'          , 'RepeatFindAllFiles'   )  -- Repeat find in all files of the ring
    118117DefKey( 'c_-'          , 'ToggleSearchDirection')  -- Toggle search direction
    119 DefKey( 'c_w'          , 'FindWord'        )    -- Find current word, separators according to C syntax
     118DefKey( 'c_w'          , 'FindToken'       )    -- Find current word, separators according to C syntax
     119DefKey( 'c_s_w'        , 'FindWord'        )    -- Find current word
     120DefKey( 'c_s_m'        , 'FindMark'        )    -- Find mark
    120121DefKey( 'c_s_d'        , 'FindDef'         )    -- Find definition for current word
    121122
Note: See TracChangeset for help on using the changeset viewer.