Changeset 2566
- Timestamp:
- Dec 30, 2012, 9:37:11 PM (12 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r2562 r2566 92 92 WANT_TAB_INSERTION_TO_SPACE = 0 93 93 compile endif 94 94 compile 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' 100 compile endif 95 101 ; --------------------------------------------------------------------------- 96 102 definit … … 220 226 221 227 ; --------------------------------------------------------------------------- 222 ; An accelerator key issues a WM_COMMAND message, thatis processed by the228 ; An accelerator key issues a WM_COMMAND message, which is processed by the 223 229 ; ProcessCommand command defined in menu.e. 224 230 ; Some other defs where accelerator keys are filtered are: … … 359 365 Flags = Flags + AF_SHIFT 360 366 lastkeyaccelid = lastkeyaccelid + 1 361 buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, lastkeyaccelid367 buildacceltable activeaccel, KeyString''\1''Cmd, Flags, Key, AccelId 362 368 endif 363 369 endif … … 2395 2401 ; call end_shift( startline, startcol, shift_flag, 1) 2396 2402 2397 ; Moved def c_f to LOCATE.E 2398 2399 ; c_f1 is not definable in EPM. 2403 ; --------------------------------------------------------------------------- 2404 defc 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 ; --------------------------------------------------------------------------- 2413 defc 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 ; --------------------------------------------------------------------------- 2422 defc 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 ; --------------------------------------------------------------------------- 2431 defc ExtendSentence 2432 call mark_through_next_sentence() 2433 2434 ; --------------------------------------------------------------------------- 2435 defc ExtendParagraph 2436 call mark_through_next_paragraph() 2437 2438 ; --------------------------------------------------------------------------- 2439 defc 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 2450 compile if WORD_MARK_TYPE = 'CHAR' 2451 call pset_mark(.line, .line, startcol, endcol, 'CHAR', fid) 2452 compile else 2453 call pset_mark(.line, .line, startcol, endcol, 'BLOCK', fid) 2454 compile endif 2455 'Copy2SharBuff' -- Copy mark to shared text buffer 2456 endif 2457 2458 ; --------------------------------------------------------------------------- 2400 2459 defc UppercaseWord 2401 2460 call NextCmdAltersText() -
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r2525 r2566 24 24 ; display 8 ==> reenables messages from a previous display -8 25 25 ; 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. 26 32 27 33 ; --------------------------------------------------------------------------- … … 1322 1328 1323 1329 ; --------------------------------------------------------------------------- 1324 defc FindMark1325 if not FileIsMarked() then1326 'MarkWord'1327 endif1328 -- Get active mark coordinates and fileid1329 getmark first_line, last_line, first_col, last_col, mark_fileid1330 if last_line <> first_line then1331 last_line = first_line1332 endline1333 last_col = .col1334 endif1335 searchstring = substr( textline( first_line ), first_col, last_col - first_col + 1)1336 if searchstring <> '' then1337 'l '\1''searchstring1338 endif1339 1340 ; ---------------------------------------------------------------------------1341 1330 ; Support for Graphical File Comparison 1342 1331 ; Compares current file with another. File open dialog of GFC will open. … … 1382 1371 1383 1372 ; --------------------------------------------------------------------------- 1384 ; Moved from MOUSE.E 1385 ; Find identifier under cursor -- if arg(1) > 0: -- under pointer. 1373 defc 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. 1386 1391 defc FindWord 1387 1392 -- If arg(1) specified and > 0: Set cursor to pos of pointer. … … 1389 1394 'MH_gotoposition' 1390 1395 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. 1417 defc 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 1393 1425 -- find_token returns first and last col of the found string. Therefore 1394 1426 -- search shall start from 1 col behind. … … 1403 1435 -- rc is the rc from 'xcom locate'. 1404 1436 -- (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) 1406 1438 lrc = rc 1407 1439 endif 1408 1440 --sayerror 'defc findword: lrc = 'lrc 1409 1441 if lrc <> 0 then -- if not found 1410 call prestore_pos( savedpos)1442 call prestore_pos( savedpos) 1411 1443 endif 1412 1444 1413 1445 ; --------------------------------------------------------------------------- 1414 1446 ; Moved from STDPROCS.E 1415 defproc find_token( var startcol, var endcol) -- find a token around the cursor.1447 defproc find_token( var startcol, var endcol) -- find a token around the cursor. 1416 1448 if arg(3)='' then 1417 1449 token_separators = ' ~`!%^&*()-+=][{}|\:;?/><,''"'\t … … 1425 1457 endif 1426 1458 getline line 1427 len = length( line)1428 if .col >len | pos(substr(line, .col, 1), ' '\t) then1459 len = length( line) 1460 if .col > len | pos( substr( line, .col, 1), ' '\t) then 1429 1461 return -- Past end of line, or over whitespace 1430 1462 endif 1431 endcol = verify( line, token_separators, 'M', .col)1463 endcol = verify( line, token_separators, 'M', .col) 1432 1464 if endcol = .col then -- On an operator. 1433 1465 startcol = endcol 1434 if wordpos( substr(line, startcol, 2), diads) then1466 if wordpos( substr( line, startcol, 2), diads) then 1435 1467 endcol = endcol + 1 -- On first character 1436 1468 elseif .col > 1 then 1437 if wordpos( substr(line, endcol-1, 2), diads) then1469 if wordpos( substr( line, endcol-1, 2), diads) then 1438 1470 startcol = startcol - 1 -- -- On last character 1439 1471 endif … … 1446 1478 endcol = len 1447 1479 endif 1448 startcol = verify( reverse(line), token_separators, 'M', len - .col + 1)1480 startcol = verify( reverse( line), token_separators, 'M', len - .col + 1) 1449 1481 if startcol then 1450 1482 startcol = len - startcol + 2 -
TabularUnified trunk/src/netlabs/macros/mouse.e ¶
r2545 r2566 543 543 call register_mousehandler( 1, 'CANCELDRAG', ' ') 544 544 refresh 545 546 ; ---------------------------------------------------------------------------547 defc markword548 -- If arg(1) specified and > 0: Set cursor to pos of pointer.549 if arg(1) then550 'MH_gotoposition'551 unmark552 endif553 call pmark_word()554 555 ; ---------------------------------------------------------------------------556 defc marksentence557 -- If arg(1) specified and > 0: Set cursor to pos of pointer.558 if arg(1) then559 'MH_gotoposition'560 unmark561 endif562 call mark_sentence()563 564 ; ---------------------------------------------------------------------------565 defc markparagraph566 -- If arg(1) specified and > 0: Set cursor to pos of pointer.567 if arg(1) then568 'MH_gotoposition'569 unmark570 endif571 call mark_paragraph()572 573 ; ---------------------------------------------------------------------------574 defc extendsentence575 call mark_through_next_sentence()576 577 ; ---------------------------------------------------------------------------578 defc extendparagraph579 call mark_through_next_paragraph()580 581 ; ---------------------------------------------------------------------------582 defc marktoken583 -- If arg(1) specified and > 0: Set cursor to pos of pointer.584 if arg(1) then585 'MH_gotoposition'586 endif587 ; if marktype() <> '' then588 ; sayerror -279 -- 'Text already marked'589 ; return590 ; endif591 if find_token( startcol, endcol) then592 getfileid fid593 compile if WORD_MARK_TYPE = 'CHAR'594 call pset_mark(.line, .line, startcol, endcol, 'CHAR', fid)595 compile else596 call pset_mark(.line, .line, startcol, endcol, 'BLOCK', fid)597 compile endif598 'Copy2SharBuff' /* Copy mark to shared text buffer */599 endif600 601 ; Moved defc findword to LOCATE.E602 545 603 546 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r2564 r2566 1066 1066 \1'Create a line mark between two cursor positions', 1067 1067 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 1068 1073 i = i + 1; call SetAVar( 'mid_markword', i); 1069 1074 buildmenuitem menuname, mid, i, 'Mark ~word'MenuAccelString( 'MarkWord'), -- Mark word 1070 1075 'MarkWord' || 1071 1076 \1'Mark word under cursor', 1072 MIS_TEXT, 01073 i = i + 1; call SetAVar( 'mid_marktoken', i);1074 buildmenuitem menuname, mid, i, 'Mark ~identifier'MenuAccelString( 'MarkToken'), -- Mark identifier1075 'MarkToken' ||1076 \1'Mark identifier (C-style word) under cursor',1077 1077 MIS_TEXT, 0 1078 1078 i = i + 1; … … 1648 1648 MIS_SEPARATOR, 0 1649 1649 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 1651 1656 'FindWord' || 1652 \1'Find identifier (C-style word)under cursor',1657 \1'Find word under cursor', 1653 1658 MIS_TEXT, 0 1654 1659 i = i + 1; call SetAVar( 'mid_findmark', i); 1655 buildmenuitem menuname, mid, i, 'Find ~mark /word'MenuAccelString( 'FindMark'),-- Find mark1660 buildmenuitem menuname, mid, i, 'Find ~mark'MenuAccelString( 'FindMark'), -- Find mark 1656 1661 'FindMark' || 1657 1662 \1'Find marked string else word under cursor', … … 2687 2692 2688 2693 i = i + 1; call SetAVar( 'mid_directories', i); 2689 buildmenuitem menuname, mid, i, 'Director~ies', -- Directories >2694 buildmenuitem menuname, mid, i, 'Director~ies', -- Directories > 2690 2695 '', 2691 2696 MIS_TEXT + MIS_SUBMENU, 0 … … 3069 3074 MIS_TEXT, 0 3070 3075 i = i + 1; 3071 buildmenuitem menuname, mid, i, 'Command line current ~line'MenuAccelString( 'CommandDlgLine'), -- Commandline current line3076 buildmenuitem menuname, mid, i, 'Command line current ~line'MenuAccelString( 'CommandDlgLine'), -- Command line current line 3072 3077 'CommandDlgLine' || 3073 \1'Open line under cursor in command line window',3078 \1'Open line under cursor in command dialog', 3074 3079 MIS_TEXT, 0 3075 3080 i = i + 1; … … 3122 3127 i = i + 1; 3123 3128 buildmenuitem menuname, mid, i, HELP_HELP_MENU__MSG, -- Using help 3124 'helpmenu 64027'||3129 'helpmenu 0'/*64027*/ || 3125 3130 HELP_HELP_MENUP__MSG, 3126 3131 0, mpfrom2short(HP_HELP_HELP, 0) … … 3494 3499 ; SetMenuAttribute( GetAVar('mid_toggledirection'), MIA_DISABLED, c <> '') -- Toggle direction OK if not blank 3495 3500 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) 3501 3502 -- Menu for CUA keys doesn't have a Backward item 3502 3503 if GetKeyDef() = '-none-' then … … 5059 5060 new = args 5060 5061 if new = '' then 5061 'ma' -- Open command line with current .margins value5062 'ma' -- Open command line with current .margins value 5062 5063 return 5063 5064 endif … … 5068 5069 if new = '' then 5069 5070 old = NepmdQueryConfigValue( nepmd_hini, KeyPath) 5070 'commandline set_ReflowMargins' old -- Open command line with current value5071 'commandline set_ReflowMargins' old -- Open command line with current value 5071 5072 return 5072 5073 endif -
TabularUnified trunk/src/netlabs/macros/popup.e ¶
r2549 r2566 152 152 ;compile endif 153 153 154 155 154 defc MH_popup 156 155 universal activemenu … … 383 382 ch = substr( textline(.line), .col, 1) 384 383 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'), 386 388 'MarkWord'MARK_WORD_MENUP__MSG, 387 389 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, 393 392 0, mpfrom2short(HP_POPUP_FINDTOKEN, gray_if_space) 394 393 buildmenuitem menuname, 80, 8010, \0, -
TabularUnified trunk/src/netlabs/macros/stdkeys.e ¶
r2564 r2566 62 62 DefKey( 'a_l' , 'MarkLine' ) -- Start/end line mark 63 63 DefKey( '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 64 DefKey( 'a_w' , 'MarkToken' ) -- Mark current word, separators according to C syntax 65 DefKey( 'a_s_w' , 'MarkWord' ) -- Mark current word 67 66 DefKey( 'a_u' , 'UnMark' ) -- Unmark all 68 67 DefKey( 'c_\' , 'UnMark' ) -- Unmark all … … 117 116 DefKey( 'c_v' , 'RepeatFindAllFiles' ) -- Repeat find in all files of the ring 118 117 DefKey( 'c_-' , 'ToggleSearchDirection') -- Toggle search direction 119 DefKey( 'c_w' , 'FindWord' ) -- Find current word, separators according to C syntax 118 DefKey( 'c_w' , 'FindToken' ) -- Find current word, separators according to C syntax 119 DefKey( 'c_s_w' , 'FindWord' ) -- Find current word 120 DefKey( 'c_s_m' , 'FindMark' ) -- Find mark 120 121 DefKey( 'c_s_d' , 'FindDef' ) -- Find definition for current word 121 122
Note:
See TracChangeset
for help on using the changeset viewer.