OSDN Git Service

add some file to compile svnlibdiff
[tortoisegit/TortoiseGitJp.git] / src / TortoiseMerge / WorkingFile.h
1 // TortoiseMerge - a Diff/Patch program\r
2 \r
3 // Copyright (C) 2006-2007 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 /**\r
22  * \ingroup TortoiseMerge\r
23  * A class to encapsulate some of the details of working with filenames and descriptive names\r
24  * for the various files used in TMerge\r
25  */\r
26 class CWorkingFile\r
27\r
28 public:\r
29         CWorkingFile(void);\r
30         ~CWorkingFile(void);\r
31 \r
32 public:\r
33         // Is this file in use?\r
34         bool InUse() const              { return !m_sFilename.IsEmpty(); }\r
35         bool Exists() const;\r
36         void SetFileName(const CString& newFilename);\r
37         void SetDescriptiveName(const CString& newDescName);\r
38         CString GetDescriptiveName();\r
39         void CreateEmptyFile();\r
40         CString GetWindowName() const;\r
41         CString GetFilename() const             { return m_sFilename; }\r
42         void SetOutOfUse()                              { m_sFilename.Empty(); m_sDescriptiveName.Empty(); }\r
43 \r
44         // Move the details of the specified file to the current one, and then mark the specified file\r
45         // as out of use\r
46         void TransferDetailsFrom(CWorkingFile& rightHandFile);\r
47 \r
48 private:\r
49         CString m_sFilename;\r
50         CString m_sDescriptiveName;\r
51 \r
52 }; \r