Add option 'Show complete log'
[TortoiseGit.git] / src / TortoiseMerge / WorkingFile.h
blob07e7f8c6c37d89f9e0f5e4b9bb3b9b809138bd58
1 // TortoiseGitMerge - a Diff/Patch program
3 // Copyright (C) 2006-2007, 2011, 2013 - 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 /**
22 * \ingroup TortoiseMerge
23 * A class to encapsulate some of the details of working with filenames and descriptive names
24 * for the various files used in TMerge
26 class CWorkingFile
28 public:
29 CWorkingFile(void);
30 ~CWorkingFile(void);
32 public:
33 // Is this file in use?
34 bool InUse() const { return !m_sFilename.IsEmpty(); }
35 bool Exists() const;
36 void SetFileName(const CString& newFilename);
37 void SetConvertedFileName(const CString& newName) { m_sConvertedFilename = newName; }
38 CString GetConvertedFileName() const { return m_sConvertedFilename; }
39 void SetDescriptiveName(const CString& newDescName);
40 CString GetDescriptiveName();
41 void CreateEmptyFile();
42 CString GetWindowName() const;
43 CString GetFilename() const { return m_sFilename; }
44 void SetOutOfUse();
46 bool IsReadonly() const;
47 bool HasSourceFileChanged() const;
48 void StoreFileAttributes();
50 // Move the details of the specified file to the current one, and then mark the specified file
51 // as out of use
52 void TransferDetailsFrom(CWorkingFile& rightHandFile);
54 private:
55 void ClearStoredAttributes();
57 CString m_sFilename;
58 CString m_sConvertedFilename;
59 CString m_sDescriptiveName;
60 WIN32_FILE_ATTRIBUTE_DATA m_attribs;