VirtualBox

Changeset 57776 in vbox for trunk/include


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/include/VBox/GuestHost/DragAndDrop.h

    r57654 r57776  
    3939
    4040/**
    41  * Structure for maintaining a "dropped files" directory
     41 * Class for maintaining a "dropped files" directory
    4242 * on the host or guest. This will contain all received files & directories
    4343 * for a single drag and drop operation.
     44 *
     45 * In case of a failed drag and drop operation this class can also
     46 * perform a gentle rollback if required.
    4447 */
    45 typedef struct DNDDIRDROPPEDFILES
     48class DnDDroppedFiles
    4649{
     50
     51public:
     52
     53    DnDDroppedFiles(void);
     54    DnDDroppedFiles(const char *pszPath, uint32_t fFlags);
     55    virtual ~DnDDroppedFiles(void);
     56
     57public:
     58
     59    int AddFile(const char *pszFile);
     60    int AddDir(const char *pszDir);
     61    bool IsOpen(void) const;
     62    int OpenEx(const char *pszPath, uint32_t fFlags);
     63    int OpenTemp(uint32_t fFlags);
     64    const char *GetDirAbs(void) const;
     65    int Reset(bool fDeleteContent);
     66    int Rollback(void);
     67
     68protected:
     69
    4770    /** Directory handle for drop directory. */
    4871    PRTDIR                       hDir;
     
    5679    /** List for holding created files in the case of a rollback. */
    5780    RTCList<RTCString>           lstFiles;
    58 
    59 } DNDDIRDROPPEDFILES, *PDNDDIRDROPPEDFILES;
    60 
    61 int DnDDirDroppedAddFile(PDNDDIRDROPPEDFILES pDir, const char *pszFile);
    62 int DnDDirDroppedAddDir(PDNDDIRDROPPEDFILES pDir, const char *pszDir);
    63 int DnDDirDroppedFilesCreateAndOpenEx(const char *pszPath, uint32_t fFlags, PDNDDIRDROPPEDFILES *ppDir);
    64 int DnDDirDroppedFilesCreateAndOpenTemp(uint32_t fFlags, PDNDDIRDROPPEDFILES *ppDir);
    65 int DnDDirDroppedFilesClose(PDNDDIRDROPPEDFILES pDir, bool fRemove);
    66 void DnDDirDroppedFilesDestroy(PDNDDIRDROPPEDFILES pDir);
    67 const char *DnDDirDroppedFilesGetDirAbs(PDNDDIRDROPPEDFILES pDir);
    68 int DnDDirDroppedFilesRollback(PDNDDIRDROPPEDFILES pDir);
     81};
    6982
    7083bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax);
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