updated tiles for SwitchDlg
[TortoiseGit.git] / src / TortoiseProc / SwitchDlg.h
blobd7b997a6e1fb6b9913d6b049e85bd1a60336665d
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006,2008 - 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 "GitRev.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 CSwitchDlg : public CResizableStandAloneDialog
34 DECLARE_DYNAMIC(CSwitchDlg)
36 public:
37 CSwitchDlg(CWnd* pParent = NULL); // standard constructor
38 virtual ~CSwitchDlg();
40 /**
41 * Sets the label in front of the URL combobox.
42 * \remark this method must be called before the dialog is shown!
44 void SetUrlLabel(const CString& sLabel);
46 // Dialog Data
47 enum { IDD = IDD_SWITCH };
49 protected:
50 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
52 virtual BOOL OnInitDialog();
53 virtual void OnOK();
54 afx_msg void OnBnClickedBrowse();
55 afx_msg void OnBnClickedHelp();
56 afx_msg void OnEnChangeRevisionNum();
57 afx_msg void OnBnClickedLog();
58 afx_msg void OnSizing(UINT fwSide, LPRECT pRect);
59 afx_msg LRESULT OnRevSelected(WPARAM wParam, LPARAM lParam);
61 void SetRevision(const GitRev& rev);
63 DECLARE_MESSAGE_MAP()
65 CString m_rev;
66 CHistoryCombo m_URLCombo;
67 BOOL m_bFolder;
68 CString m_sTitle;
69 CString m_sLabel;
70 CLogDlg * m_pLogDlg;
71 int m_height;
73 public:
74 CString m_path;
75 CString m_URL;
76 GitRev Revision;