Changeset 3442


Ignore:
Timestamp:
Feb 4, 2019, 10:27:01 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed unmarking of Copy2Clip.
  • Cosmetic changes.
File:
1 edited

Legend:

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

    r3228 r3442  
    132132      stop
    133133   endif
    134    call psave_pos( save_pos)
    135    call GetBuffCommon( bufhndl, NO_MARK_NO_BUFF__MSG, arg(1))
     134   call pSave_Pos( savepos)
     135   call GetBuffCommon( bufhndl, NO_MARK_NO_BUFF__MSG, arg( 1))
    136136   call buffer( FREEBUF, bufhndl)
    137    call prestore_pos( save_pos)
     137   call pRestore_Pos( savepos)
    138138
    139139; ---------------------------------------------------------------------------
     
    150150; If arg specified, copy that instead of the marked text.
    151151defc Copy2Clip
    152    if length( arg(1)) > 0 then
     152   if length( arg( 1)) > 0 then
    153153/*
    154       PointerToBuffer = put_in_buffer( arg(1))
     154      PointerToBuffer = Put_In_Buffer( arg( 1))
    155155      if not PointerToBuffer then
    156156         return 1
    157157      endif
    158       call windowmessage( 0, getpminfo(EPMINFO_EDITCLIENT),
     158      call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT),
    159159                          5441,               -- EPM_EDIT_CLIPBOARDCOPY
    160160                          PointerToBuffer,
     
    162162*/
    163163      getfileid curfid
    164       call psave_mark(save_mark)
     164      call pSave_Mark( savemark)
    165165
    166166      -- Create a temp. file
     
    190190      -- Restore current file and mark
    191191      activatefile curfid
    192       call prestore_mark(savemark)
     192      call pRestore_Mark(savemark)
    193193
    194194   else
    195       call checkmark()                          /* Make sure there's a mark. */
     195      call CheckMark()                          /* Make sure there's a mark. */
    196196
    197197      'Copy2SharBuff'   -- Recopy the marked area to the shared buffer,
     
    229229      call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT),
    230230                          5441,               -- EPM_EDIT_CLIPBOARDCOPY
    231                           mpfrom2short( bufhndl, 0),
     231                          MpFrom2Short( bufhndl, 0),
    232232                          1)
    233233   endif
     
    237237; message to free the buffer.
    238238defc ProcessClipboardCopy
    239    result = arg(1)
     239   result = arg( 1)
    240240   if result then      -- If non-zero, free the buffer.
    241241      call buffer( FREEBUF, itoa( substr( atol(result), 3, 2), 10))  -- pass just the selector
     
    250250; Copy marked text into the PM clipboard, then delete the mark.
    251251defc Cut
    252    'copy2clip'
     252   'Copy2Clip'
    253253   if not RC then
    254254      getmark firstline, lastline, firstcol, lastcol, markfileid
     
    258258      endif
    259259      call NextCmdAltersText()
    260       call pdelete_mark()
     260      call pDelete_Mark()
    261261   endif
    262262
     
    316316   endif
    317317
    318    if mark = 67 | mark = 66 then  -- asc('C') | asc('B')
     318   if mark = 67 | mark = 66 then  -- asc( 'C') | asc( 'B')
    319319      -- Char or block mark
    320320compile if REFLOW_AFTER_PASTE
     
    323323      start_col = .col + 1
    324324compile endif
    325       poke result, 8, chr( 68 - mark)  -- 'C'->1; 'B'->2; mark as a character or block buffer
     325      poke result, 8, chr( 68 - mark)  -- 'C' -> 1; 'B' -> 2; mark as a character or block buffer
    326326      if mark = 67 & cua_marking_switch & marktype()  -- if char mark and CUA
    327327      then
     
    329329         getfileid cur_fid
    330330         if mark_fid = cur_fid then
    331             call pbegin_mark()
    332             call pdelete_mark()         -- Paste clip replaces previous mark in CUA mode
     331            call pBegin_Mark()
     332            call pDelete_Mark()         -- Paste clip replaces previous mark in CUA mode
    333333         else
    334334            unmark
     
    338338      endif
    339339
    340       call psave_mark( savemark)        -- Save the user's mark
    341       call GetBuffCommon( result, NOTHING_TO_PASTE__MSG, chr(mark))
    342       call prestore_mark( savemark)     -- Restore the user's mark
     340      call pSave_Mark( savemark)        -- Save the user's mark
     341      call GetBuffCommon( result, NOTHING_TO_PASTE__MSG, chr( mark))
     342      call pRestore_Mark( savemark)     -- Restore the user's mark
    343343   else
    344344      -- Line mark
     
    385385  compile elseif REFLOW_AFTER_PASTE = 'PROMPT_IF_WIDE'
    386386      refresh
    387       if MBID_YES = winmessagebox( 'Reflow after paste',  -- title
     387      if MBID_YES = WinMessageBox( 'Reflow after paste',  -- title
    388388                                   WIDE_PASTE__MSG,
    389389                                   MB_YESNO + MB_QUERY + MB_DEFBUTTON2 + MB_MOVEABLE)
     
    399399      endif
    400400
    401       call psave_mark( savemark)        -- Save the user's mark
     401      call pSave_Mark( savemark)        -- Save the user's mark
    402402      to_end = .last - .line            -- Remember how far from end, because # lines
    403403                                        -- from start will change as we reflow.
     
    422422         mark_line
    423423         cur_line = .line
    424          call pfind_blank_line()
     424         call pFind_Blank_Line()
    425425         if .line <> cur_line then      -- Stop at line before next blank line
    426426            up
     
    458458      endif
    459459
    460       call prestore_mark( savemark)     -- Restore the user's mark
     460      call pRestore_Mark( savemark)     -- Restore the user's mark
    461461
    462462   enddo  -- once
     
    517517   endif
    518518   if not DMbuf_handle then
    519       DMbuf_handle = buffer( CREATEBUF, EPMDMBUFFER, min( size, MAXBUFSIZE), 1)
     519      DMbuf_handle = buffer( CREATEBUF, EPMDMBUFFER, Min( size, MAXBUFSIZE), 1)
    520520   endif
    521521   if not DMbuf_handle then
    522       messageNwait( CAN_NOT_OPEN__MSG EPMDMBUFFER '-' ERROR_NUMBER__MSG RC)
     522      MessageNWait( CAN_NOT_OPEN__MSG EPMDMBUFFER '-' ERROR_NUMBER__MSG RC)
    523523      return
    524524   endif
     
    547547      return
    548548   endif
    549    call psave_mark( savemark)                              -- Save the user's mark
     549   call pSave_Mark( savemark)                              -- Save the user's mark
    550550   call GetBuffCommon( DMbuf_handle, NO_TEXT_RECOVERED__MSG)  -- (This marks what's recovered)
    551    call prestore_mark( savemark)                           -- Restore the user's mark
     551   call pRestore_Mark( savemark)                           -- Restore the user's mark
    552552
    553553
     
    558558   markt = buffer( MARKTYPEBUF, bufhndl)
    559559   getfileid activefid                      -- get current files file id
    560    if not markt & arg(3) <> 'O' then        -- MARKT = 0 ==> line mark (simple case)
     560   if not markt & arg( 3) <> 'O' then       -- MARKT = 0 ==> line mark (simple case)
    561561      noflines = buffer( GETBUF, bufhndl)   -- Retrieve data from shared EPM buf
    562562      if noflines then
    563          call pset_mark( .line + 1,.line + noflines, 1, MAXCOL, 'LINE', activefid)
     563         call pSet_Mark( .line + 1,.line + noflines, 1, MAXCOL, 'LINE', activefid)
    564564         '+'noflines
    565          call verify_buffer_size( bufhndl, noflines)
     565         call Verify_Buffer_Size( bufhndl, noflines)
    566566      else
    567567         sayerror errormsg
     
    587587;  sayerror 'orig_lines='orig_lines 'noflines='noflines 'markt='markt '.last='.last 'textline(.last)="'textline(.last)'"'
    588588   if (not orig_lines | orig_lines = noflines - 1) &
    589       markt = 2 & textline(.last) == '' then  -- Block mark?  Get rid of extra blank line
     589      markt = 2 & textline( .last) == '' then  -- Block mark?  Get rid of extra blank line
    590590      noflines = noflines - 1
    591591      deleteline .last
     
    597597      markblock                         -- block mark first character
    598598      noflines + 1                      -- advance down to last line
    599       if arg(3) = 'B' then              -- Block-marking from clipboard;
     599      if arg( 3) = 'B' then             -- Block-marking from clipboard;
    600600         .col = longestline()           -- move cursor to end of longest line
    601601      else                              -- Was originally a block; width is OK.
     
    604604      markblock                         -- complete block mark
    605605   elseif markt = 1 | markt = 3 then    -- Mark type is Character(G)
    606       split_start = activefid.col + length(textline(2)) > MAXCOL
     606      split_start = activefid.col + length(textline( 2)) > MAXCOL
    607607      split_end = cur_line_len - activefid.col + length_last > MAXCOL
    608608      setmark 2, .last, 1, length_last + 1, 3, tmpfileid  -- 3 = CHARG mark
     
    617617   rc = 0                               -- clear return code before copy
    618618   if arg(3) = 'O' then
    619       call pcommon_adjust_overlay( 'O')   -- copy mark
     619      call pCommon_Adjust_Overlay( 'O')   -- copy mark
    620620   else
    621621      if split_end then
     
    627627         begin_line
    628628      endif
    629       call pcopy_mark()                 -- copy mark
     629      call pCopy_Mark()                 -- copy mark
    630630   endif
    631631   if rc then                           -- Test for memory too full for copy_mark.
     
    638638   'xcom q'                             -- quit it
    639639   activatefile activefid               -- activate destination file
    640    call pend_mark()
     640   call pEnd_Mark()
    641641   if length_last then  -- Move right by 'executekey right', to handle stream mode.
    642642      save_CUA = CUA_marking_switch
    643643      CUA_marking_switch = 0
    644644      -- Turn off CUA marking, so moving right won't unmark.
    645       'togglecontrol 25 0'
     645      'ToggleControl 25 0'
    646646      executekey right           -- This is all we really want to do...
    647647      CUA_marking_switch = save_CUA
    648       'togglecontrol 25' CUA_marking_switch
    649    endif
    650    call verify_buffer_size( bufhndl, noflines)
    651 
    652 ; ---------------------------------------------------------------------------
    653 defproc verify_buffer_size( bufhndl, noflines)
     648      'ToggleControl 25' CUA_marking_switch
     649   endif
     650   call Verify_Buffer_Size( bufhndl, noflines)
     651
     652; ---------------------------------------------------------------------------
     653defproc Verify_Buffer_Size( bufhndl, noflines)
    654654   orig_lines = ltoa( peek( bufhndl, 28, 4), 10)
    655655   if orig_lines <> noflines & orig_lines then  -- If 0, assume never set.
     
    660660
    661661; ---------------------------------------------------------------------------
    662 defc clipview =
    663    if not clipcheck(format) then
     662defc clipview
     663   if not ClipCheck( format) then
    664664      sayerror CLIPBOARD_ERROR__MSG
    665665      return
     
    683683; ---------------------------------------------------------------------------
    684684; Doesn't work!
    685 defproc clipcheck( var format)  -- Returns error code; if OK, sets FORMAT
    686    hab = gethwndc(0)                        -- get EPM's anchorblock
     685defproc ClipCheck( var format)  -- Returns error code; if OK, sets FORMAT
     686   hab = GethWndC( 0)                       -- get EPM's anchorblock
    687687   format = \0\0\0\0                        -- (reserve four bytes)
    688688   rc = dynalink32( 'PMWIN',                -- call PM function to
    689689                    '#807',                 -- look at the data in the cb
    690690                    hab              ||     -- anchor block
    691                     atol(1)          ||     -- data format ( TEXT )
    692                     address(format), 4)
     691                    atol( 1)         ||     -- data format ( TEXT )
     692                    address( format), 4)
    693693   --format = ltoa( format, 10)             -- Convert format to ASCII
    694694   format = 1024
Note: See TracChangeset for help on using the changeset viewer.