CommitDlg: Update empty file list message
[TortoiseGit.git] / src / Utils / DropFiles.h
blob02d41d9007942f6a231b2338b8a4037ca3e6922c
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013 - TortoiseGit
4 // Copyright (C) 2006-2007 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 #ifndef __DROPFILES_H__
23 #define __DROPFILES_H__
25 #include <shlobj.h>
26 #include <afxcoll.h>
28 /**
29 * \ingroup Utils
30 * Use this class to create the DROPFILES structure which is needed to
31 * support drag and drop of file names to other applications.
32 * Based on an example by Thomas Blenkers.
34 class CDropFiles
36 public:
37 CDropFiles();
38 ~CDropFiles();
40 /**
41 * Add a file with an absolute file name. This file will later be
42 * included the DROPFILES structure.
44 void AddFile(const CString &sFile);
46 /**
47 * Returns the number of files which have been added
49 INT_PTR GetCount() const;
51 bool IsEmpty() const;
53 /**
54 * Call this method when dragging begins. It will fill
55 * the DROPFILES structure with the files previously
56 * added with AddFile(...)
58 void CreateStructure();
60 protected:
61 /**
62 * CreateBuffer must be called once when all files have been added
64 void CreateBuffer();
66 /**
67 * Returns a pointer to the buffer containing the DROPFILES
68 * structure
70 void* GetBuffer() const;
72 /**
73 * Returns the size of the buffer in bytes
75 int GetBufferSize() const;
77 protected:
78 CStringArray m_arFiles;
80 char* m_pBuffer;
81 int m_nBufferSize;
84 #endif