If CTGitPathList::ParserFromLsFile() fails, write the output to temp file for inspection
[TortoiseGit.git] / src / TortoiseMerge / WorkingFile.h
blob589a621b0443b4f1e072f9c8933ea710e1b01d31
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 HasSourceFileChanged() const;
47 void StoreFileAttributes();
49 // Move the details of the specified file to the current one, and then mark the specified file
50 // as out of use
51 void TransferDetailsFrom(CWorkingFile& rightHandFile);
53 private:
54 void ClearStoredAttributes();
56 CString m_sFilename;
57 CString m_sConvertedFilename;
58 CString m_sDescriptiveName;
59 WIN32_FILE_ATTRIBUTE_DATA m_attribs;