OSDN Git Service

Add Crash Report
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / RevertDlg.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - 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 \r
21 #include "StandAloneDlg.h"\r
22 #include "GitStatusListCtrl.h"\r
23 \r
24 \r
25 /**\r
26  * \ingroup TortoiseProc\r
27  * Dialog showing a list of versioned files which don't have the status 'normal'.\r
28  * The dialog effectively shows a list of files which can be reverted.\r
29  */\r
30 class CRevertDlg : public CResizableStandAloneDialog\r
31 {\r
32         DECLARE_DYNAMIC(CRevertDlg)\r
33 \r
34 public:\r
35         CRevertDlg(CWnd* pParent = NULL);   // standard constructor\r
36         virtual ~CRevertDlg();\r
37 \r
38         enum { IDD = IDD_REVERT };\r
39 \r
40 protected:\r
41         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
42         virtual BOOL OnInitDialog();\r
43         virtual void OnOK();\r
44         virtual void OnCancel();\r
45         virtual BOOL PreTranslateMessage(MSG* pMsg);\r
46         afx_msg void OnBnClickedHelp();\r
47         afx_msg void OnBnClickedSelectall();\r
48         afx_msg LRESULT OnSVNStatusListCtrlNeedsRefresh(WPARAM, LPARAM);\r
49         afx_msg LRESULT OnFileDropped(WPARAM, LPARAM lParam);\r
50         afx_msg void OnTimer(UINT_PTR nIDEvent);\r
51 \r
52         DECLARE_MESSAGE_MAP()\r
53 \r
54         void StartDiff(int fileindex);\r
55 \r
56 private:\r
57         static UINT RevertThreadEntry(LPVOID pVoid);\r
58         UINT            RevertThread();\r
59 \r
60 public:\r
61         CTGitPathList           m_pathList;\r
62         CTGitPathList           m_selectedPathList;\r
63         BOOL                            m_bRecursive;\r
64 \r
65 private:\r
66         BOOL                            m_bSelectAll;\r
67         CString                         m_sWindowTitle;\r
68         volatile LONG           m_bThreadRunning;\r
69         CGitStatusListCtrl      m_RevertList;\r
70         CButton                         m_SelectAll;\r
71         bool                            m_bCancelled;\r
72 };\r
73 \r