Add retry button when fetch failed
[TortoiseGit.git] / src / TortoiseProc / CloneDlg.h
blob10bbb61ae6e6ab3935c8fa304a85e3e46c8a89e5
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 "HorizontalResizableStandAloneDialog.h"
22 #include "HistoryCombo.h"
23 #include "MenuButton.h"
24 #include "registry.h"
25 #include "tooltip.h"
26 // CCloneDlg dialog
28 class CCloneDlg : public CHorizontalResizableStandAloneDialog
30 DECLARE_DYNCREATE(CCloneDlg)
32 public:
33 CCloneDlg(CWnd* pParent = NULL); // standard constructor
34 virtual ~CCloneDlg();
36 // Dialog Data
37 enum { IDD = IDD_CLONE};
39 protected:
40 // Overrides
41 virtual void OnOK();
42 virtual void OnCancel();
44 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
45 virtual BOOL OnInitDialog();
47 CString m_ModuleName;
48 CString m_OldURL;
50 DECLARE_MESSAGE_MAP()
52 afx_msg void OnBnClickedCloneBrowseUrl();
53 afx_msg void OnBnClickedCloneDirBrowse();
55 CHistoryCombo m_URLCombo;
56 CHistoryCombo m_PuttyKeyCombo;
58 public:
59 CString m_Directory;
60 CString m_strPuttyKeyFile;
61 CString m_URL;
62 CString m_strBranch;
63 CString m_strOrigin;
64 BOOL m_bAutoloadPuttyKeyFile;
65 BOOL m_bSVN;
66 BOOL m_bSVNTrunk;
67 BOOL m_bSVNTags;
68 BOOL m_bSVNBranch;
69 BOOL m_bSVNFrom;
70 BOOL m_bDepth;
71 BOOL m_bSVNUserName;
72 BOOL m_bBare;
73 BOOL m_bRecursive;
74 BOOL m_bBranch;
75 BOOL m_bOrigin;
76 BOOL m_bNoCheckout;
77 BOOL m_bExactPath;
79 int m_nDepth;
81 CString m_strSVNTrunk;
82 CString m_strSVNTags;
83 CString m_strSVNBranchs;
84 CString m_strUserName;
86 int m_nSVNFrom;
88 protected:
89 CMenuButton m_BrowseUrl;
90 CRegDWORD m_regBrowseUrl;
91 CRegString m_regCloneDir;
92 bool m_bSaving;
94 afx_msg void OnBnClickedPuttykeyfileBrowse();
95 afx_msg void OnBnClickedPuttykeyAutoload();
96 afx_msg void OnCbnEditchangeUrlcombo();
98 afx_msg void OnBnClickedCheckRecursive();
99 afx_msg void OnBnClickedCheckBare();
100 afx_msg void OnBnClickedCheckBranch();
101 afx_msg void OnBnClickedCheckOrigin();
102 afx_msg void OnBnClickedCheckSvn();
103 afx_msg void OnBnClickedCheckSvnTrunk();
104 afx_msg void OnBnClickedCheckSvnTag();
105 afx_msg void OnBnClickedCheckSvnBranch();
106 afx_msg void OnBnClickedCheckSvnFrom();
107 afx_msg void OnBnClickedCheckDepth();
109 CToolTips m_tooltips;
110 virtual BOOL PreTranslateMessage(MSG* pMsg);
111 afx_msg void OnBnClickedCheckUsername();