OSDN Git Service

Add swtich fetch branch tag command at ContextMenu.cpp
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / UrlDiffDlg.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2007 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 #include "StandAloneDlg.h"\r
21 #include "HistoryCombo.h"\r
22 #include "LogDlg.h"\r
23 #include "SVNRev.h"\r
24 \r
25 /**\r
26  * \ingroup TortoiseProc\r
27  * Shows a dialog to prompt the user for an URL of a branch and a revision\r
28  * number to switch the working copy to. Also has a checkbox to\r
29  * specify the current branch instead of a different branch url and\r
30  * one checkbox to specify the newest revision.\r
31  */\r
32 class CUrlDiffDlg : public CResizableStandAloneDialog\r
33 {\r
34         DECLARE_DYNAMIC(CUrlDiffDlg)\r
35 \r
36 public:\r
37         CUrlDiffDlg(CWnd* pParent = NULL);   // standard constructor\r
38         virtual ~CUrlDiffDlg();\r
39 \r
40 // Dialog Data\r
41         enum { IDD = IDD_URLDIFF };\r
42 \r
43 protected:\r
44         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
45 \r
46         virtual BOOL OnInitDialog();\r
47         virtual void OnOK();\r
48         afx_msg void OnBnClickedBrowse();\r
49         afx_msg void OnBnClickedHelp();\r
50         afx_msg void OnEnChangeRevisionNum();\r
51         afx_msg void OnBnClickedLog();\r
52         afx_msg LRESULT OnRevSelected(WPARAM wParam, LPARAM lParam);\r
53 \r
54         void            SetRevision(const SVNRev& rev);\r
55 \r
56         DECLARE_MESSAGE_MAP()\r
57 \r
58         CString                 m_rev;\r
59         CHistoryCombo   m_URLCombo;\r
60         BOOL                    m_bFolder;\r
61         CLogDlg *               m_pLogDlg;\r
62 \r
63 public:\r
64         CString                 m_path;\r
65         CString                 m_URL;\r
66         SVNRev                  Revision;\r
67 };\r