OSDN Git Service

Change to disable some menu items that should not be executed for directories, when...
[winmerge-jp/winmerge-jp.git] / Src / DirView.h
1 /////////////////////////////////////////////////////////////////////////////
2 //    WinMerge:  an interactive diff/merge utility
3 //    Copyright (C) 1997  Dean P. Grimm
4 //    SPDX-License-Identifier: GPL-2.0-or-later
5 /////////////////////////////////////////////////////////////////////////////
6 /**
7  *  @file DirView.h
8  *
9  *  @brief Declaration of class CDirView
10  */
11 #pragma once
12
13 /////////////////////////////////////////////////////////////////////////////
14 // CDirView view
15 #include <afxcview.h>
16 #include <memory>
17 #include <optional>
18 #include "OptionsDirColors.h"
19 #include "SortHeaderCtrl.h"
20 #include "UnicodeString.h"
21 #include "DirItemIterator.h"
22 #include "DirActions.h"
23
24 class FileActionScript;
25
26 typedef enum { eMain, eContext } eMenuType;
27
28 class CDirDoc;
29 class CDirFrame;
30
31 class PackingInfo;
32 class PathContext;
33 class DirCompProgressBar;
34 class CompareStats;
35 struct DirColInfo;
36 class CLoadSaveCodepageDlg;
37 class CShellContextMenu;
38 class CDiffContext;
39 class DirViewColItems;
40 class DirItemEnumerator;
41 struct IListCtrl;
42
43 /**
44  * @brief Position value for special items (..) in directory compare view.
45  */
46 const uintptr_t SPECIAL_ITEM_POS = (uintptr_t)(reinterpret_cast<DIFFITEM *>( - 1L));
47
48 /** Default column width in directory compare */
49 const UINT DefColumnWidth = 150;
50
51 /**
52  * @brief Directory compare results view.
53  *
54  * Directory compare view is list-view based, so it shows one result (for
55  * folder or file, commonly called as 'item') in one line. User can select
56  * visible columns, re-order columns, sort by column etc.
57  *
58  * Actual data is stored in CDiffContext in CDirDoc. Dircompare items and
59  * CDiffContext items are linked by storing POSITION of CDiffContext item
60  * as CDirView listitem key.
61  */
62 class CDirView : public CListView
63 {
64         friend struct FileCmpReport;
65         friend DirItemEnumerator;
66 protected:
67         CDirView();           // protected constructor used by dynamic creation
68         DECLARE_DYNCREATE(CDirView)
69
70 // Attributes
71 public:
72         CDirDoc* GetDocument(); // non-debug version is inline
73         // const version, for const methods to be able to call
74         const CDirDoc * GetDocument() const { return const_cast<CDirView *>(this)->GetDocument(); }
75         const CDiffContext& GetDiffContext() const;
76         CDiffContext& GetDiffContext();
77
78 // Operations
79 public:
80         CDirFrame * GetParentFrame();
81
82         void StartCompare(CompareStats *pCompareStats);
83         void Redisplay();
84         void RedisplayChildren(DIFFITEM *diffpos, int level, UINT &index, int &alldiffs);
85         void UpdateResources();
86         void LoadColumnHeaderItems();
87         DIFFITEM *GetItemKey(int idx) const;
88         int GetItemIndex(DIFFITEM *key);
89         // for populating list
90         void DeleteItem(int sel, bool removeDIFFITEM = false);
91         void DeleteAllDisplayItems();
92         void SetFont(const LOGFONT & lf);
93
94         void SortColumnsAppropriately();
95
96         UINT GetSelectedCount() const;
97         int GetFirstSelectedInd();
98         void AddParentFolderItem(bool bEnable);
99         void RefreshOptions();
100
101         bool HasNextDiff();
102         bool HasPrevDiff();
103         void MoveToNextDiff();
104         void MoveToPrevDiff();
105         void OpenNextDiff();
106         void OpenPrevDiff();
107         void SetActivePane(int pane);
108
109 // Implementation types
110 private:
111
112 // Implementation in DirActions.cpp
113 private:
114         void GetItemFileNames(int sel, String& strLeft, String& strRight) const;
115         void GetItemFileNames(int sel, PathContext * paths) const;
116         void FormatEncodingDialogDisplays(CLoadSaveCodepageDlg * dlg);
117         DirActions MakeDirActions(DirActions::method_type func) const;
118         DirActions MakeDirActions(DirActions::method_type2 func) const;
119         Counts Count(DirActions::method_type2 func) const;
120         void DoDirAction(DirActions::method_type func, const String& status_message);
121         void DoDirActionTo(SIDE_TYPE stype, DirActions::method_type func, const String& status_message);
122         void DoOpen(SIDE_TYPE stype);
123         void DoOpenWith(SIDE_TYPE stype);
124         void DoOpenWithEditor(SIDE_TYPE stype);
125         void DoOpenParentFolder(SIDE_TYPE stype);
126         void DoUpdateOpen(SELECTIONTYPE selectionType, CCmdUI* pCmdUI, bool openableForDir = true);
127         void ConfirmAndPerformActions(FileActionScript & actions);
128         void PerformActionList(FileActionScript & actions);
129         void UpdateAfterFileScript(FileActionScript & actionList);
130         void DoFileEncodingDialog();
131
132 // End DirActions.cpp
133         void ReflectGetdispinfo(NMLVDISPINFO *);
134
135 // Implementation in DirViewColHandler.cpp
136 public:
137         void UpdateColumnNames();
138         void SetColAlignments();
139         // class CompareState is used to pass parameters to the PFNLVCOMPARE callback function.
140         class CompareState
141         {
142         private:
143                 const DirViewColItems *const pColItems;
144                 const CDiffContext *const pCtxt;
145                 const int sortCol;
146                 const bool bSortAscending;
147                 const bool bTreeMode;
148         public:
149                 CompareState(const CDiffContext *pCtxt, const DirViewColItems *pColItems, int sortCol, bool bSortAscending, bool bTreeMode);
150                 static int CALLBACK CompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort);
151         } friend;
152         void UpdateDiffItemStatus(UINT nIdx);
153 private:
154         void InitiateSort();
155         void NameColumn(const DirColInfo *col, int subitem);
156         int AddNewItem(int i, DIFFITEM *diffpos, int iImage, int iIndent);
157 // End DirViewCols.cpp
158
159 private:
160
161 // Overrides
162         // ClassWizard generated virtual function overrides
163         //{{AFX_VIRTUAL(CDirView)
164 public:
165         virtual void OnInitialUpdate();
166         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
167 protected:
168         virtual BOOL PreTranslateMessage(MSG* pMsg);
169         virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
170         virtual BOOL OnChildNotify(UINT, WPARAM, LPARAM, LRESULT*);
171         virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
172         //}}AFX_VIRTUAL
173
174 // Implementation
175 protected:
176         virtual ~CDirView();
177         int GetFocusedItem();
178         int GetFirstDifferentItem();
179         int GetLastDifferentItem();
180         int AddSpecialItems();
181         std::vector<String>     GetCurrentColRegKeys();
182         void OpenSpecialItems(DIFFITEM *pos1, DIFFITEM *pos2, DIFFITEM *pos3);
183
184 // Implementation data
185 protected:
186         CSortHeaderCtrl m_ctlSortHeader;
187         CImageList m_imageList;
188         CImageList m_imageState;
189         CListCtrl* m_pList;
190         std::unique_ptr<IListCtrl> m_pIList;
191         int m_nEscCloses; /**< Cached value for option for ESC closing window */
192         bool m_bExpandSubdirs;
193         CFont m_font; /**< User-selected font */
194         UINT m_nHiddenItems; /**< Count of items we have hidden */
195         bool m_bTreeMode; /**< `true` if tree mode is on*/
196         DirViewFilterSettings m_dirfilter;
197         std::unique_ptr<DirCompProgressBar> m_pCmpProgressBar;
198         clock_t m_compareStart; /**< Starting process time of the compare */
199         bool m_bUserCancelEdit; /**< `true` if the user cancels rename */
200         String m_lastCopyFolder; /**< Last Copy To -target folder. */
201
202         std::optional<int> m_firstDiffItem;
203         std::optional<int> m_lastDiffItem;
204         DIRCOLORSETTINGS m_cachedColors; /**< Cached color settings */
205         bool m_bUseColors;
206
207         std::unique_ptr<CShellContextMenu> m_pShellContextMenuLeft; /**< Shell context menu for group of left files */
208         std::unique_ptr<CShellContextMenu> m_pShellContextMenuMiddle; /**< Shell context menu for group of middle files */
209         std::unique_ptr<CShellContextMenu> m_pShellContextMenuRight; /**< Shell context menu for group of right files */
210         HMENU m_hCurrentMenu; /**< Current shell context menu (either left or right) */
211         std::unique_ptr<DirViewTreeState> m_pSavedTreeState;
212         std::unique_ptr<DirViewColItems> m_pColItems;
213         int m_nActivePane;
214
215         // Generated message map functions
216         afx_msg void OnColumnClick(NMHDR* pNMHDR, LRESULT* pResult);
217         afx_msg void OnContextMenu(CWnd*, CPoint point);
218         //{{AFX_MSG(CDirView)
219         afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
220         afx_msg void OnDirCopy(UINT id);
221         template<SIDE_TYPE srctype, SIDE_TYPE dsttype>
222         afx_msg void OnCtxtDirCopy();
223         afx_msg void OnUpdateDirCopy(CCmdUI* pCmdUI);
224         template<SIDE_TYPE srctype, SIDE_TYPE dsttype>
225         afx_msg void OnUpdateCtxtDirCopy(CCmdUI* pCmdUI);
226         template<SIDE_TYPE stype>
227         afx_msg void OnCtxtDirDel();
228         template<SIDE_TYPE stype>
229         afx_msg void OnUpdateCtxtDirDel(CCmdUI* pCmdUI);
230         afx_msg void OnCtxtDirDelBoth();
231         afx_msg void OnUpdateCtxtDirDelBoth(CCmdUI* pCmdUI);
232         template<SIDE_TYPE stype>
233         afx_msg void OnCtxtDirOpen();
234         template<SIDE_TYPE stype>
235         afx_msg void OnUpdateCtxtDirOpen(CCmdUI* pCmdUI);
236         template<SIDE_TYPE stype>
237         afx_msg void OnCtxtDirOpenWith();
238         template<SIDE_TYPE stype>
239         afx_msg void OnUpdateCtxtDirOpenWith(CCmdUI* pCmdUI);
240         template<SIDE_TYPE stype>
241         afx_msg void OnCtxtDirOpenWithEditor();
242         template<SIDE_TYPE stype>
243         afx_msg void OnUpdateCtxtDirOpenWithEditor(CCmdUI* pCmdUI);
244         template<SIDE_TYPE stype>
245         afx_msg void OnCtxtDirOpenParentFolder();
246         template<SIDE_TYPE stype>
247         afx_msg void OnUpdateCtxtDirOpenParentFolder(CCmdUI* pCmdUI);
248         template<SIDE_TYPE stype>
249         afx_msg void OnCtxtDirCopyTo();
250         template<SIDE_TYPE stype>
251         afx_msg void OnUpdateCtxtDirCopyTo(CCmdUI* pCmdUI);
252         afx_msg void OnUpdateCtxtDirCopyBothTo(CCmdUI* pCmdUI);
253         afx_msg void OnUpdateCtxtDirCopyBothDiffsOnlyTo(CCmdUI* pCmdUI);
254         afx_msg void OnDestroy();
255         afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
256         afx_msg void OnClick(NMHDR* pNMHDR, LRESULT* pResult);
257         afx_msg void OnFirstdiff();
258         afx_msg void OnUpdateFirstdiff(CCmdUI* pCmdUI);
259         afx_msg void OnLastdiff();
260         afx_msg void OnUpdateLastdiff(CCmdUI* pCmdUI);
261         afx_msg void OnNextdiff();
262         afx_msg void OnUpdateNextdiff(CCmdUI* pCmdUI);
263         afx_msg void OnPrevdiff();
264         afx_msg void OnUpdatePrevdiff(CCmdUI* pCmdUI);
265         afx_msg void OnCurdiff();
266         afx_msg void OnUpdateCurdiff(CCmdUI* pCmdUI);
267         afx_msg void OnUpdateSave(CCmdUI* pCmdUI);
268         afx_msg LRESULT OnUpdateUIMessage(WPARAM wParam, LPARAM lParam);
269         afx_msg void OnRefresh();
270         afx_msg void OnUpdateRefresh(CCmdUI* pCmdUI);
271         afx_msg void OnTimer(UINT_PTR nIDEvent);
272         afx_msg void OnEditColumns();
273         template<SIDE_TYPE stype>
274         afx_msg void OnReadOnly();
275         template<SIDE_TYPE stype>
276         afx_msg void OnUpdateReadOnly(CCmdUI* pCmdUI);
277         afx_msg void OnUpdateStatusLeftRO(CCmdUI* pCmdUI);
278         afx_msg void OnUpdateStatusMiddleRO(CCmdUI* pCmdUI);
279         afx_msg void OnUpdateStatusRightRO(CCmdUI* pCmdUI);
280         afx_msg void OnCustomizeColumns();
281         afx_msg void OnCtxtOpenWithUnpacker();
282         afx_msg void OnUpdateCtxtOpenWithUnpacker(CCmdUI* pCmdUI);
283         afx_msg void OnToolsGenerateReport();
284         afx_msg LRESULT OnGenerateFileCmpReport(WPARAM wParam, LPARAM lParam);
285         afx_msg void OnToolsGeneratePatch();
286         template<int flag>
287         afx_msg void OnCtxtDirZip();
288         template<SIDE_TYPE stype>
289         afx_msg void OnCtxtDirShellContextMenu();
290         afx_msg void OnSelectAll();
291         afx_msg void OnUpdateSelectAll(CCmdUI* pCmdUI);
292         afx_msg void OnPluginPredifferMode(UINT nID);
293         afx_msg void OnUpdatePluginPredifferMode(CCmdUI* pCmdUI);
294         template<SIDE_TYPE side>
295         afx_msg void OnCopyPathnames();
296         afx_msg void OnCopyBothPathnames();
297         afx_msg void OnCopyFilenames();
298         afx_msg void OnUpdateCopyFilenames(CCmdUI* pCmdUI);
299         template<SIDE_TYPE side>
300         afx_msg void OnCopyToClipboard();
301         afx_msg void OnCopyBothToClipboard();
302         afx_msg void OnItemRename();
303         afx_msg void OnUpdateItemRename(CCmdUI* pCmdUI);
304         afx_msg void OnHideFilenames();
305         afx_msg void OnSize(UINT nType, int cx, int cy);
306         template<SIDE_TYPE stype>
307         afx_msg void OnCtxtDirMoveTo();
308         template<SIDE_TYPE stype>
309         afx_msg void OnUpdateCtxtDirMoveTo(CCmdUI* pCmdUI);
310         afx_msg void OnUpdateHideFilenames(CCmdUI* pCmdUI);
311         afx_msg void OnDelete();
312         afx_msg void OnUpdateDelete(CCmdUI* pCmdUI);
313         afx_msg void OnMarkedRescan();
314         afx_msg void OnUpdateStatusNum(CCmdUI* pCmdUI);
315         afx_msg void OnViewShowHiddenItems();
316         afx_msg void OnUpdateViewShowHiddenItems(CCmdUI* pCmdUI);
317         afx_msg void OnViewTreeMode();
318         afx_msg void OnUpdateViewTreeMode(CCmdUI* pCmdUI);
319         afx_msg void OnViewExpandAllSubdirs();
320         afx_msg void OnUpdateViewExpandAllSubdirs(CCmdUI* pCmdUI);
321         afx_msg void OnViewCollapseAllSubdirs();
322         afx_msg void OnUpdateViewCollapseAllSubdirs(CCmdUI* pCmdUI);
323         afx_msg void OnViewSwapPanes();
324         afx_msg void OnOptionsShowDifferent();
325         afx_msg void OnOptionsShowIdentical();
326         afx_msg void OnOptionsShowUniqueLeft();
327         afx_msg void OnOptionsShowUniqueMiddle();
328         afx_msg void OnOptionsShowUniqueRight();
329         afx_msg void OnOptionsShowBinaries();
330         afx_msg void OnOptionsShowSkipped();
331         afx_msg void OnOptionsShowDifferentLeftOnly();
332         afx_msg void OnOptionsShowDifferentMiddleOnly();
333         afx_msg void OnOptionsShowDifferentRightOnly();
334         afx_msg void OnOptionsShowMissingLeftOnly();
335         afx_msg void OnOptionsShowMissingMiddleOnly();
336         afx_msg void OnOptionsShowMissingRightOnly();
337         afx_msg void OnUpdateOptionsShowdifferent(CCmdUI* pCmdUI);
338         afx_msg void OnUpdateOptionsShowidentical(CCmdUI* pCmdUI);
339         afx_msg void OnUpdateOptionsShowuniqueleft(CCmdUI* pCmdUI);
340         afx_msg void OnUpdateOptionsShowuniquemiddle(CCmdUI* pCmdUI);
341         afx_msg void OnUpdateOptionsShowuniqueright(CCmdUI* pCmdUI);
342         afx_msg void OnUpdateOptionsShowBinaries(CCmdUI* pCmdUI);
343         afx_msg void OnUpdateOptionsShowSkipped(CCmdUI* pCmdUI);
344         afx_msg void OnUpdateOptionsShowDifferentLeftOnly(CCmdUI* pCmdUI);
345         afx_msg void OnUpdateOptionsShowDifferentMiddleOnly(CCmdUI* pCmdUI);
346         afx_msg void OnUpdateOptionsShowDifferentRightOnly(CCmdUI* pCmdUI);
347         afx_msg void OnUpdateOptionsShowMissingLeftOnly(CCmdUI* pCmdUI);
348         afx_msg void OnUpdateOptionsShowMissingMiddleOnly(CCmdUI* pCmdUI);
349         afx_msg void OnUpdateOptionsShowMissingRightOnly(CCmdUI* pCmdUI);
350         afx_msg void OnMergeCompare();
351         template<SELECTIONTYPE seltype>
352         afx_msg void OnMergeCompare2();
353         afx_msg void OnMergeCompareNonHorizontally();
354         afx_msg void OnMergeCompareXML();
355         afx_msg void OnMergeCompareAs(UINT nID);
356         afx_msg void OnUpdateMergeCompare(CCmdUI *pCmdUI);
357         template<SELECTIONTYPE seltype>
358         afx_msg void OnUpdateMergeCompare2(CCmdUI *pCmdUI);
359         afx_msg void OnViewCompareStatistics();
360         afx_msg void OnFileEncoding();
361         afx_msg void OnHelp();
362         afx_msg void OnEditCopy();
363         afx_msg void OnEditCut();
364         afx_msg void OnEditPaste();
365         afx_msg void OnEditUndo();
366         afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
367         afx_msg void OnItemChanged(NMHDR* pNMHDR, LRESULT* pResult);
368         afx_msg void OnBeginLabelEdit(NMHDR* pNMHDR, LRESULT* pResult);
369         afx_msg void OnEndLabelEdit(NMHDR* pNMHDR, LRESULT* pResult);
370         afx_msg void OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult);
371         afx_msg void OnSearch();
372         afx_msg void OnBeginDrag(NMHDR* pNMHDR, LRESULT* pResult);
373         afx_msg void OnBnClickedComparisonStop();
374         afx_msg void OnBnClickedComparisonPause();
375         afx_msg void OnBnClickedComparisonContinue();
376         //}}AFX_MSG
377         DECLARE_MESSAGE_MAP()
378         bool OnHeaderBeginDrag(LPNMHEADER hdr, LRESULT* pResult);
379         bool OnHeaderEndDrag(LPNMHEADER hdr, LRESULT* pResult);
380
381 private:
382         void Open(const PathContext& paths, DWORD dwFlags[3], PackingInfo * infoUnpacker = nullptr);
383         void OpenSelection(SELECTIONTYPE selectionType = SELECTIONTYPE_NORMAL, PackingInfo * infoUnpacker = nullptr, bool openableForDir = true);
384         void OpenSelectionAs(UINT id);
385         bool GetSelectedItems(int * sel1, int * sel2, int * sel3);
386         void OpenParentDirectory();
387         template<SIDE_TYPE srctype, SIDE_TYPE dsttype>
388         void DoUpdateDirCopy(CCmdUI* pCmdUI, eMenuType menuType);
389         const DIFFITEM &GetDiffItem(int sel) const;
390         DIFFITEM &GetDiffItem(int sel);
391         int GetSingleSelectedItem() const;
392         void MoveFocus(int currentInd, int i, int selCount);
393
394         void FixReordering();
395         void HeaderContextMenu(CPoint point, int i);
396         void ListContextMenu(CPoint point, int i);
397         bool ListShellContextMenu(SIDE_TYPE side);
398         void ShowShellContextMenu(SIDE_TYPE side);
399         CShellContextMenu* GetCorrespondingShellContextMenu(HMENU hMenu) const;
400         void ReloadColumns();
401         bool IsLabelEdit() const;
402         void CollapseSubdir(int sel);
403         void ExpandSubdir(int sel, bool bRecursive = false);
404         void GetColors(int nRow, int nCol, COLORREF& clrBk, COLORREF& clrText) const;
405 public:
406         DirItemIterator Begin() const { return DirItemIterator(m_pIList.get()); }
407         DirItemIterator End() const { return DirItemIterator(); }
408         DirItemIterator RevBegin() const { return DirItemIterator(m_pIList.get(), -1, false, true); }
409         DirItemIterator RevEnd() const { return DirItemIterator(); }
410         DirItemIterator SelBegin() const { return DirItemIterator(m_pIList.get(), -1, true); }
411         DirItemIterator SelEnd() const { return DirItemIterator(); }
412         DirItemIterator SelRevBegin() const { return DirItemIterator(m_pIList.get(), -1, true, true); }
413         DirItemIterator SelRevEnd() const { return DirItemIterator(); }
414 };
415
416 #ifndef _DEBUG  // debug version in DirView.cpp
417 inline CDirDoc* CDirView::GetDocument()
418 { return reinterpret_cast<CDirDoc*>(m_pDocument); }
419 #endif