Changeset 103631 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Mar 1, 2024 11:00:38 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161991
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r103615 r103631 103 103 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS 104 104 /** 105 * @copydoc Sh aredClipboardWinDataObject::CALLBACKS::pfnTransferBegin106 * 107 * Called by Sh aredClipboardWinDataObject::GetData() when the user wants to paste data.105 * @copydoc ShClWinDataObject::CALLBACKS::pfnTransferBegin 106 * 107 * Called by ShClWinDataObject::GetData() when the user wants to paste data. 108 108 * This then requests a new transfer on the host. 109 109 * 110 110 * @thread Clipboard main thread. 111 111 */ 112 static DECLCALLBACK(int) vbtrShClDataObjectTransferBeginCallback(Sh aredClipboardWinDataObject::PCALLBACKCTX pCbCtx)112 static DECLCALLBACK(int) vbtrShClDataObjectTransferBeginCallback(ShClWinDataObject::PCALLBACKCTX pCbCtx) 113 113 { 114 114 LogFlowFuncEnter(); … … 137 137 AssertPtr(pCtx); 138 138 139 int rc = Sh aredClipboardWinTransferCreate(&pCtx->Win, pCbCtx->pTransfer);139 int rc = ShClWinTransferCreate(&pCtx->Win, pCbCtx->pTransfer); 140 140 141 141 LogFlowFuncLeaveRC(rc); … … 156 156 AssertPtr(pCtx); 157 157 158 Sh aredClipboardWinTransferDestroy(&pCtx->Win, pCbCtx->pTransfer);158 ShClWinTransferDestroy(&pCtx->Win, pCbCtx->pTransfer); 159 159 160 160 LogFlowFuncLeave(); … … 186 186 case SHCLTRANSFERDIR_FROM_REMOTE: /* H->G */ 187 187 { 188 rc = Sh aredClipboardWinTransferInitialize(&pCtx->Win, pTransfer);188 rc = ShClWinTransferInitialize(&pCtx->Win, pTransfer); 189 189 break; 190 190 } … … 192 192 case SHCLTRANSFERDIR_TO_REMOTE: /* G->H */ 193 193 { 194 rc = Sh aredClipboardWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);194 rc = ShClWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer); 195 195 break; 196 196 } … … 229 229 case SHCLTRANSFERDIR_FROM_REMOTE: /* H->G */ 230 230 { 231 rc = Sh aredClipboardWinTransferStart(&pCtx->Win, pTransfer);231 rc = ShClWinTransferStart(&pCtx->Win, pTransfer); 232 232 break; 233 233 } … … 305 305 if (enmDir == SHCLTRANSFERDIR_TO_REMOTE) /* G->H */ 306 306 { 307 rc = Sh aredClipboardWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);307 rc = ShClWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer); 308 308 } 309 309 else if (enmDir == SHCLTRANSFERDIR_FROM_REMOTE) /* H->G */ … … 411 411 * Report available formats to the host. */ 412 412 SHCLFORMATS fFormats; 413 rc = Sh aredClipboardWinGetFormats(pWinCtx, &fFormats);413 rc = ShClWinGetFormats(pWinCtx, &fFormats); 414 414 if (RT_SUCCESS(rc)) 415 415 { … … 434 434 { 435 435 LogFunc(("WM_CHANGECBCHAIN\n")); 436 lresultRc = Sh aredClipboardWinHandleWMChangeCBChain(pWinCtx, hwnd, msg, wParam, lParam);436 lresultRc = ShClWinHandleWMChangeCBChain(pWinCtx, hwnd, msg, wParam, lParam); 437 437 break; 438 438 } … … 458 458 /* WM_DRAWCLIPBOARD always expects a return code of 0, so don't change "rc" here. */ 459 459 SHCLFORMATS fFormats; 460 rc = Sh aredClipboardWinGetFormats(pWinCtx, &fFormats);460 rc = ShClWinGetFormats(pWinCtx, &fFormats); 461 461 if ( RT_SUCCESS(rc) 462 462 && fFormats != VBOX_SHCL_FMT_NONE) … … 470 470 } 471 471 472 lresultRc = Sh aredClipboardWinChainPassToNext(pWinCtx, msg, wParam, lParam);472 lresultRc = ShClWinChainPassToNext(pWinCtx, msg, wParam, lParam); 473 473 break; 474 474 } … … 476 476 case WM_TIMER: 477 477 { 478 int rc = Sh aredClipboardWinHandleWMTimer(pWinCtx);478 int rc = ShClWinHandleWMTimer(pWinCtx); 479 479 AssertRC(rc); 480 480 … … 492 492 /* Insert the requested clipboard format data into the clipboard. */ 493 493 const UINT uFmtWin = (UINT)wParam; 494 const SHCLFORMAT uFmtVBox = Sh aredClipboardWinClipboardFormatToVBox(uFmtWin);494 const SHCLFORMAT uFmtVBox = ShClWinClipboardFormatToVBox(uFmtWin); 495 495 496 496 LogFunc(("WM_RENDERFORMAT: uFmtWin=%u -> uFmtVBox=0x%x\n", uFmtWin, uFmtVBox)); … … 504 504 { 505 505 LogRel(("Shared Clipboard: Unsupported format (%#x) requested\n", uFmtWin)); 506 Sh aredClipboardWinClear();506 ShClWinClear(); 507 507 } 508 508 else … … 529 529 { 530 530 /* Wrap content into CF_HTML clipboard format if needed. */ 531 if (!Sh aredClipboardWinIsCFHTML((const char *)pvData))531 if (!ShClWinIsCFHTML((const char *)pvData)) 532 532 { 533 533 char *pszWrapped = NULL; 534 534 uint32_t cbWrapped = 0; 535 rc = Sh aredClipboardWinConvertMIMEToCFHTML((const char *)pvData, cbData, &pszWrapped, &cbWrapped);535 rc = ShClWinConvertMIMEToCFHTML((const char *)pvData, cbData, &pszWrapped, &cbWrapped); 536 536 if (RT_SUCCESS(rc)) 537 537 { … … 588 588 LogFunc(("WM_RENDERALLFORMATS\n")); 589 589 590 int rc = Sh aredClipboardWinHandleWMRenderAllFormats(pWinCtx, hwnd);590 int rc = ShClWinHandleWMRenderAllFormats(pWinCtx, hwnd); 591 591 AssertRC(rc); 592 592 … … 613 613 if (fFormats != VBOX_SHCL_FMT_NONE) /* Could arrive with some older GA versions. */ 614 614 { 615 int rc = Sh aredClipboardWinClearAndAnnounceFormats(pWinCtx, fFormats, hwnd);615 int rc = ShClWinClearAndAnnounceFormats(pWinCtx, fFormats, hwnd); 616 616 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS 617 617 if ( RT_SUCCESS(rc) … … 622 622 * That way Windows will recognize that there is a data transfer available. 623 623 */ 624 Sh aredClipboardWinDataObject::CALLBACKS Callbacks;624 ShClWinDataObject::CALLBACKS Callbacks; 625 625 RT_ZERO(Callbacks); 626 626 Callbacks.pfnTransferBegin = vbtrShClDataObjectTransferBeginCallback; 627 627 628 rc = Sh aredClipboardWinTransferCreateAndSetDataObject(pWinCtx, pCtx, &Callbacks);628 rc = ShClWinTransferCreateAndSetDataObject(pWinCtx, pCtx, &Callbacks); 629 629 } 630 630 #else … … 653 653 RTStrFree(pszFmts); 654 654 #endif 655 int rc = Sh aredClipboardWinOpen(hwnd);655 int rc = ShClWinOpen(hwnd); 656 656 HANDLE hClip = NULL; 657 657 if (RT_SUCCESS(rc)) … … 704 704 705 705 /* Unwrap clipboard content from CF_HTML format if needed. */ 706 if (Sh aredClipboardWinIsCFHTML((const char *)pvClip))706 if (ShClWinIsCFHTML((const char *)pvClip)) 707 707 { 708 708 char *pszBuf = NULL; 709 709 uint32_t cbBuf = 0; 710 rc = Sh aredClipboardWinConvertCFHTMLToMIME((const char *)pvClip, cbClip, &pszBuf, &cbBuf);710 rc = ShClWinConvertCFHTMLToMIME((const char *)pvClip, cbClip, &pszBuf, &cbBuf); 711 711 if (RT_SUCCESS(rc)) 712 712 { … … 731 731 LogFunc(("SHCL_WIN_WM_READ_DATA: hClip=NULL, lastError=%ld\n", GetLastError())); 732 732 733 Sh aredClipboardWinClose();733 ShClWinClose(); 734 734 } 735 735 … … 744 744 LogFunc(("WM_DESTROY\n")); 745 745 746 int rc = Sh aredClipboardWinHandleWMDestroy(pWinCtx);746 int rc = ShClWinHandleWMDestroy(pWinCtx); 747 747 AssertRC(rc); 748 748 … … 816 816 SWP_NOACTIVATE | SWP_HIDEWINDOW | SWP_NOCOPYBITS | SWP_NOREDRAW | SWP_NOSIZE); 817 817 818 rc = Sh aredClipboardWinChainAdd(pWinCtx);818 rc = ShClWinChainAdd(pWinCtx); 819 819 if (RT_SUCCESS(rc)) 820 820 { 821 if (!Sh aredClipboardWinIsNewAPI(&pWinCtx->newAPI))821 if (!ShClWinIsNewAPI(&pWinCtx->newAPI)) 822 822 pWinCtx->oldAPI.timerRefresh = SetTimer(pWinCtx->hWnd, 0, 10 * 1000 /* 10s */, NULL); 823 823 } … … 933 933 AssertRCReturn(rc, rc); 934 934 935 rc = Sh aredClipboardWinCtxInit(&pCtx->Win);935 rc = ShClWinCtxInit(&pCtx->Win); 936 936 if (RT_SUCCESS(rc)) 937 937 rc = VbglR3ClipboardConnectEx(&pCtx->CmdCtx, VBOX_SHCL_GF_0_CONTEXT_ID); … … 1198 1198 UnregisterClass(s_szClipWndClassName, pCtx->pEnv->hInstance); 1199 1199 1200 Sh aredClipboardWinCtxDestroy(&pCtx->Win);1200 ShClWinCtxDestroy(&pCtx->Win); 1201 1201 1202 1202 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
Note:
See TracChangeset
for help on using the changeset viewer.