Changeset 57776 in vbox for trunk/include
- Timestamp:
- Sep 16, 2015 9:40:54 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102712
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/DragAndDrop.h
r57654 r57776 39 39 40 40 /** 41 * Structurefor maintaining a "dropped files" directory41 * Class for maintaining a "dropped files" directory 42 42 * on the host or guest. This will contain all received files & directories 43 43 * 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. 44 47 */ 45 typedef struct DNDDIRDROPPEDFILES 48 class DnDDroppedFiles 46 49 { 50 51 public: 52 53 DnDDroppedFiles(void); 54 DnDDroppedFiles(const char *pszPath, uint32_t fFlags); 55 virtual ~DnDDroppedFiles(void); 56 57 public: 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 68 protected: 69 47 70 /** Directory handle for drop directory. */ 48 71 PRTDIR hDir; … … 56 79 /** List for holding created files in the case of a rollback. */ 57 80 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 }; 69 82 70 83 bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax);
Note:
See TracChangeset
for help on using the changeset viewer.