TortoiseProc: added "edit systemwide gitconfig" button
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingGitConfig.h
blobe013b53052715439745d1996df138d0fcf4d54e9
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012 - 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"
26 // CSettingGitConfig dialog
28 class CSettingGitConfig : public ISettingsPropPage
30 DECLARE_DYNAMIC(CSettingGitConfig)
32 public:
33 CSettingGitConfig();
34 virtual ~CSettingGitConfig();
35 UINT GetIconID() {return IDI_GITCONFIG;}
36 // Dialog Data
37 enum { IDD = IDD_SETTINGIT_CONFIG };
39 protected:
40 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
41 BOOL OnInitDialog();
42 BOOL OnApply();
44 int m_ChangeMask;
45 enum
47 GIT_NAME=0x1,
48 GIT_EMAIL=0x2,
49 GIT_CRLF=0x4,
50 GIT_SAFECRLF=0x8,
51 GIT_SIGNINGKEY=0x10,
52 GIT_WARNNOSIGNEDOFFBY=0x20,
54 DECLARE_MESSAGE_MAP()
56 afx_msg void OnBnClickedCheckGlobal();
57 afx_msg void OnEnChangeGitUsername();
58 afx_msg void OnEnChangeGitUseremail();
59 afx_msg void OnEnChangeGitUserSigningKey();
60 afx_msg void OnBnClickedCheckAutocrlf();
61 afx_msg void OnCbnSelchangeSafeCrLf();
62 afx_msg void OnBnClickedCheckWarnNoSignedOffBy();
63 afx_msg void OnBnClickedEditsystemgitconfig();
64 afx_msg void OnBnClickedEditglobalgitconfig();
65 afx_msg void OnBnClickedEditlocalgitconfig();
67 CString m_UserName;
68 CString m_UserEmail;
69 CString m_UserSigningKey;
70 BOOL m_bWarnNoSignedOffBy;
71 BOOL m_bGlobal;
72 BOOL m_bAutoCrlf;
73 CComboBox m_cSafeCrLf;