Changeset 4989
- Timestamp:
- Apr 17, 2022, 12:30:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/mouse.e ¶
r4893 r4989 105 105 ; Returns cursor pos. for corresponding mouse pointer pos. of the last 106 106 ; mouse click. (.mousex and .mousey is not the current mouse pos.) 107 defproc MouseLineColOff( var MouseLine, var MouseCol, var MouseOff, minline) 107 ; Syntax: xxx = MouseLineColOff( MouseLine, MouseCol, MouseOff, 108 ; MinLine [, MkType [, Flag]]) 109 ; MouseLine, MouseCol and MouseOff are returned and must be vars. 110 ; MinLine : Specify 0 for copying lines in line mode. 111 ; Flag > 0: Returns pos of char the pointer is on, not nearest 112 ; intersection. Can get MAXCOL + 1 for GPI-style marking. 113 ; xxx : x-pos of last mouse click, minimal 0, relative to the lower 114 ; left corner of the edit window. 115 defproc MouseLineColOff( var MouseLine, var MouseCol, var MouseOff, MinLine) 108 116 -- MIN = 0 for positioning, 1 for marking. 109 117 xxx = Max( .mousex - 0, 0) 110 mx = xxx118 mx = xxx 111 119 yyy = .mousey 112 120 113 -- saying 5.21, below, but not sure if it will work for that. 114 -- it will work for 5.50. 115 116 --call messagenwait("xxx1="xxx "yyy1="yyy); 121 --dprintf( 'xxx1 = 'xxx', yyy1 = 'yyy) 117 122 -- map_point 5 converts the vars xxx, yyy (mouse pointer) and off (empty) 118 123 -- into .line, .col and offset values 119 124 -- Bug of map_point 5: offset is always 0. 120 map_point 5, xxx, yyy, off, comment -- map screen to line 121 --call messagenwait("doc xxx2="xxx "yyy2="yyy); 122 MouseLine = Min( Max( xxx, minline), .last) 125 -- Map window to line/col/offset 126 map_point 5, xxx, yyy, off, comment 127 --dprintf( 'doc: xxx2 = 'xxx', yyy2 = 'yyy) 128 MouseLine = Min( Max( xxx, MinLine), .last) 123 129 MouseOff = off 124 -- EVERSION >= 5.50 can go to MAXCOL+1 for GPI-style marking 125 if arg( 6) then -- Flag we want character we're on, not nearest intersection. 130 -- EVERSION >= 5.50 can go to MAXCOL+1 for GPI-style marking. 131 -- arg( 6) = flag we want character we're on, not nearest intersection. 132 if arg( 6) then 126 133 lne = xxx 127 134 col = yyy 128 map_point 6, lne, col, off, comment -- map line/col/offset to screen 129 if lne > mx then -- The intersection selected is to the right of the mouse pointer; 130 yyy = yyy - 1 -- the character clicked on is the one to the left. 131 endif -- Note: could get col. 0 this way, but the following takes care of that. 132 endif 133 MouseCol = Min( Max( yyy, 1), MAXCOL + ( rightstr( arg(5), 1) = 'G' and minline)) 135 -- Map line/col/offset to window 136 map_point 6, lne, col, off, comment 137 -- The intersection selected is to the right of the mouse pointer; 138 -- the character clicked on is the one to the left. 139 if lne > mx then 140 yyy = yyy - 1 141 endif 142 -- Note: Could get col. 0 this way, but the following takes care of that. 143 endif 144 MkType = arg( 5) 145 if (MkType = 'MARKCHARG' | MkType = 'MARKBLOCKG') & MinLine then 146 AddCol = 1 147 else 148 AddCol = 0 149 endif 150 MouseCol = Min( Max( yyy, 1), MAXCOL + AddCol) 134 151 return xxx 135 152 … … 157 174 -- MouseOff is always 0. 158 175 MinLine = 0 159 callMouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine)176 xxx = MouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine) 160 177 dprintf( 'MouseLineColOff:') 161 dprintf( ' MouseLine = 'MouseLine', MouseCol = 'MouseCol', MouseOff = 'MouseOff', MinLine = 'MinLine )178 dprintf( ' MouseLine = 'MouseLine', MouseCol = 'MouseCol', MouseOff = 'MouseOff', MinLine = 'MinLine', xxx = 'xxx) 162 179 163 180 -- .scrolly is always 0 (bug). … … 280 297 ; Negative values mean to count from top-right. 281 298 ; If the cursor is off the desktop, its position is limited to the desktop 282 ; size. That is also do me by WinSetPointerPos.299 ; size. That is also done by WinSetPointerPos. 283 300 defproc SetPointerPosXY( pxpos, pypos) 284 301 cxd = NepmdQuerySysInfo( 'CXSCREEN') … … 998 1015 universal cursoreverywhere 999 1016 1017 MkType = '' 1018 Flag = '' 1000 1019 compile if TOP_OF_FILE_VALID = 'STREAM' 1001 ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, stream_mode)1020 MinLine = stream_mode 1002 1021 compile elseif TOP_OF_FILE_VALID 1003 ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, 0, '', 1) 1022 MinLine = 0 1023 Flag = 1 1004 1024 compile else 1005 ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, 1)1025 MinLine = 1 1006 1026 compile endif 1027 ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine, MkType, Flag) 1007 1028 1008 1029 oldsx = .scrollx … … 1010 1031 1011 1032 if stream_mode & ml > .last then 1012 endline -- go to end of last line 1033 -- Go to end of last line 1034 .last 1035 endline 1013 1036 else 1014 1037 .col = MouseCol … … 1024 1047 1025 1048 if not cursoreverywhere then 1049 -- Limit cursor to end of line 1026 1050 LineLen = length( textline( .line)) 1027 1051 if .col > LineLen then … … 1052 1076 1053 1077 if stream_mode & CursorLine > .last then 1054 endline -- go to end of last line 1078 -- Go to end of last line 1079 .last 1080 endline 1055 1081 else 1056 1082 .col = CursorCol … … 1138 1164 endif 1139 1165 if FileIsMarked() then 1140 sayerror-279-- sayerror('Text already marked')1166 'SayError -279' -- sayerror('Text already marked') 1141 1167 return 1142 1168 endif … … 1340 1366 if cua_marking_switch then 1341 1367 unmark 1342 'ClearSharBuff' -- remove content in EPM shared text buffer 1368 -- Remove content in EPM shared text buffer 1369 'ClearSharBuff' 1343 1370 'MH_GoToLastClick' 1344 1371 else … … 1370 1397 stream_mode = 0 1371 1398 endif 1372 'MH_GoToLastClick' -- Won't position cursor after line end in stream mode 1399 -- Won't position cursor after line end in stream mode 1400 'MH_GoToLastClick' 1373 1401 MouseCol = .col 1374 1402 endline … … 1432 1460 if cua_marking_switch then 1433 1461 if .line & not fMouseAfterLine then 1434 ;; call pMark_Word() -- pMark_Word doesn't include white space; the following does: 1462 --call pMark_Word() 1463 -- pMark_Word doesn't include white space; the following does: 1435 1464 call pBegin_Word() 1436 1465 markchar 1437 1466 startcol = .col 1438 1467 tabword 1439 ; if .col <> length( textline( .line)) then .col = .col - 1; endif1440 1468 .col = .col - 1 1441 1469 markchar … … 1443 1471 endif 1444 1472 endif 1445 'Copy2SharBuff' -- copy mark to shared text buffer 1473 -- Copy mark to shared text buffer 1474 'Copy2SharBuff' 1446 1475 'MatchFindOnMove' 1447 1476 endif … … 1669 1698 universal vepm_pointer 1670 1699 if verify( arg( 1), '0123456789') then -- contained a non-numeric character 1671 sayerrorINVALID_NUMBER__MSG1700 'SayError 'INVALID_NUMBER__MSG 1672 1701 else 1673 1702 vepm_pointer = arg( 1)
Note:
See TracChangeset
for help on using the changeset viewer.