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.
21 #include "SettingsPropPage.h"
27 // CSettingGitConfig dialog
29 class CSettingGitConfig
: public ISettingsPropPage
31 DECLARE_DYNAMIC(CSettingGitConfig
)
35 virtual ~CSettingGitConfig();
36 UINT
GetIconID() {return IDI_GITCONFIG
;}
38 enum { IDD
= IDD_SETTINGIT_CONFIG
};
41 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
45 bool Save(CString key
, CString value
, CONFIG_TYPE type
);
55 GIT_WARNNOSIGNEDOFFBY
=0x20,
59 afx_msg
void OnBnClickedCheckGlobal();
60 afx_msg
void OnEnChangeGitUsername();
61 afx_msg
void OnEnChangeGitUseremail();
62 afx_msg
void OnEnChangeGitUserSigningKey();
63 afx_msg
void OnBnClickedCheckAutocrlf();
64 afx_msg
void OnCbnSelchangeSafeCrLf();
65 afx_msg
void OnBnClickedCheckWarnNoSignedOffBy();
66 afx_msg
void OnBnClickedEditsystemgitconfig();
67 afx_msg
void OnBnClickedViewsystemgitconfig();
68 afx_msg
void OnBnClickedEditglobalgitconfig();
69 afx_msg
void OnBnClickedEditglobalxdggitconfig();
70 afx_msg
void OnBnClickedEditlocalgitconfig();
74 CString m_UserSigningKey
;
75 BOOL m_bWarnNoSignedOffBy
;
78 CComboBox m_cSafeCrLf
;