Changeset 4989


Ignore:
Timestamp:
Apr 17, 2022, 12:30:10 PM (3 years ago)
Author:
Andreas Schnellbacher
Message:
  • Cosmetic changes.
File:
1 edited

Legend:

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

    r4893 r4989  
    105105; Returns cursor pos. for corresponding mouse pointer pos. of the last
    106106; 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.
     115defproc MouseLineColOff( var MouseLine, var MouseCol, var MouseOff, MinLine)
    108116                        -- MIN = 0 for positioning, 1 for marking.
    109117   xxx = Max( .mousex - 0, 0)
    110    mx = xxx
     118   mx  = xxx
    111119   yyy = .mousey
    112120
    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)
    117122   -- map_point 5 converts the vars xxx, yyy (mouse pointer) and off (empty)
    118123   -- into .line, .col and offset values
    119124   -- 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)
    123129   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
    126133      lne = xxx
    127134      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)
    134151   return xxx
    135152
     
    157174   -- MouseOff is always 0.
    158175   MinLine = 0
    159    call MouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine)
     176   xxx = MouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine)
    160177   dprintf( 'MouseLineColOff:')
    161    dprintf( '   MouseLine = 'MouseLine', MouseCol = 'MouseCol', MouseOff = 'MouseOff', MinLine = 'MinLine)
     178   dprintf( '   MouseLine = 'MouseLine', MouseCol = 'MouseCol', MouseOff = 'MouseOff', MinLine = 'MinLine', xxx = 'xxx)
    162179
    163180   -- .scrolly is always 0 (bug).
     
    280297; Negative values mean to count from top-right.
    281298; If the cursor is off the desktop, its position is limited to the desktop
    282 ; size. That is also dome by WinSetPointerPos.
     299; size. That is also done by WinSetPointerPos.
    283300defproc SetPointerPosXY( pxpos, pypos)
    284301   cxd = NepmdQuerySysInfo( 'CXSCREEN')
     
    9981015   universal cursoreverywhere
    9991016
     1017   MkType = ''
     1018   Flag   = ''
    10001019compile if TOP_OF_FILE_VALID = 'STREAM'
    1001    ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, stream_mode)
     1020   MinLine = stream_mode
    10021021compile elseif TOP_OF_FILE_VALID
    1003    ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, 0, '', 1)
     1022   MinLine = 0
     1023   Flag    = 1
    10041024compile else
    1005    ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, 1)
     1025   MinLine = 1
    10061026compile endif
     1027   ml = MouseLineColOff( MouseLine, MouseCol, MouseOff, MinLine, MkType, Flag)
    10071028
    10081029   oldsx = .scrollx
     
    10101031
    10111032   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
    10131036   else
    10141037      .col  = MouseCol
     
    10241047
    10251048   if not cursoreverywhere then
     1049      -- Limit cursor to end of line
    10261050      LineLen = length( textline( .line))
    10271051      if .col > LineLen then
     
    10521076
    10531077   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
    10551081   else
    10561082      .col  = CursorCol
     
    11381164      endif
    11391165      if FileIsMarked() then
    1140          sayerror-279  --  sayerror('Text already marked')
     1166         'SayError -279'  --  sayerror('Text already marked')
    11411167         return
    11421168      endif
     
    13401366      if cua_marking_switch then
    13411367         unmark
    1342          'ClearSharBuff'  -- remove content in EPM shared text buffer
     1368         -- Remove content in EPM shared text buffer
     1369         'ClearSharBuff'
    13431370         'MH_GoToLastClick'
    13441371      else
     
    13701397      stream_mode = 0
    13711398   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'
    13731401   MouseCol = .col
    13741402   endline
     
    14321460      if cua_marking_switch then
    14331461         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:
    14351464            call pBegin_Word()
    14361465            markchar
    14371466            startcol = .col
    14381467            tabword
    1439 ;           if .col <> length( textline( .line)) then .col = .col - 1; endif
    14401468            .col = .col - 1
    14411469            markchar
     
    14431471         endif
    14441472      endif
    1445       'Copy2SharBuff'  -- copy mark to shared text buffer
     1473      -- Copy mark to shared text buffer
     1474      'Copy2SharBuff'
    14461475      'MatchFindOnMove'
    14471476   endif
     
    16691698   universal vepm_pointer
    16701699   if verify( arg( 1), '0123456789') then  -- contained a non-numeric character
    1671       sayerror INVALID_NUMBER__MSG
     1700      'SayError 'INVALID_NUMBER__MSG
    16721701   else
    16731702      vepm_pointer = arg( 1)
Note: See TracChangeset for help on using the changeset viewer.