Fixed issue #4126: Capitalize the first letter in the Push dialog
[TortoiseGit.git] / src / TortoiseProc / CloneDlg.h
blob32ecacd88942a6ab670db842a5cc925c815b1a1d
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013, 2015-2017, 2021-2023 - 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 // CCloneDlg dialog
27 class CCloneDlg : public CHorizontalResizableStandAloneDialog
29 DECLARE_DYNCREATE(CCloneDlg)
31 public:
32 CCloneDlg(CWnd* pParent = nullptr); // standard constructor
33 virtual ~CCloneDlg();
35 // Dialog Data
36 enum { IDD = IDD_CLONE};
38 protected:
39 // Overrides
40 void OnOK() override;
41 void OnCancel() override;
43 void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
44 BOOL OnInitDialog() override;
46 CString m_ModuleName;
47 CString m_OldURL;
49 DECLARE_MESSAGE_MAP()
51 afx_msg void OnBnClickedCloneBrowseUrl();
52 afx_msg void OnBnClickedCloneDirBrowse();
54 CHistoryCombo m_URLCombo;
55 CHistoryCombo m_PuttyKeyCombo;
57 public:
58 CString m_Directory;
59 CString m_strPuttyKeyFile;
60 CString m_URL;
61 CString m_strBranch;
62 CString m_strOrigin;
63 BOOL m_bAutoloadPuttyKeyFile;
64 BOOL m_bSVN;
65 BOOL m_bSVNTrunk;
66 BOOL m_bSVNTags;
67 BOOL m_bSVNBranch;
68 BOOL m_bSVNFrom;
69 BOOL m_bDepth;
70 BOOL m_bSVNUserName;
71 BOOL m_bBare;
72 BOOL m_bRecursive;
73 BOOL m_bBranch;
74 BOOL m_bOrigin;
75 BOOL m_bNoCheckout;
76 BOOL m_bExactPath;
78 int m_nDepth;
80 CString m_strSVNTrunk;
81 CString m_strSVNTags;
82 CString m_strSVNBranchs;
83 CString m_strUserName;
85 int m_nSVNFrom;
87 protected:
88 CMenuButton m_BrowseUrl;
89 CRegDWORD m_regBrowseUrl;
90 CRegDWORD m_regUseSSHKey;
91 CRegDWORD m_regCloneRecursive;
92 CRegString m_regCloneDir;
93 bool m_bSaving;
95 afx_msg void OnBnClickedPuttykeyfileBrowse();
96 afx_msg void OnBnClickedPuttykeyAutoload();
97 afx_msg void OnCbnEditchangeUrlcombo();
99 afx_msg void OnBnClickedCheckRecursive();
100 afx_msg void OnBnClickedCheckBare();
101 afx_msg void OnBnClickedCheckBranch();
102 afx_msg void OnBnClickedCheckOrigin();
103 afx_msg void OnBnClickedCheckSvn();
104 afx_msg void OnBnClickedCheckSvnTrunk();
105 afx_msg void OnBnClickedCheckSvnTag();
106 afx_msg void OnBnClickedCheckSvnBranch();
107 afx_msg void OnBnClickedCheckSvnFrom();
108 afx_msg void OnBnClickedCheckDepth();
109 afx_msg void OnBnClickedCheckUsername();