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 "HorizontalResizableStandAloneDialog.h"
22 #include "HistoryCombo.h"
23 #include "MenuButton.h"
28 class CCloneDlg
: public CHorizontalResizableStandAloneDialog
30 DECLARE_DYNCREATE(CCloneDlg
)
33 CCloneDlg(CWnd
* pParent
= NULL
); // standard constructor
37 enum { IDD
= IDD_CLONE
};
42 virtual void OnCancel();
44 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
45 virtual BOOL
OnInitDialog();
52 afx_msg
void OnBnClickedCloneBrowseUrl();
53 afx_msg
void OnBnClickedCloneDirBrowse();
55 CHistoryCombo m_URLCombo
;
56 CHistoryCombo m_PuttyKeyCombo
;
60 CString m_strPuttyKeyFile
;
63 BOOL m_bAutoloadPuttyKeyFile
;
78 CString m_strSVNTrunk
;
80 CString m_strSVNBranchs
;
81 CString m_strUserName
;
86 CMenuButton m_BrowseUrl
;
87 CRegDWORD m_regBrowseUrl
;
89 afx_msg
void OnBnClickedPuttykeyfileBrowse();
90 afx_msg
void OnBnClickedPuttykeyAutoload();
91 afx_msg
void OnCbnEditchangeUrlcombo();
93 afx_msg
void OnBnClickedCheckRecursive();
94 afx_msg
void OnBnClickedCheckBare();
95 afx_msg
void OnBnClickedCheckBranch();
96 afx_msg
void OnBnClickedCheckSvn();
97 afx_msg
void OnBnClickedCheckSvnTrunk();
98 afx_msg
void OnBnClickedCheckSvnTag();
99 afx_msg
void OnBnClickedCheckSvnBranch();
100 afx_msg
void OnBnClickedCheckSvnFrom();
101 afx_msg
void OnBnClickedCheckDepth();
103 CToolTips m_tooltips
;
104 virtual BOOL
PreTranslateMessage(MSG
* pMsg
);
105 afx_msg
void OnBnClickedCheckUsername();