pulled latest translations from Transifex
[TortoiseGit.git] / src / Utils / DropFiles.h
blob84562728ce80e1ba9f151c74dc7acd6ed41fda15
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2006-2007 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #pragma once
21 #ifndef __DROPFILES_H__
22 #define __DROPFILES_H__
24 #include <shlobj.h>
25 #include <afxcoll.h>
27 /**
28 * \ingroup Utils
29 * Use this class to create the DROPFILES structure which is needed to
30 * support drag and drop of file names to other applications.
31 * Based on an example by Thomas Blenkers.
33 class CDropFiles
35 public:
36 CDropFiles();
37 ~CDropFiles();
39 /**
40 * Add a file with an absolute file name. This file will later be
41 * included the DROPFILES structure.
43 void AddFile(const CString &sFile);
45 /**
46 * Returns the number of files which have been added
48 INT_PTR GetCount();
50 /**
51 * Call this method when dragging begins. It will fill
52 * the DROPFILES structure with the files previously
53 * added with AddFile(...)
55 void CreateStructure();
57 protected:
58 /**
59 * CreateBuffer must be called once when all files have been added
61 void CreateBuffer();
63 /**
64 * Returns a pointer to the buffer containing the DROPFILES
65 * structure
67 void* GetBuffer() const;
69 /**
70 * Returns the size of the buffer in bytes
72 int GetBufferSize() const;
74 protected:
75 CStringArray m_arFiles;
77 char* m_pBuffer;
78 int m_nBufferSize;
81 #endif