Update editorconfig
[TortoiseGit.git] / src / TortoiseMerge / WorkingFile.h
blobb650ba6bcaa5ed898ded060aac08311b6d8b1bb5
1 // TortoiseGitMerge - a Diff/Patch program
3 // Copyright (C) 2006-2007, 2011, 2013-2014 - 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 SetReflectedName(const CString& newReflectedName);
42 CString GetReflectedName();
43 void CreateEmptyFile();
44 CString GetWindowName() const;
45 CString GetFilename() const { return m_sFilename; }
46 void SetOutOfUse();
48 bool IsReadonly() const;
49 bool HasSourceFileChanged() const;
50 void StoreFileAttributes();
52 // Move the details of the specified file to the current one, and then mark the specified file
53 // as out of use
54 void TransferDetailsFrom(CWorkingFile& rightHandFile);
56 private:
57 void ClearStoredAttributes();
59 CString m_sFilename;
60 CString m_sConvertedFilename;
61 CString m_sDescriptiveName;
62 CString m_sReflectedName;
63 WIN32_FILE_ATTRIBUTE_DATA m_attribs;