OSDN Git Service

crystaledit: Use GetProfile*()/WriteProfile*() to read and write the registry wheneve...
[winmerge-jp/winmerge-jp.git] / Src / ImgMergeFrm.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  ImgMergeFrm.h
8  *
9  * @brief interface of the CImgMergeFrame class
10  *
11  */
12 #pragma once
13
14 #include "EditorFilepathBar.h"
15 #include "PathContext.h"
16 #include "DiffFileInfo.h"
17 #include "IMergeDoc.h"
18 #include "WinIMergeLib.h"
19 #include "LocationBar.h"
20 #include "FileLocation.h"
21 #include "MergeFrameCommon.h"
22
23 class CDirDoc;
24
25 /** 
26  * @brief Frame class for file compare, handles panes, statusbar etc.
27  */
28 class CImgMergeFrame : public CMergeFrameCommon,public IMergeDoc
29 {
30         private:
31         enum class BUFFERTYPE
32         {
33                 NORMAL = 0, /**< Normal, file loaded from disk */
34                 NORMAL_NAMED, /**< Normal, description given */
35                 UNNAMED, /**< Empty, created buffer */
36                 UNNAMED_SAVED, /**< Empty buffer saved with filename */
37         };
38
39         using CMDIChildWnd::Create;
40
41         DECLARE_DYNCREATE(CImgMergeFrame)
42 public:
43         CImgMergeFrame();
44
45
46 // Operations
47 public:
48         bool OpenDocs(int nFiles, const FileLocation fileloc[], const bool bRO[], const String strDesc[], CMDIFrameWnd *pParent);
49         void MoveOnLoad(int nPane = -1, int nLineIndex = -1);
50         void ChangeFile(int pane, const String& path);
51         CDirDoc* GetDirDoc() const override { return m_pDirDoc; };
52         void SetDirDoc(CDirDoc * pDirDoc) override;
53         void UpdateResources();
54         bool CloseNow() override;
55         void DirDocClosing(CDirDoc * pDirDoc) override { m_pDirDoc = nullptr; }
56         void UpdateLastCompareResult();
57         void UpdateAutoPaneResize();
58         void UpdateSplitter();
59         bool GenerateReport(const String& sFileName) const override;
60         void DoAutoMerge(int dstPane);
61         bool IsModified() const;
62         IMergeDoc::FileChange IsFileChangedOnDisk(int pane) const;
63         void CheckFileChanged(void) override;
64         String GetDescription(int pane) const { return m_strDesc[pane]; }
65         static bool IsLoadable();
66
67 // Attributes
68 protected:
69         CEditorFilePathBar m_wndFilePathBar;
70         CStatusBar m_wndStatusBar[3];
71 // Overrides
72 public:
73         // ClassWizard generated virtual function overrides
74         //{{AFX_VIRTUAL(CImgMergeFrame)
75         public:
76         virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
77         virtual BOOL DestroyWindow();
78         virtual BOOL PreTranslateMessage(MSG *);
79         static CMenu menu;
80
81         protected:
82         //}}AFX_VIRTUAL
83
84 // Implementation
85 private:
86         bool EnsureValidDockState(CDockState& state);
87         void LoadOptions();
88         void SaveOptions();
89         void SavePosition();
90         void SaveActivePane();
91         virtual ~CImgMergeFrame();
92         void CreateImgWndStatusBar(CStatusBar &, CWnd *);
93 // Generated message map functions
94 private:
95         int UpdateDiffItem(CDirDoc * pDirDoc);
96         void UpdateHeaderSizes();
97         void UpdateHeaderPath(int pane);
98         void SetTitle(LPCTSTR lpszTitle);
99         bool DoFileSave(int pane);
100         bool DoFileSaveAs(int pane);
101         bool PromptAndSaveIfNeeded(bool bAllowCancel);
102         bool MergeModeKeyDown(MSG* pMsg);
103         static void OnChildPaneEvent(const IImgMergeWindow::Event& evt);
104         void OnDropFiles(int pane, const std::vector<String>& files);
105         static void TranslateLocationPane(int id, const wchar_t *org, size_t dstbufsize, wchar_t *dst);
106         CLocationBar m_wndLocationBar;
107         IImgMergeWindow *m_pImgMergeWindow;
108         IImgToolWindow *m_pImgToolWindow;
109         PathContext m_filePaths;
110         String m_strDesc[3];
111         BUFFERTYPE m_nBufferType[3];
112         DiffFileInfo m_fileInfo[3];
113         bool m_bRO[3];
114         bool m_bAutoMerged;
115         CDirDoc *m_pDirDoc;
116         int m_nActivePane;
117
118         //{{AFX_MSG(CImgMergeFrame)
119         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
120         afx_msg void OnMDIActivate(BOOL bActivate, CWnd* pActivateWnd, CWnd* pDeactivateWnd);
121         afx_msg void OnClose();
122         afx_msg void OnDestroy();
123         afx_msg void OnFileSave();
124         afx_msg void OnUpdateFileSave(CCmdUI* pCmdUI);
125         afx_msg void OnFileSaveLeft();
126         afx_msg void OnFileSaveMiddle();
127         afx_msg void OnUpdateFileSaveMiddle(CCmdUI* pCmdUI);
128         afx_msg void OnFileSaveRight();
129         afx_msg void OnFileSaveAsLeft();
130         afx_msg void OnFileSaveAsMiddle();
131         afx_msg void OnUpdateFileSaveAsMiddle(CCmdUI* pCmdUI);
132         afx_msg void OnFileSaveAsRight();
133         afx_msg void OnLeftReadOnly();
134         afx_msg void OnUpdateLeftReadOnly(CCmdUI* pCmdUI);
135         afx_msg void OnMiddleReadOnly();
136         afx_msg void OnUpdateMiddleReadOnly(CCmdUI* pCmdUI);
137         afx_msg void OnRightReadOnly();
138         afx_msg void OnUpdateRightReadOnly(CCmdUI* pCmdUI);
139         afx_msg void OnFileReload();
140         afx_msg void OnFileClose();
141         afx_msg void OnFileRecompareAs(UINT nId);
142         afx_msg void OnUpdateFileRecompareAs(CCmdUI* pCmdUI);
143         afx_msg void OnWindowChangePane();
144         afx_msg void OnSize(UINT nType, int cx, int cy);
145         afx_msg void OnIdleUpdateCmdUI();
146         afx_msg void OnUpdateStatusNum(CCmdUI* pCmdUI);
147         afx_msg LRESULT OnStorePaneSizes(WPARAM wParam, LPARAM lParam);
148         afx_msg void OnEditUndo();
149         afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
150         afx_msg void OnEditRedo();
151         afx_msg void OnUpdateEditRedo(CCmdUI* pCmdUI);
152         afx_msg void OnEditCut();
153         afx_msg void OnUpdateEditCut(CCmdUI* pCmdUI);
154         afx_msg void OnEditCopy();
155         afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
156         afx_msg void OnEditPaste();
157         afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
158         afx_msg void OnEditSelectAll();
159         afx_msg void OnViewZoomIn();
160         afx_msg void OnViewZoomOut();
161         afx_msg void OnViewZoomNormal();
162         afx_msg void OnViewSplitVertically();
163         afx_msg void OnUpdateViewSplitVertically(CCmdUI* pCmdUI);
164         afx_msg void OnFirstdiff();
165         afx_msg void OnUpdateFirstdiff(CCmdUI* pCmdUI);
166         afx_msg void OnLastdiff();
167         afx_msg void OnUpdateLastdiff(CCmdUI* pCmdUI);
168         afx_msg void OnNextdiff();
169         afx_msg void OnUpdateNextdiff(CCmdUI* pCmdUI);
170         afx_msg void OnPrevdiff();
171         afx_msg void OnUpdatePrevdiff(CCmdUI* pCmdUI);
172         afx_msg void OnNextConflict();
173         afx_msg void OnUpdateNextConflict(CCmdUI* pCmdUI);
174         afx_msg void OnPrevConflict();
175         afx_msg void OnUpdatePrevConflict(CCmdUI* pCmdUI);
176         afx_msg void OnX2Y(int srcPane, int dstPane);
177         afx_msg void OnUpdateX2Y(CCmdUI* pCmdUI, int srcPane, int dstPane);
178         afx_msg void OnL2r();
179         afx_msg void OnUpdateL2r(CCmdUI* pCmdUI);
180         afx_msg void OnR2l();
181         afx_msg void OnUpdateR2l(CCmdUI* pCmdUI);
182         afx_msg void OnCopyFromLeft();
183         afx_msg void OnUpdateCopyFromLeft(CCmdUI* pCmdUI);
184         afx_msg void OnCopyFromRight();
185         afx_msg void OnUpdateCopyFromRight(CCmdUI* pCmdUI);
186         afx_msg void OnAllLeft();
187         afx_msg void OnUpdateAllLeft(CCmdUI* pCmdUI);
188         afx_msg void OnAllRight();
189         afx_msg void OnUpdateAllRight(CCmdUI* pCmdUI);
190         afx_msg void OnAutoMerge();
191         afx_msg void OnUpdateAutoMerge(CCmdUI* pCmdUI);
192         afx_msg void OnImgViewDifferences();
193         afx_msg void OnUpdateImgViewDifferences(CCmdUI* pCmdUI);
194         afx_msg void OnImgZoom(UINT nId);
195         afx_msg void OnUpdateImgZoom(CCmdUI* pCmdUI);
196         afx_msg void OnImgOverlayMode(UINT nId);
197         afx_msg void OnUpdateImgOverlayMode(CCmdUI* pCmdUI);
198         afx_msg void OnImgDraggingMode(UINT nId);
199         afx_msg void OnUpdateImgDraggingMode(CCmdUI* pCmdUI);
200         afx_msg void OnImgDiffBlockSize(UINT nId);
201         afx_msg void OnUpdateImgDiffBlockSize(CCmdUI* pCmdUI);
202         afx_msg void OnImgThreshold(UINT nId);
203         afx_msg void OnUpdateImgThreshold(CCmdUI* pCmdUI);
204         afx_msg void OnImgInsertionDeletionDetectionMode(UINT nId);
205         afx_msg void OnUpdateImgInsertionDeletionDetectionMode(CCmdUI* pCmdUI);
206         afx_msg void OnImgPrevPage();
207         afx_msg void OnUpdateImgPrevPage(CCmdUI* pCmdUI);
208         afx_msg void OnImgNextPage();
209         afx_msg void OnUpdateImgNextPage(CCmdUI* pCmdUI);
210         afx_msg void OnImgCurPanePrevPage();
211         afx_msg void OnUpdateImgCurPanePrevPage(CCmdUI* pCmdUI);
212         afx_msg void OnImgCurPaneNextPage();
213         afx_msg void OnUpdateImgCurPaneNextPage(CCmdUI* pCmdUI);
214         afx_msg void OnImgUseBackColor();
215         afx_msg void OnImgVectorImageScaling(UINT nId);
216         afx_msg void OnUpdateImgVectorImageScaling(CCmdUI* pCmdUI);
217         afx_msg void OnUpdateImgUseBackColor(CCmdUI* pCmdUI);
218         afx_msg void OnImgCompareExtractedText();
219         afx_msg void OnToolsGenerateReport();
220         afx_msg void OnRefresh();
221         afx_msg void OnSetFocus(CWnd *pNewWnd);
222         afx_msg void OnHelp();
223         //}}AFX_MSG
224         DECLARE_MESSAGE_MAP()
225 };