SyncDlg: Disallow in/out changes to include local context menu
[TortoiseGit.git] / src / TortoiseProc / Settings / SetDialogs3.h
blob941d59db4df466dee9cf61cb2502e440ce6fcd94
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013-2016 - 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 "GitSettings.h"
23 /**
24 * \ingroup TortoiseProc
25 * Settings page responsible for dialog settings.
27 class CSetDialogs3 : public ISettingsPropPage, public CGitSettings
29 DECLARE_DYNAMIC(CSetDialogs3)
31 public:
32 CSetDialogs3();
33 virtual ~CSetDialogs3();
35 UINT GetIconID() {return IDI_DIALOGS;}
37 // Dialog Data
38 enum { IDD = IDD_SETTINGSDIALOGS3 };
40 protected:
41 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
43 DECLARE_MESSAGE_MAP()
45 virtual BOOL OnInitDialog();
46 virtual BOOL OnApply();
48 virtual void LoadDataImpl(CAutoConfig& config);
49 virtual BOOL SafeDataImpl(CAutoConfig& config);
50 virtual void EnDisableControls();
51 HWND GetDialogHwnd() const { return GetSafeHwnd(); }
53 afx_msg void OnChange();
54 afx_msg void OnBnClickedIconfileBrowse();
55 GITSETTINGS_RADIO_EVENT_HANDLE;
57 static BOOL CALLBACK EnumLocalesProc(LPTSTR lpLocaleString);
58 void AddLangToCombo(DWORD langID);
60 private:
61 bool m_bNeedSave;
62 CComboBox m_langCombo;
63 CString m_LogMinSize;
64 BOOL m_bInheritLogMinSize;
65 CString m_Border;
66 BOOL m_bInheritBorder;
67 CComboBox m_cWarnNoSignedOffBy;
68 CString m_iconFile;
69 BOOL m_bInheritIconFile;