OSDN Git Service

Use Shared Choose Version code
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / FileDiffDlg.h
1 // TortoiseGit - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseGit\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 "afxcmn.h"\r
21 #include "StandAloneDlg.h"\r
22 #include "Git.h"\r
23 #include "TGitPath.h"\r
24 //#include "Blame.h"\r
25 #include "Git.h"\r
26 #include "HintListCtrl.h"\r
27 #include "Colors.h"\r
28 #include "XPImageButton.h"\r
29 #include "FilterEdit.h"\r
30 #include "Tooltip.h"\r
31 \r
32 \r
33 #define IDT_FILTER              101\r
34 \r
35 /**\r
36  * \ingroup TortoiseProc\r
37  * Dialog which fetches and shows the difference between two urls in the\r
38  * repository. It shows a list of files/folders which were changed in those\r
39  * two revisions.\r
40  */\r
41 class CFileDiffDlg : public CResizableStandAloneDialog\r
42 {\r
43         DECLARE_DYNAMIC(CFileDiffDlg)\r
44 public:\r
45 //      class FileDiff\r
46 //      {\r
47 //      public:\r
48 //              CTGitPath path;\r
49 //              svn_client_diff_summarize_kind_t kind; \r
50                 bool propchanged;\r
51 //              svn_node_kind_t node;\r
52 //      };\r
53 \r
54 public:\r
55         CFileDiffDlg(CWnd* pParent = NULL);\r
56         virtual ~CFileDiffDlg();\r
57 \r
58 //      void SetDiff(const CTGitPath& path1, GitRev rev1, const CTGitPath& path2, GitRev rev2, svn_depth_t depth, bool ignoreancestry);\r
59 //      void SetDiff(const CTGitPath& path, GitRev peg, GitRev rev1, GitRev rev2, svn_depth_t depth, bool ignoreancestry);\r
60 \r
61         void SetDiff(CTGitPath * path, GitRev rev1,GitRev rev2);\r
62 \r
63         void    DoBlame(bool blame = true) {m_bBlame = blame;}\r
64 \r
65         enum { IDD = IDD_DIFFFILES };\r
66 \r
67 protected:\r
68         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
69         virtual void OnCancel();\r
70         virtual BOOL OnInitDialog();\r
71         virtual BOOL PreTranslateMessage(MSG* pMsg);\r
72         afx_msg void OnNMDblclkFilelist(NMHDR *pNMHDR, LRESULT *pResult);\r
73         afx_msg void OnLvnGetInfoTipFilelist(NMHDR *pNMHDR, LRESULT *pResult);\r
74         afx_msg void OnNMCustomdrawFilelist(NMHDR *pNMHDR, LRESULT *pResult);\r
75         afx_msg void OnContextMenu(CWnd* /*pWnd*/, CPoint /*point*/);\r
76         afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);\r
77         afx_msg void OnEnSetfocusSecondurl();\r
78         afx_msg void OnEnSetfocusFirsturl();\r
79         afx_msg void OnBnClickedSwitchleftright();\r
80         afx_msg void OnHdnItemclickFilelist(NMHDR *pNMHDR, LRESULT *pResult);\r
81         afx_msg void OnBnClickedRev1btn();\r
82         afx_msg void OnBnClickedRev2btn();\r
83         afx_msg LRESULT OnClickedCancelFilter(WPARAM wParam, LPARAM lParam);\r
84         afx_msg void OnEnChangeFilter();\r
85         afx_msg void OnTimer(UINT_PTR nIDEvent);\r
86 \r
87         DECLARE_MESSAGE_MAP()\r
88 \r
89 //      virtual svn_error_t* DiffSummarizeCallback(const CTGitPath& path, \r
90 //                                                                                      svn_client_diff_summarize_kind_t kind, \r
91 //                                                                                      bool propchanged, \r
92 //                                                                                      svn_node_kind_t node);\r
93 \r
94         int                                     AddEntry(const CTGitPath * fd);\r
95         void                            DoDiff(int selIndex, bool blame);\r
96         void                            DiffProps(int selIndex);\r
97         void                            SetURLLabels();\r
98         void                            Filter(CString sFilterText);\r
99         void                            CopySelectionToClipboard();\r
100 private:\r
101         static UINT                     DiffThreadEntry(LPVOID pVoid);\r
102         UINT                            DiffThread();\r
103         static UINT                     ExportThreadEntry(LPVOID pVoid);\r
104         UINT                            ExportThread();\r
105 \r
106         virtual BOOL            Cancel() {return m_bCancelled;}\r
107 \r
108         CToolTips                       m_tooltips;\r
109 \r
110         CButton                         m_cRev1Btn;\r
111         CButton                         m_cRev2Btn;\r
112         CFilterEdit                     m_cFilter;\r
113 \r
114         CXPImageButton          m_SwitchButton;\r
115         HICON                           m_hSwitchIcon;\r
116         CColors                         m_colors;\r
117         CHintListCtrl           m_cFileList;\r
118         bool                            m_bBlame;\r
119 //      CBlame                          m_blamer;\r
120         CTGitPathList           m_arFileList;\r
121         std::vector<CTGitPath*> m_arFilteredList;\r
122         CArray<CTGitPath*, CTGitPath*> m_arSelectedFileList;\r
123 \r
124         CString                         m_strExportDir;\r
125         CProgressDlg *          m_pProgDlg;\r
126 \r
127         int                                     m_nIconFolder;\r
128 \r
129         CTGitPath                       m_path1;\r
130         GitRev                          m_peg;\r
131         GitRev                          m_rev1;\r
132         CTGitPath                       m_path2;\r
133         GitRev                          m_rev2;\r
134 \r
135         bool                            m_bIgnoreancestry;\r
136         bool                            m_bDoPegDiff;\r
137         volatile LONG           m_bThreadRunning;\r
138 \r
139         bool                            m_bCancelled;\r
140 \r
141         void                            Sort();\r
142 //      static bool                     SortCompare(const FileDiff& Data1, const FileDiff& Data2);\r
143 \r
144         static BOOL                     m_bAscending;\r
145         static int                      m_nSortedColumn;\r
146 };\r