Move some logic for getting config values to CAutoConfig
[TortoiseGit.git] / src / TortoiseProc / Settings / SetDialogs3.h
blob4fb61101d27449e60802c26933455c9a8f61b7d8
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013 - TortoiseGit
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
20 #include "SettingsPropPage.h"
21 #include "Tooltip.h"
22 #include "GitSettings.h"
24 /**
25 * \ingroup TortoiseProc
26 * Settings page responsible for dialog settings.
28 class CSetDialogs3 : public ISettingsPropPage, public CGitSettings
30 DECLARE_DYNAMIC(CSetDialogs3)
32 public:
33 CSetDialogs3();
34 virtual ~CSetDialogs3();
36 UINT GetIconID() {return IDI_DIALOGS;}
38 // Dialog Data
39 enum { IDD = IDD_SETTINGSDIALOGS3 };
41 protected:
42 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
44 DECLARE_MESSAGE_MAP()
46 virtual BOOL OnInitDialog();
47 virtual BOOL PreTranslateMessage(MSG* pMsg);
48 virtual BOOL OnApply();
50 virtual void LoadDataImpl(CAutoConfig& config);
51 virtual BOOL SafeDataImpl(CAutoConfig& config);
52 virtual void EnDisableControls();
54 afx_msg void OnChange();
55 afx_msg void OnBnClickedIconfileBrowse();
56 GITSETTINGS_RADIO_EVENT_HANDLE;
58 static BOOL CALLBACK EnumLocalesProc(LPTSTR lpLocaleString);
60 private:
61 bool m_bNeedSave;
62 CToolTips m_tooltips;
63 static CComboBox m_langCombo;
64 CString m_LogMinSize;
65 BOOL m_bInheritLogMinSize;
66 CString m_Border;
67 BOOL m_bInheritBorder;
68 CComboBox m_cWarnNoSignedOffBy;
69 CString m_iconFile;
70 BOOL m_bInheritIconFile;