Move prune (all remotes) setting to git config page
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingGitConfig.h
blobfe160aa76ee84bef0a7d94838684fe7294e5285e
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2017, 2019-2020 - 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
21 #include "SettingsPropPage.h"
22 #include "registry.h"
23 #include "GitSettings.h"
25 // CSettingGitConfig dialog
27 class CSettingGitConfig : public ISettingsPropPage, public CGitSettings
29 DECLARE_DYNAMIC(CSettingGitConfig)
31 public:
32 CSettingGitConfig();
33 virtual ~CSettingGitConfig();
34 UINT GetIconID() override { return IDI_GITCONFIG; }
35 // Dialog Data
36 enum { IDD = IDD_SETTINGIT_CONFIG };
38 protected:
39 virtual void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
40 virtual BOOL OnInitDialog() override;
41 virtual BOOL OnApply() override;
43 virtual void LoadDataImpl(CAutoConfig& config) override;
44 virtual BOOL SafeDataImpl(CAutoConfig& config) override;
45 virtual void EnDisableControls() override;
46 virtual HWND GetDialogHwnd() const override { return GetSafeHwnd(); }
48 DECLARE_MESSAGE_MAP()
50 afx_msg void OnChange();
51 afx_msg void OnBnClickedEditsystemgitconfig();
52 afx_msg void OnBnClickedViewsystemgitconfig();
53 afx_msg void OnBnClickedEditglobalgitconfig();
54 afx_msg void OnBnClickedEditglobalxdggitconfig();
55 afx_msg void OnBnClickedEditlocalgitconfig();
56 afx_msg void OnBnClickedEdittgitconfig();
57 afx_msg void OnBnClickedVieweffectivegitconfig();
58 GITSETTINGS_RADIO_EVENT_HANDLE;
60 bool m_bNeedSave;
61 CString m_UserName;
62 BOOL m_bInheritUserName;
63 CString m_UserEmail;
64 BOOL m_bInheritEmail;
65 CString m_UserSigningKey;
66 BOOL m_bInheritSigningKey;
67 CComboBox m_cAutoCrLf;
68 BOOL m_bQuotePath;
69 BOOL m_bPrune;
70 CComboBox m_cSafeCrLf;