VirtualBox

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


Ignore:
Timestamp:
Sep 16, 2015 9:40:54 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102712
Message:

DnD: Renamed DNDDIRDROPPEDFILES to DnDDroppedFiles and restructured it for being a class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp

    r57743 r57776  
    373373     * Create and query the (unique) drop target directory in the user's temporary directory.
    374374     */
    375     PDNDDIRDROPPEDFILES pDroppedFiles;
    376     const char *pszDropDir = NULL;
    377     int rc = DnDDirDroppedFilesCreateAndOpenTemp(0 /* fFlags */, &pDroppedFiles);
    378     if (RT_SUCCESS(rc))
    379         pszDropDir = DnDDirDroppedFilesGetDirAbs(pDroppedFiles);
     375    DnDDroppedFiles droppedFiles;
     376    int rc = droppedFiles.OpenTemp(0 /* fFlags */);
     377    if (RT_FAILURE(rc))
     378    {
     379        RTMemFree(pvChunk);
     380        return VERR_NO_MEMORY;
     381    }
     382
     383    const char *pszDropDir = droppedFiles.GetDirAbs();
     384    AssertPtr(pszDropDir);
    380385
    381386    /*
     
    421426                        rc = RTDirCreate(pszPathAbs, fCreationMode, 0);
    422427                        if (RT_SUCCESS(rc))
    423                             rc = DnDDirDroppedAddDir(pDroppedFiles, pszPathAbs);
     428                            rc = droppedFiles.AddDir(pszPathAbs);
    424429
    425430                        RTStrFree(pszPathAbs);
     
    488493                                if (RT_SUCCESS(rc))
    489494                                {
    490                                     rc = DnDDirDroppedAddFile(pDroppedFiles, strPathAbs.c_str());
     495                                    rc = droppedFiles.AddFile(strPathAbs.c_str());
    491496                                    if (RT_SUCCESS(rc))
    492497                                    {
     
    571576    if (RT_FAILURE(rc))
    572577    {
    573         int rc2 = DnDDirDroppedFilesRollback(pDroppedFiles);
     578        int rc2 = droppedFiles.Rollback();
    574579        AssertRC(rc2); /* Not fatal, don't report back to host. */
    575580    }
     
    620625     * by the client's drag'n drop operation lateron.
    621626     */
    622     int rc2 = DnDDirDroppedFilesClose(pDroppedFiles, false);
     627    int rc2 = droppedFiles.Reset(false /* fRemoveDropDir */);
    623628    if (RT_FAILURE(rc2)) /* Not fatal, don't report back to host. */
    624629        LogFlowFunc(("Closing dropped files directory failed with %Rrc\n", rc2));
    625 
    626     DnDDirDroppedFilesDestroy(pDroppedFiles);
    627630
    628631    LogFlowFuncLeaveRC(rc);
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