Changeset 3442
- Timestamp:
- Feb 4, 2019, 10:27:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/clipbrd.e ¶
r3228 r3442 132 132 stop 133 133 endif 134 call p save_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)) 136 136 call buffer( FREEBUF, bufhndl) 137 call p restore_pos( save_pos)137 call pRestore_Pos( savepos) 138 138 139 139 ; --------------------------------------------------------------------------- … … 150 150 ; If arg specified, copy that instead of the marked text. 151 151 defc Copy2Clip 152 if length( arg( 1)) > 0 then152 if length( arg( 1)) > 0 then 153 153 /* 154 PointerToBuffer = put_in_buffer( arg(1))154 PointerToBuffer = Put_In_Buffer( arg( 1)) 155 155 if not PointerToBuffer then 156 156 return 1 157 157 endif 158 call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT),158 call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT), 159 159 5441, -- EPM_EDIT_CLIPBOARDCOPY 160 160 PointerToBuffer, … … 162 162 */ 163 163 getfileid curfid 164 call p save_mark(save_mark)164 call pSave_Mark( savemark) 165 165 166 166 -- Create a temp. file … … 190 190 -- Restore current file and mark 191 191 activatefile curfid 192 call p restore_mark(savemark)192 call pRestore_Mark(savemark) 193 193 194 194 else 195 call checkmark() /* Make sure there's a mark. */195 call CheckMark() /* Make sure there's a mark. */ 196 196 197 197 'Copy2SharBuff' -- Recopy the marked area to the shared buffer, … … 229 229 call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT), 230 230 5441, -- EPM_EDIT_CLIPBOARDCOPY 231 mpfrom2short( bufhndl, 0),231 MpFrom2Short( bufhndl, 0), 232 232 1) 233 233 endif … … 237 237 ; message to free the buffer. 238 238 defc ProcessClipboardCopy 239 result = arg( 1)239 result = arg( 1) 240 240 if result then -- If non-zero, free the buffer. 241 241 call buffer( FREEBUF, itoa( substr( atol(result), 3, 2), 10)) -- pass just the selector … … 250 250 ; Copy marked text into the PM clipboard, then delete the mark. 251 251 defc Cut 252 ' copy2clip'252 'Copy2Clip' 253 253 if not RC then 254 254 getmark firstline, lastline, firstcol, lastcol, markfileid … … 258 258 endif 259 259 call NextCmdAltersText() 260 call p delete_mark()260 call pDelete_Mark() 261 261 endif 262 262 … … 316 316 endif 317 317 318 if mark = 67 | mark = 66 then -- asc( 'C') | asc('B')318 if mark = 67 | mark = 66 then -- asc( 'C') | asc( 'B') 319 319 -- Char or block mark 320 320 compile if REFLOW_AFTER_PASTE … … 323 323 start_col = .col + 1 324 324 compile endif 325 poke result, 8, chr( 68 - mark) -- 'C' ->1; 'B'->2; mark as a character or block buffer325 poke result, 8, chr( 68 - mark) -- 'C' -> 1; 'B' -> 2; mark as a character or block buffer 326 326 if mark = 67 & cua_marking_switch & marktype() -- if char mark and CUA 327 327 then … … 329 329 getfileid cur_fid 330 330 if mark_fid = cur_fid then 331 call p begin_mark()332 call p delete_mark() -- Paste clip replaces previous mark in CUA mode331 call pBegin_Mark() 332 call pDelete_Mark() -- Paste clip replaces previous mark in CUA mode 333 333 else 334 334 unmark … … 338 338 endif 339 339 340 call p save_mark( savemark) -- Save the user's mark341 call GetBuffCommon( result, NOTHING_TO_PASTE__MSG, chr( mark))342 call p restore_mark( savemark) -- Restore the user's mark340 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 343 343 else 344 344 -- Line mark … … 385 385 compile elseif REFLOW_AFTER_PASTE = 'PROMPT_IF_WIDE' 386 386 refresh 387 if MBID_YES = winmessagebox( 'Reflow after paste', -- title387 if MBID_YES = WinMessageBox( 'Reflow after paste', -- title 388 388 WIDE_PASTE__MSG, 389 389 MB_YESNO + MB_QUERY + MB_DEFBUTTON2 + MB_MOVEABLE) … … 399 399 endif 400 400 401 call p save_mark( savemark) -- Save the user's mark401 call pSave_Mark( savemark) -- Save the user's mark 402 402 to_end = .last - .line -- Remember how far from end, because # lines 403 403 -- from start will change as we reflow. … … 422 422 mark_line 423 423 cur_line = .line 424 call p find_blank_line()424 call pFind_Blank_Line() 425 425 if .line <> cur_line then -- Stop at line before next blank line 426 426 up … … 458 458 endif 459 459 460 call p restore_mark( savemark) -- Restore the user's mark460 call pRestore_Mark( savemark) -- Restore the user's mark 461 461 462 462 enddo -- once … … 517 517 endif 518 518 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) 520 520 endif 521 521 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) 523 523 return 524 524 endif … … 547 547 return 548 548 endif 549 call p save_mark( savemark) -- Save the user's mark549 call pSave_Mark( savemark) -- Save the user's mark 550 550 call GetBuffCommon( DMbuf_handle, NO_TEXT_RECOVERED__MSG) -- (This marks what's recovered) 551 call p restore_mark( savemark) -- Restore the user's mark551 call pRestore_Mark( savemark) -- Restore the user's mark 552 552 553 553 … … 558 558 markt = buffer( MARKTYPEBUF, bufhndl) 559 559 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) 561 561 noflines = buffer( GETBUF, bufhndl) -- Retrieve data from shared EPM buf 562 562 if noflines then 563 call p set_mark( .line + 1,.line + noflines, 1, MAXCOL, 'LINE', activefid)563 call pSet_Mark( .line + 1,.line + noflines, 1, MAXCOL, 'LINE', activefid) 564 564 '+'noflines 565 call verify_buffer_size( bufhndl, noflines)565 call Verify_Buffer_Size( bufhndl, noflines) 566 566 else 567 567 sayerror errormsg … … 587 587 ; sayerror 'orig_lines='orig_lines 'noflines='noflines 'markt='markt '.last='.last 'textline(.last)="'textline(.last)'"' 588 588 if (not orig_lines | orig_lines = noflines - 1) & 589 markt = 2 & textline( .last) == '' then -- Block mark? Get rid of extra blank line589 markt = 2 & textline( .last) == '' then -- Block mark? Get rid of extra blank line 590 590 noflines = noflines - 1 591 591 deleteline .last … … 597 597 markblock -- block mark first character 598 598 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; 600 600 .col = longestline() -- move cursor to end of longest line 601 601 else -- Was originally a block; width is OK. … … 604 604 markblock -- complete block mark 605 605 elseif markt = 1 | markt = 3 then -- Mark type is Character(G) 606 split_start = activefid.col + length(textline( 2)) > MAXCOL606 split_start = activefid.col + length(textline( 2)) > MAXCOL 607 607 split_end = cur_line_len - activefid.col + length_last > MAXCOL 608 608 setmark 2, .last, 1, length_last + 1, 3, tmpfileid -- 3 = CHARG mark … … 617 617 rc = 0 -- clear return code before copy 618 618 if arg(3) = 'O' then 619 call p common_adjust_overlay( 'O') -- copy mark619 call pCommon_Adjust_Overlay( 'O') -- copy mark 620 620 else 621 621 if split_end then … … 627 627 begin_line 628 628 endif 629 call p copy_mark() -- copy mark629 call pCopy_Mark() -- copy mark 630 630 endif 631 631 if rc then -- Test for memory too full for copy_mark. … … 638 638 'xcom q' -- quit it 639 639 activatefile activefid -- activate destination file 640 call p end_mark()640 call pEnd_Mark() 641 641 if length_last then -- Move right by 'executekey right', to handle stream mode. 642 642 save_CUA = CUA_marking_switch 643 643 CUA_marking_switch = 0 644 644 -- Turn off CUA marking, so moving right won't unmark. 645 ' togglecontrol 25 0'645 'ToggleControl 25 0' 646 646 executekey right -- This is all we really want to do... 647 647 CUA_marking_switch = save_CUA 648 ' togglecontrol 25' CUA_marking_switch649 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 ; --------------------------------------------------------------------------- 653 defproc Verify_Buffer_Size( bufhndl, noflines) 654 654 orig_lines = ltoa( peek( bufhndl, 28, 4), 10) 655 655 if orig_lines <> noflines & orig_lines then -- If 0, assume never set. … … 660 660 661 661 ; --------------------------------------------------------------------------- 662 defc clipview =663 if not clipcheck(format) then662 defc clipview 663 if not ClipCheck( format) then 664 664 sayerror CLIPBOARD_ERROR__MSG 665 665 return … … 683 683 ; --------------------------------------------------------------------------- 684 684 ; Doesn't work! 685 defproc clipcheck( var format) -- Returns error code; if OK, sets FORMAT686 hab = gethwndc(0)-- get EPM's anchorblock685 defproc ClipCheck( var format) -- Returns error code; if OK, sets FORMAT 686 hab = GethWndC( 0) -- get EPM's anchorblock 687 687 format = \0\0\0\0 -- (reserve four bytes) 688 688 rc = dynalink32( 'PMWIN', -- call PM function to 689 689 '#807', -- look at the data in the cb 690 690 hab || -- anchor block 691 atol( 1)|| -- data format ( TEXT )692 address( format), 4)691 atol( 1) || -- data format ( TEXT ) 692 address( format), 4) 693 693 --format = ltoa( format, 10) -- Convert format to ASCII 694 694 format = 1024
Note:
See TracChangeset
for help on using the changeset viewer.