VirtualBox

Changeset 103631 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Mar 1, 2024 11:00:38 AM (13 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161991
Message:

Shared Clipboard: More cleanups (renaming Windows parts to match the other platforms). bugref:9437

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp

    r103615 r103631  
    103103#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
    104104/**
    105  * @copydoc SharedClipboardWinDataObject::CALLBACKS::pfnTransferBegin
    106  *
    107  * Called by SharedClipboardWinDataObject::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.
    108108 * This then requests a new transfer on the host.
    109109 *
    110110 * @thread  Clipboard main thread.
    111111 */
    112 static DECLCALLBACK(int) vbtrShClDataObjectTransferBeginCallback(SharedClipboardWinDataObject::PCALLBACKCTX pCbCtx)
     112static DECLCALLBACK(int) vbtrShClDataObjectTransferBeginCallback(ShClWinDataObject::PCALLBACKCTX pCbCtx)
    113113{
    114114    LogFlowFuncEnter();
     
    137137    AssertPtr(pCtx);
    138138
    139     int rc = SharedClipboardWinTransferCreate(&pCtx->Win, pCbCtx->pTransfer);
     139    int rc = ShClWinTransferCreate(&pCtx->Win, pCbCtx->pTransfer);
    140140
    141141    LogFlowFuncLeaveRC(rc);
     
    156156    AssertPtr(pCtx);
    157157
    158     SharedClipboardWinTransferDestroy(&pCtx->Win, pCbCtx->pTransfer);
     158    ShClWinTransferDestroy(&pCtx->Win, pCbCtx->pTransfer);
    159159
    160160    LogFlowFuncLeave();
     
    186186        case SHCLTRANSFERDIR_FROM_REMOTE: /* H->G */
    187187        {
    188             rc = SharedClipboardWinTransferInitialize(&pCtx->Win, pTransfer);
     188            rc = ShClWinTransferInitialize(&pCtx->Win, pTransfer);
    189189            break;
    190190        }
     
    192192        case SHCLTRANSFERDIR_TO_REMOTE: /* G->H */
    193193        {
    194             rc = SharedClipboardWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);
     194            rc = ShClWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);
    195195            break;
    196196        }
     
    229229        case SHCLTRANSFERDIR_FROM_REMOTE: /* H->G */
    230230        {
    231             rc = SharedClipboardWinTransferStart(&pCtx->Win, pTransfer);
     231            rc = ShClWinTransferStart(&pCtx->Win, pTransfer);
    232232            break;
    233233        }
     
    305305    if (enmDir == SHCLTRANSFERDIR_TO_REMOTE) /* G->H */
    306306    {
    307         rc = SharedClipboardWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);
     307        rc = ShClWinTransferGetRootsFromClipboard(&pCtx->Win, pTransfer);
    308308    }
    309309    else if (enmDir == SHCLTRANSFERDIR_FROM_REMOTE) /* H->G */
     
    411411                     * Report available formats to the host. */
    412412                    SHCLFORMATS fFormats;
    413                     rc = SharedClipboardWinGetFormats(pWinCtx, &fFormats);
     413                    rc = ShClWinGetFormats(pWinCtx, &fFormats);
    414414                    if (RT_SUCCESS(rc))
    415415                    {
     
    434434        {
    435435            LogFunc(("WM_CHANGECBCHAIN\n"));
    436             lresultRc = SharedClipboardWinHandleWMChangeCBChain(pWinCtx, hwnd, msg, wParam, lParam);
     436            lresultRc = ShClWinHandleWMChangeCBChain(pWinCtx, hwnd, msg, wParam, lParam);
    437437            break;
    438438        }
     
    458458                    /* WM_DRAWCLIPBOARD always expects a return code of 0, so don't change "rc" here. */
    459459                    SHCLFORMATS fFormats;
    460                     rc = SharedClipboardWinGetFormats(pWinCtx, &fFormats);
     460                    rc = ShClWinGetFormats(pWinCtx, &fFormats);
    461461                    if (   RT_SUCCESS(rc)
    462462                        && fFormats != VBOX_SHCL_FMT_NONE)
     
    470470            }
    471471
    472             lresultRc = SharedClipboardWinChainPassToNext(pWinCtx, msg, wParam, lParam);
     472            lresultRc = ShClWinChainPassToNext(pWinCtx, msg, wParam, lParam);
    473473            break;
    474474        }
     
    476476        case WM_TIMER:
    477477        {
    478             int rc = SharedClipboardWinHandleWMTimer(pWinCtx);
     478            int rc = ShClWinHandleWMTimer(pWinCtx);
    479479            AssertRC(rc);
    480480
     
    492492            /* Insert the requested clipboard format data into the clipboard. */
    493493            const UINT       uFmtWin  = (UINT)wParam;
    494             const SHCLFORMAT uFmtVBox = SharedClipboardWinClipboardFormatToVBox(uFmtWin);
     494            const SHCLFORMAT uFmtVBox = ShClWinClipboardFormatToVBox(uFmtWin);
    495495
    496496            LogFunc(("WM_RENDERFORMAT: uFmtWin=%u -> uFmtVBox=0x%x\n", uFmtWin, uFmtVBox));
     
    504504            {
    505505                LogRel(("Shared Clipboard: Unsupported format (%#x) requested\n", uFmtWin));
    506                 SharedClipboardWinClear();
     506                ShClWinClear();
    507507            }
    508508            else
     
    529529                    {
    530530                        /* Wrap content into CF_HTML clipboard format if needed. */
    531                         if (!SharedClipboardWinIsCFHTML((const char *)pvData))
     531                        if (!ShClWinIsCFHTML((const char *)pvData))
    532532                        {
    533533                            char    *pszWrapped = NULL;
    534534                            uint32_t cbWrapped  = 0;
    535                             rc = SharedClipboardWinConvertMIMEToCFHTML((const char *)pvData, cbData, &pszWrapped, &cbWrapped);
     535                            rc = ShClWinConvertMIMEToCFHTML((const char *)pvData, cbData, &pszWrapped, &cbWrapped);
    536536                            if (RT_SUCCESS(rc))
    537537                            {
     
    588588            LogFunc(("WM_RENDERALLFORMATS\n"));
    589589
    590             int rc = SharedClipboardWinHandleWMRenderAllFormats(pWinCtx, hwnd);
     590            int rc = ShClWinHandleWMRenderAllFormats(pWinCtx, hwnd);
    591591            AssertRC(rc);
    592592
     
    613613            if (fFormats != VBOX_SHCL_FMT_NONE) /* Could arrive with some older GA versions. */
    614614            {
    615                 int rc = SharedClipboardWinClearAndAnnounceFormats(pWinCtx, fFormats, hwnd);
     615                int rc = ShClWinClearAndAnnounceFormats(pWinCtx, fFormats, hwnd);
    616616#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
    617617                if (   RT_SUCCESS(rc)
     
    622622                     * That way Windows will recognize that there is a data transfer available.
    623623                     */
    624                     SharedClipboardWinDataObject::CALLBACKS Callbacks;
     624                    ShClWinDataObject::CALLBACKS Callbacks;
    625625                    RT_ZERO(Callbacks);
    626626                    Callbacks.pfnTransferBegin = vbtrShClDataObjectTransferBeginCallback;
    627627
    628                     rc = SharedClipboardWinTransferCreateAndSetDataObject(pWinCtx, pCtx, &Callbacks);
     628                    rc = ShClWinTransferCreateAndSetDataObject(pWinCtx, pCtx, &Callbacks);
    629629                }
    630630#else
     
    653653            RTStrFree(pszFmts);
    654654#endif
    655             int rc = SharedClipboardWinOpen(hwnd);
     655            int rc = ShClWinOpen(hwnd);
    656656            HANDLE hClip = NULL;
    657657            if (RT_SUCCESS(rc))
     
    704704
    705705                                /* Unwrap clipboard content from CF_HTML format if needed. */
    706                                 if (SharedClipboardWinIsCFHTML((const char *)pvClip))
     706                                if (ShClWinIsCFHTML((const char *)pvClip))
    707707                                {
    708708                                    char        *pszBuf = NULL;
    709709                                    uint32_t    cbBuf   = 0;
    710                                     rc = SharedClipboardWinConvertCFHTMLToMIME((const char *)pvClip, cbClip, &pszBuf, &cbBuf);
     710                                    rc = ShClWinConvertCFHTMLToMIME((const char *)pvClip, cbClip, &pszBuf, &cbBuf);
    711711                                    if (RT_SUCCESS(rc))
    712712                                    {
     
    731731                    LogFunc(("SHCL_WIN_WM_READ_DATA: hClip=NULL, lastError=%ld\n", GetLastError()));
    732732
    733                 SharedClipboardWinClose();
     733                ShClWinClose();
    734734            }
    735735
     
    744744            LogFunc(("WM_DESTROY\n"));
    745745
    746             int rc = SharedClipboardWinHandleWMDestroy(pWinCtx);
     746            int rc = ShClWinHandleWMDestroy(pWinCtx);
    747747            AssertRC(rc);
    748748
     
    816816                         SWP_NOACTIVATE | SWP_HIDEWINDOW | SWP_NOCOPYBITS | SWP_NOREDRAW | SWP_NOSIZE);
    817817
    818             rc = SharedClipboardWinChainAdd(pWinCtx);
     818            rc = ShClWinChainAdd(pWinCtx);
    819819            if (RT_SUCCESS(rc))
    820820            {
    821                 if (!SharedClipboardWinIsNewAPI(&pWinCtx->newAPI))
     821                if (!ShClWinIsNewAPI(&pWinCtx->newAPI))
    822822                    pWinCtx->oldAPI.timerRefresh = SetTimer(pWinCtx->hWnd, 0, 10 * 1000 /* 10s */, NULL);
    823823            }
     
    933933    AssertRCReturn(rc, rc);
    934934
    935     rc = SharedClipboardWinCtxInit(&pCtx->Win);
     935    rc = ShClWinCtxInit(&pCtx->Win);
    936936    if (RT_SUCCESS(rc))
    937937        rc = VbglR3ClipboardConnectEx(&pCtx->CmdCtx, VBOX_SHCL_GF_0_CONTEXT_ID);
     
    11981198    UnregisterClass(s_szClipWndClassName, pCtx->pEnv->hInstance);
    11991199
    1200     SharedClipboardWinCtxDestroy(&pCtx->Win);
     1200    ShClWinCtxDestroy(&pCtx->Win);
    12011201
    12021202#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette