Fixed issue #406: Putty key can't save when clone.
[TortoiseGit.git] / src / TortoiseProc / UrlDiffDlg.h
blob70506221d95eca74badacf64aa120fc9a6e155af
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007 - TortoiseSVN
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
20 #include "StandAloneDlg.h"
21 #include "HistoryCombo.h"
22 #include "LogDlg.h"
23 #include "SVNRev.h"
25 /**
26 * \ingroup TortoiseProc
27 * Shows a dialog to prompt the user for an URL of a branch and a revision
28 * number to switch the working copy to. Also has a checkbox to
29 * specify the current branch instead of a different branch url and
30 * one checkbox to specify the newest revision.
32 class CUrlDiffDlg : public CResizableStandAloneDialog
34 DECLARE_DYNAMIC(CUrlDiffDlg)
36 public:
37 CUrlDiffDlg(CWnd* pParent = NULL); // standard constructor
38 virtual ~CUrlDiffDlg();
40 // Dialog Data
41 enum { IDD = IDD_URLDIFF };
43 protected:
44 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
46 virtual BOOL OnInitDialog();
47 virtual void OnOK();
48 afx_msg void OnBnClickedBrowse();
49 afx_msg void OnBnClickedHelp();
50 afx_msg void OnEnChangeRevisionNum();
51 afx_msg void OnBnClickedLog();
52 afx_msg LRESULT OnRevSelected(WPARAM wParam, LPARAM lParam);
54 void SetRevision(const SVNRev& rev);
56 DECLARE_MESSAGE_MAP()
58 CString m_rev;
59 CHistoryCombo m_URLCombo;
60 BOOL m_bFolder;
61 CLogDlg * m_pLogDlg;
63 public:
64 CString m_path;
65 CString m_URL;
66 SVNRev Revision;