OSDN Git Service

Eliminate old (and unfinished) Version Control feature
[winmerge-jp/winmerge-jp.git] / Src / MainFrm.h
1 /////////////////////////////////////////////////////////////////////////////
2 //    WinMerge:  an interactive diff/merge utility
3 //    Copyright (C) 1997  Dean P. Grimm
4 //
5 //    This program is free software; you can redistribute it and/or modify
6 //    it under the terms of the GNU General Public License as published by
7 //    the Free Software Foundation; either version 2 of the License, or
8 //    (at your option) any later version.
9 //
10 //    This program is distributed in the hope that it will be useful,
11 //    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //    GNU General Public License for more details.
14 //
15 //    You should have received a copy of the GNU General Public License
16 //    along with this program; if not, write to the Free Software
17 //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 //
19 /////////////////////////////////////////////////////////////////////////////
20 /** 
21  * @file  MainFrm.h
22  *
23  * @brief Declaration file for CMainFrame
24  *
25  */
26 #pragma once
27
28 #include <vector>
29 #include <memory>
30 #include "MDITabBar.h"
31 #include "PathContext.h"
32
33 class BCMenu;
34 class CDirView;
35 class COpenDoc;
36 class CDirDoc;
37 class CMergeDoc;
38 class CHexMergeDoc;
39 class CMergeEditView;
40 class SyntaxColors;
41 class LineFiltersList;
42 class TempFile;
43 struct FileLocation;
44 class DropHandler;
45
46 typedef std::shared_ptr<TempFile> TempFilePtr;
47
48 // typed lists (homogenous pointer lists)
49 typedef CTypedPtrList<CPtrList, COpenDoc *> OpenDocList;
50 typedef CTypedPtrList<CPtrList, CMergeDoc *> MergeDocList;
51 typedef CTypedPtrList<CPtrList, CDirDoc *> DirDocList;
52 typedef CTypedPtrList<CPtrList, CHexMergeDoc *> HexMergeDocList;
53
54 class PackingInfo;
55 class CLanguageSelect;
56
57 /**
58  * @brief Frame class containing save-routines etc
59  */
60 class CMainFrame : public CMDIFrameWnd
61 {
62         friend CLanguageSelect;
63         DECLARE_DYNAMIC(CMainFrame)
64 public:
65         /**
66          * @brief Frame/View/Document types.
67          */
68         enum FRAMETYPE
69         {
70                 FRAME_FOLDER, /**< Folder compare frame. */
71                 FRAME_FILE, /**< File compare frame. */
72                 FRAME_HEXFILE, /**< Hex file compare frame. */
73                 FRAME_IMGFILE, /**< Image file compare frame. */
74                 FRAME_OTHER, /**< No frame? */
75         };
76
77         CMainFrame();
78
79 // Attributes
80 public: 
81         BOOL m_bShowErrors; /**< Show folder compare error items? */
82         LOGFONT m_lfDiff; /**< MergeView user-selected font */
83         LOGFONT m_lfDir; /**< DirView user-selected font */
84         static const TCHAR szClassName[];
85 // Operations
86 public:
87         HMENU NewDirViewMenu();
88         HMENU NewMergeViewMenu();
89         HMENU NewHexMergeViewMenu();
90         HMENU NewImgMergeViewMenu();
91         HMENU NewOpenViewMenu();
92         HMENU NewDefaultMenu(int ID = 0);
93         HMENU GetScriptsSubmenu(HMENU mainMenu);
94         HMENU GetPrediffersSubmenu(HMENU mainMenu);
95         void UpdatePrediffersMenu();
96
97         BOOL DoFileOpen(const PathContext *pFiles = NULL,
98                 const DWORD dwFlags[] = NULL, const String strDesc[] = NULL, const String& sReportFile = _T(""), bool bRecurse = false, CDirDoc *pDirDoc = NULL, String prediffer = _T(""), const PackingInfo * infoUnpacker = NULL);
99         bool ShowAutoMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
100                 const DWORD dwFlags[], const String strDesc[], const String& sReportFile = _T(""), const PackingInfo * infoUnpacker = NULL);
101         bool ShowMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
102                 const DWORD dwFlags[], const String strDesc[], const String& sReportFile = _T(""), const PackingInfo * infoUnpacker = NULL);
103         bool ShowHexMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
104                 const DWORD dwFlags[], const String strDesc[], const String& sReportFile = _T(""), const PackingInfo * infoUnpacker = NULL);
105         bool ShowImgMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
106                 const DWORD dwFlags[], const String strDesc[], const String& sReportFile = _T(""), const PackingInfo * infoUnpacker = NULL);
107
108         void UpdateResources();
109         void ClearStatusbarItemCount();
110         void ApplyDiffOptions();
111         void SelectFilter();
112         void StartFlashing();
113         bool AskCloseConfirmation();
114         BOOL DoOpenConflict(const String& conflictFile, const String strDesc[] = nullptr, bool checked = false);
115         FRAMETYPE GetFrameType(const CFrameWnd * pFrame) const;
116         void UpdateDocTitle();
117         void ReloadMenu();
118         DropHandler *GetDropHandler() const { return m_pDropHandler; }
119
120 // Overrides
121         virtual void GetMessageString(UINT nID, CString& rMessage) const;
122         // ClassWizard generated virtual function overrides
123         //{{AFX_VIRTUAL(CMainFrame)
124 public:
125         virtual void ActivateFrame(int nCmdShow = -1);
126         virtual BOOL PreTranslateMessage(MSG* pMsg);
127         virtual void OnUpdateFrameTitle(BOOL bAddToTitle);
128         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
129         //}}AFX_VIRTUAL
130
131 // Implementation methods
132 protected:
133         virtual ~CMainFrame();
134
135
136 // Public implementation data
137 public:
138         BOOL m_bFirstTime; /**< If first time frame activated, get  pos from reg */
139
140 // Implementation data
141 protected:
142
143
144         // control bar embedded members
145         CStatusBar  m_wndStatusBar;
146         CReBar m_wndReBar;
147         CToolBar m_wndToolBar;
148         CMDITabBar m_wndTabBar;
149
150         /** @brief Toolbar image table indexes. */
151         enum TOOLBAR_IMAGES
152         {
153                 TOOLBAR_IMAGES_ENABLED,
154                 TOOLBAR_IMAGES_DISABLED,
155                 TOOLBAR_IMAGES_COUNT
156         };
157
158         CImageList m_ToolbarImages[TOOLBAR_IMAGES_COUNT]; /**< Images for toolbar */
159
160         enum
161         {
162                 MENU_DEFAULT,
163                 MENU_MERGEVIEW,
164                 MENU_DIRVIEW,
165                 MENU_HEXMERGEVIEW,
166                 MENU_IMGMERGEVIEW,
167                 MENU_OPENVIEW,
168                 MENU_COUNT, // Add new items before this item
169         };
170         /**
171          * Menu frames - for which frame(s) the menu is.
172          */
173         enum
174         {
175                 MENU_MAINFRM = 0x000001,
176                 MENU_FILECMP = 0x000002,
177                 MENU_FOLDERCMP = 0x000004,
178                 MENU_ALL = MENU_MAINFRM | MENU_FILECMP | MENU_FOLDERCMP
179         };
180
181         /**
182          * A structure attaching a menu item, icon and menu types to apply to.
183          */
184         struct MENUITEM_ICON
185         {
186                 int menuitemID;   /**< Menu item's ID. */
187                 int iconResID;    /**< Icon's resource ID. */
188                 int menusToApply; /**< For which menus to apply. */
189         };
190
191         static const MENUITEM_ICON m_MenuIcons[];
192
193         std::unique_ptr<BCMenu> m_pMenus[MENU_COUNT]; /**< Menus for different views */
194         std::vector<TempFilePtr> m_tempFiles; /**< List of possibly needed temp files. */
195         DropHandler *m_pDropHandler;
196
197 // Generated message map functions
198 protected:
199         //{{AFX_MSG(CMainFrame)
200         afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
201         afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu) ;
202         afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
203         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
204         afx_msg void OnFileOpen();
205         afx_msg void OnHelpGnulicense();
206         afx_msg void OnOptions();
207         afx_msg void OnViewSelectfont();
208         afx_msg void OnUpdateViewSelectfont(CCmdUI* pCmdUI);
209         afx_msg void OnViewUsedefaultfont();
210         afx_msg void OnUpdateViewUsedefaultfont(CCmdUI* pCmdUI);
211         afx_msg void OnHelpContents();
212         afx_msg void OnUpdateHelpContents(CCmdUI* pCmdUI);
213         afx_msg void OnClose();
214         afx_msg void OnToolsGeneratePatch();
215         afx_msg void OnDropFiles(const std::vector<String>& files);
216         afx_msg void OnUpdatePluginUnpackMode(CCmdUI* pCmdUI);
217         afx_msg void OnPluginUnpackMode(UINT nID);
218         afx_msg void OnUpdatePluginPrediffMode(CCmdUI* pCmdUI);
219         afx_msg void OnPluginPrediffMode(UINT nID);
220         afx_msg void OnUpdateReloadPlugins(CCmdUI* pCmdUI);
221         afx_msg void OnReloadPlugins();
222         afx_msg void OnSaveConfigData();
223         afx_msg void OnFileNew();
224         afx_msg void OnFileNew3();
225         afx_msg void OnToolsFilters();
226         afx_msg void OnViewStatusBar();
227         afx_msg void OnUpdateViewTabBar(CCmdUI* pCmdUI);
228         afx_msg void OnViewTabBar();
229         afx_msg void OnUpdateResizePanes(CCmdUI* pCmdUI);
230         afx_msg void OnResizePanes();
231         afx_msg void OnFileOpenproject();
232         afx_msg LRESULT OnCopyData(WPARAM wParam, LPARAM lParam);
233         afx_msg LRESULT OnUser1(WPARAM wParam, LPARAM lParam);
234         afx_msg void OnWindowCloseAll();
235         afx_msg void OnUpdateWindowCloseAll(CCmdUI* pCmdUI);
236         afx_msg void OnSaveProject();
237 #if _MFC_VER > 0x0600
238         afx_msg void OnActivateApp(BOOL bActive, DWORD dwThreadID);
239 #else
240         afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
241 #endif
242         afx_msg void OnToolbarSize(UINT id);
243         afx_msg void OnUpdateToolbarSize(CCmdUI* pCmdUI);
244         afx_msg BOOL OnToolTipText(UINT, NMHDR* pNMHDR, LRESULT* pResult);
245         afx_msg void OnHelpReleasenotes();
246         afx_msg void OnHelpTranslations();
247         afx_msg void OnFileOpenConflict();
248         afx_msg void OnPluginsList();
249         afx_msg void OnUpdatePluginName(CCmdUI* pCmdUI);
250         afx_msg void OnDiffOptionsDropDown(NMHDR* pNMHDR, LRESULT* pResult);
251         afx_msg void OnDiffWhitespace(UINT nID);
252         afx_msg void OnUpdateDiffWhitespace(CCmdUI* pCmdUI);
253         afx_msg void OnDiffCaseSensitive();
254         afx_msg void OnUpdateDiffCaseSensitive(CCmdUI* pCmdUI);
255         afx_msg void OnDiffIgnoreEOL();
256         afx_msg void OnUpdateDiffIgnoreEOL(CCmdUI* pCmdUI);
257         afx_msg void OnIncludeSubfolders();
258         afx_msg void OnUpdateIncludeSubfolders(CCmdUI* pCmdUI);
259         afx_msg void OnCompareMethod(UINT nID);
260         afx_msg void OnUpdateCompareMethod(CCmdUI* pCmdUI);
261         afx_msg void OnMRUs(UINT nID);
262         afx_msg void OnUpdateNoMRUs(CCmdUI* pCmdUI);
263         afx_msg void OnDestroy();
264         //}}AFX_MSG
265         DECLARE_MESSAGE_MAP()
266
267 private:
268         void addToMru(LPCTSTR szItem, LPCTSTR szRegSubKey, UINT nMaxItems = 20);
269         void FileNew(int nPanes);
270         OpenDocList &GetAllOpenDocs();
271         MergeDocList &GetAllMergeDocs();
272         DirDocList &GetAllDirDocs();
273         HexMergeDocList &GetAllHexMergeDocs();
274         void UpdateFont(FRAMETYPE frame);
275         BOOL CreateToolbar();
276         CMergeEditView * GetActiveMergeEditView();
277         void LoadToolbarImages();
278         HMENU NewMenu( int view, int ID );
279 };
280
281 CMainFrame * GetMainFrame(); // access to the singleton main frame object