1 // TortoiseSVN - 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.
21 #ifndef __DROPFILES_H__
22 #define __DROPFILES_H__
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.
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
);
46 * Returns the number of files which have been added
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();
59 * CreateBuffer must be called once when all files have been added
64 * Returns a pointer to the buffer containing the DROPFILES
67 void* GetBuffer() const;
70 * Returns the size of the buffer in bytes
72 int GetBufferSize() const;
75 CStringArray m_arFiles
;