Add explanatory tooltips for hierarchy checkboxes
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingGitConfig.h
blob1ed7610c9bd0c60c9b295c4097dc8f7a8add2583
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-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
21 #include "SettingsPropPage.h"
22 #include "Tooltip.h"
23 #include "registry.h"
24 #include "afxwin.h"
25 #include "Git.h"
26 #include "GitSettings.h"
28 // CSettingGitConfig dialog
30 class CSettingGitConfig : public ISettingsPropPage, public CGitSettings
32 DECLARE_DYNAMIC(CSettingGitConfig)
34 public:
35 CSettingGitConfig();
36 virtual ~CSettingGitConfig();
37 UINT GetIconID() {return IDI_GITCONFIG;}
38 // Dialog Data
39 enum { IDD = IDD_SETTINGIT_CONFIG };
41 protected:
42 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
43 BOOL OnInitDialog();
44 BOOL OnApply();
45 virtual BOOL PreTranslateMessage(MSG* pMsg);
47 virtual void LoadDataImpl(git_config * config);
48 virtual BOOL SafeDataImpl(git_config * config);
50 DECLARE_MESSAGE_MAP()
52 afx_msg void OnChange();
53 afx_msg void OnBnClickedEditsystemgitconfig();
54 afx_msg void OnBnClickedViewsystemgitconfig();
55 afx_msg void OnBnClickedEditglobalgitconfig();
56 afx_msg void OnBnClickedEditglobalxdggitconfig();
57 afx_msg void OnBnClickedEditlocalgitconfig();
58 afx_msg void OnBnClickedEdittgitconfig();
59 GITSETTINGS_RADIO_EVENT_HANDLE;
61 bool m_bNeedSave;
62 CToolTips m_tooltips;
63 CString m_UserName;
64 CString m_UserEmail;
65 CString m_UserSigningKey;
66 BOOL m_bAutoCrlf;
67 CComboBox m_cSafeCrLf;