CPatch: New memory management
[TortoiseGit.git] / src / ResText / POFile.h
blob66a53cfa5f36728148e12d052cb399bb9c6be33c
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2007, 2011, 2015-2016 - 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.
18 #pragma once
19 #include <string>
20 #include <map>
21 #include <set>
22 #include <vector>
23 #include <tuple>
25 typedef struct tagResourceEntry
27 WORD menuID;
28 std::vector<std::wstring> translatorcomments;
29 std::vector<std::wstring> automaticcomments;
30 std::set<std::wstring> resourceIDs;
31 std::wstring flag;
32 std::wstring msgstr;
33 std::wstring headerfile;
34 } RESOURCEENTRY, * LPRESOURCEENTRY;
36 /**
37 * \ingroup ResText
38 * Class to handle po-files. Inherits from an std::map which assigns
39 * string IDs to additional information, including the translated strings.
41 * Provides methods to load and save a po-file with the translation information
42 * we need for ResText.
44 class CPOFile : public std::map<std::wstring, RESOURCEENTRY>
46 public:
47 CPOFile();
48 ~CPOFile(void);
50 BOOL ParseFile(LPCTSTR szPath, BOOL bUpdateExisting, bool bAdjustEOLs);
51 BOOL SaveFile(LPCTSTR szPath, LPCTSTR lpszHeaderFile);
52 void SetQuiet(BOOL bQuiet = TRUE) {m_bQuiet = bQuiet;}
54 std::vector<std::tuple<std::wstring, std::wstring>> m_regexes;
56 private:
57 void AdjustEOLs(std::wstring& str);
58 BOOL m_bQuiet;
59 bool m_bAdjustEOLs;