Fixed issue #1619: TortoiseGitMerge: Ribbon UI/toolbars can be toggled
[TortoiseGit.git] / src / TortoiseMerge / SetMainPage.h
blob19a8e5d699be01459a9328e485894a359a49348d
1 // TortoiseGitMerge - a Diff/Patch program
3 // Copyright (C) 2013 - TortoiseGit
4 // Copyright (C) 2006-2010 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 #include "resource.h"
23 #include "registry.h"
25 /**
26 * \ingroup TortoiseMerge
27 * Main settings page.
29 class CSetMainPage : public CPropertyPage
31 DECLARE_DYNAMIC(CSetMainPage)
33 public:
34 CSetMainPage();
35 virtual ~CSetMainPage();
37 /**
38 * Saves the changed settings to the registry.
39 * \remark If the dialog is closed/dismissed without calling
40 * this method first then all settings the user made must be
41 * discarded!
43 void SaveData();
45 BOOL m_bReloadNeeded;
46 enum { IDD = IDD_SETMAINPAGE };
48 protected:
49 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
50 virtual BOOL OnApply();
51 virtual BOOL OnInitDialog();
53 afx_msg void OnModified();
54 afx_msg void OnModifiedWithReload();
55 afx_msg void OnBnClickedWhitespace();
57 DECLARE_MESSAGE_MAP()
59 BOOL DialogEnableWindow(UINT nID, BOOL bEnable);
61 BOOL m_bBackup;
62 CRegDWORD m_regBackup;
63 BOOL m_bFirstDiffOnLoad;
64 CRegDWORD m_regFirstDiffOnLoad;
65 BOOL m_bFirstConflictOnLoad;
66 CRegDWORD m_regFirstConflictOnLoad;
67 int m_nTabSize;
68 CRegDWORD m_regTabSize;
69 BOOL m_bIgnoreEOL;
70 CRegDWORD m_regIgnoreEOL;
71 BOOL m_bOnePane;
72 CRegDWORD m_regOnePane;
73 BOOL m_bViewLinenumbers;
74 CRegDWORD m_regViewLinenumbers;
75 BOOL m_bCaseInsensitive;
76 CRegDWORD m_regCaseInsensitive;
77 BOOL m_bUTF8Default;
78 CRegDWORD m_regUTF8Default;
79 BOOL m_bAutoAdd;
80 CRegDWORD m_regAutoAdd;
81 int m_nMaxInline;
82 CRegDWORD m_regMaxInline;
83 BOOL m_bUseRibbons;
84 CRegDWORD m_regUseRibbons;
86 CRegDWORD m_regFontSize;
87 DWORD m_dwFontSize;
88 CRegString m_regFontName;
89 CString m_sFontName;
91 CMFCFontComboBox m_cFontNames;
92 CComboBox m_cFontSizes;