OSDN Git Service

Move ID_OPTIONS_SHOW* menu handler in CMainFrame to CDirView
[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 CDiffView;
35 class CDirView;
36 class COpenDoc;
37 class CDirDoc;
38 class CMergeDoc;
39 class CHexMergeDoc;
40 class CMergeEditView;
41 class SyntaxColors;
42 class LineFiltersList;
43 class TempFile;
44 struct FileLocation;
45 class DropHandler;
46
47 typedef std::shared_ptr<TempFile> TempFilePtr;
48
49 // typed lists (homogenous pointer lists)
50 typedef CTypedPtrList<CPtrList, COpenDoc *> OpenDocList;
51 typedef CTypedPtrList<CPtrList, CMergeDoc *> MergeDocList;
52 typedef CTypedPtrList<CPtrList, CDirDoc *> DirDocList;
53 typedef CTypedPtrList<CPtrList, CHexMergeDoc *> HexMergeDocList;
54
55 class PackingInfo;
56 class CLanguageSelect;
57
58 /**
59  * @brief Frame class containing save-routines etc
60  */
61 class CMainFrame : public CMDIFrameWnd
62 {
63         friend CLanguageSelect;
64         DECLARE_DYNAMIC(CMainFrame)
65 public:
66         /**
67          * @brief Frame/View/Document types.
68          */
69         enum FRAMETYPE
70         {
71                 FRAME_FOLDER, /**< Folder compare frame. */
72                 FRAME_FILE, /**< File compare frame. */
73                 FRAME_HEXFILE, /**< Hex file compare frame. */
74                 FRAME_IMGFILE, /**< Image file compare frame. */
75                 FRAME_OTHER, /**< No frame? */
76         };
77
78         enum { WM_NONINTERACTIVE = 888 }; // timer value
79
80         CMainFrame();
81
82 // Attributes
83 public: 
84         BOOL m_bShowErrors; /**< Show folder compare error items? */
85         LOGFONT m_lfDiff; /**< MergeView user-selected font */
86         LOGFONT m_lfDir; /**< DirView user-selected font */
87         static const TCHAR szClassName[];
88 // Operations
89 public:
90         HMENU NewDirViewMenu();
91         HMENU NewMergeViewMenu();
92         HMENU NewHexMergeViewMenu();
93         HMENU NewImgMergeViewMenu();
94         HMENU NewOpenViewMenu();
95         HMENU NewDefaultMenu(int ID = 0);
96         HMENU GetScriptsSubmenu(HMENU mainMenu);
97         HMENU GetPrediffersSubmenu(HMENU mainMenu);
98         void UpdatePrediffersMenu();
99
100         BOOL DoFileOpen(const PathContext *pFiles = NULL,
101                 const DWORD dwFlags[] = NULL, bool bRecurse = false, CDirDoc *pDirDoc = NULL, String prediffer = _T(""), const PackingInfo * infoUnpacker = NULL);
102         int ShowAutoMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
103                 const DWORD dwFlags[], const PackingInfo * infoUnpacker = NULL);
104         int ShowMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
105                 const DWORD dwFlags[], const PackingInfo * infoUnpacker = NULL);
106         void ShowHexMergeDoc(CDirDoc * pDirDoc,
107                 const PathContext &paths, const bool bRO[]);
108         int ShowImgMergeDoc(CDirDoc * pDirDoc, int nFiles, const FileLocation fileloc[],
109                 const DWORD dwFlags[], const PackingInfo * infoUnpacker = NULL);
110
111         void UpdateResources();
112         CString SetStatus(LPCTSTR status);
113         void ClearStatusbarItemCount();
114         void ApplyDiffOptions();
115         void SelectFilter();
116         void StartFlashing();
117         bool AskCloseConfirmation();
118         BOOL DoOpenConflict(const String& conflictFile, bool checked = false);
119         FRAMETYPE GetFrameType(const CFrameWnd * pFrame) const;
120         void UpdateDocTitle();
121         void ReloadMenu();
122
123 // Overrides
124         virtual void GetMessageString(UINT nID, CString& rMessage) const;
125         // ClassWizard generated virtual function overrides
126         //{{AFX_VIRTUAL(CMainFrame)
127 public:
128         virtual void ActivateFrame(int nCmdShow = -1);
129         virtual BOOL PreTranslateMessage(MSG* pMsg);
130         virtual void OnUpdateFrameTitle(BOOL bAddToTitle);
131         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
132         //}}AFX_VIRTUAL
133
134 // Implementation methods
135 protected:
136         virtual ~CMainFrame();
137
138 // Public implementation data
139 public:
140         BOOL m_bFirstTime; /**< If first time frame activated, get  pos from reg */
141         BOOL m_bFlashing; /**< Window is flashing. */
142
143         /** @brief Possible toolbar image sizes. */
144         enum TOOLBAR_SIZE
145         {
146                 TOOLBAR_SIZE_16x16,
147                 TOOLBAR_SIZE_32x32,
148         };
149
150 // Implementation data
151 protected:
152
153
154         // control bar embedded members
155         CStatusBar  m_wndStatusBar;
156         CReBar m_wndReBar;
157         CToolBar m_wndToolBar;
158         CMDITabBar m_wndTabBar;
159
160         /** @brief Toolbar image table indexes. */
161         enum TOOLBAR_IMAGES
162         {
163                 TOOLBAR_IMAGES_ENABLED,
164                 TOOLBAR_IMAGES_DISABLED,
165                 TOOLBAR_IMAGES_COUNT
166         };
167
168         CImageList m_ToolbarImages[TOOLBAR_IMAGES_COUNT]; /**< Images for toolbar */
169
170         enum
171         {
172                 MENU_DEFAULT,
173                 MENU_MERGEVIEW,
174                 MENU_DIRVIEW,
175                 MENU_HEXMERGEVIEW,
176                 MENU_IMGMERGEVIEW,
177                 MENU_OPENVIEW,
178                 MENU_COUNT, // Add new items before this item
179         };
180         /**
181          * Menu frames - for which frame(s) the menu is.
182          */
183         enum
184         {
185                 MENU_MAINFRM = 0x000001,
186                 MENU_FILECMP = 0x000002,
187                 MENU_FOLDERCMP = 0x000004,
188                 MENU_ALL = MENU_MAINFRM | MENU_FILECMP | MENU_FOLDERCMP
189         };
190
191         /**
192          * A structure attaching a menu item, icon and menu types to apply to.
193          */
194         struct MENUITEM_ICON
195         {
196                 int menuitemID;   /**< Menu item's ID. */
197                 int iconResID;    /**< Icon's resource ID. */
198                 int menusToApply; /**< For which menus to apply. */
199         };
200
201         static const MENUITEM_ICON m_MenuIcons[];
202
203         std::unique_ptr<BCMenu> m_pMenus[MENU_COUNT]; /**< Menus for different views */
204         std::vector<TempFilePtr> m_tempFiles; /**< List of possibly needed temp files. */
205         DropHandler *m_pDropHandler;
206
207 // Generated message map functions
208 protected:
209         //{{AFX_MSG(CMainFrame)
210         afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
211         afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu) ;
212         afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
213         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
214         afx_msg void OnFileOpen();
215         afx_msg void OnHelpGnulicense();
216         afx_msg void OnOptions();
217         afx_msg void OnViewSelectfont();
218         afx_msg void OnUpdateViewSelectfont(CCmdUI* pCmdUI);
219         afx_msg void OnViewUsedefaultfont();
220         afx_msg void OnUpdateViewUsedefaultfont(CCmdUI* pCmdUI);
221         afx_msg void OnHelpContents();
222         afx_msg void OnUpdateHelpContents(CCmdUI* pCmdUI);
223         afx_msg void OnClose();
224         afx_msg void OnToolsGeneratePatch();
225         afx_msg void OnDropFiles(const std::vector<String>& files);
226         afx_msg void OnUpdatePluginUnpackMode(CCmdUI* pCmdUI);
227         afx_msg void OnPluginUnpackMode(UINT nID);
228         afx_msg void OnUpdatePluginPrediffMode(CCmdUI* pCmdUI);
229         afx_msg void OnPluginPrediffMode(UINT nID);
230         afx_msg void OnUpdateReloadPlugins(CCmdUI* pCmdUI);
231         afx_msg void OnReloadPlugins();
232         afx_msg void OnSaveConfigData();
233         afx_msg void OnFileNew();
234         afx_msg void OnFileNew3();
235         afx_msg void OnToolsFilters();
236         afx_msg void OnViewStatusBar();
237         afx_msg void OnViewToolbar();
238         afx_msg void OnUpdateViewTabBar(CCmdUI* pCmdUI);
239         afx_msg void OnViewTabBar();
240         afx_msg void OnUpdateResizePanes(CCmdUI* pCmdUI);
241         afx_msg void OnResizePanes();
242         afx_msg void OnFileOpenproject();
243         afx_msg LRESULT OnCopyData(WPARAM wParam, LPARAM lParam);
244         afx_msg LRESULT OnUser1(WPARAM wParam, LPARAM lParam);
245         afx_msg void OnTimer(UINT_PTR nIDEvent);
246         afx_msg void OnWindowCloseAll();
247         afx_msg void OnUpdateWindowCloseAll(CCmdUI* pCmdUI);
248         afx_msg void OnSaveProject();
249         afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
250 #if _MFC_VER > 0x0600
251         afx_msg void OnActivateApp(BOOL bActive, DWORD dwThreadID);
252 #else
253         afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
254 #endif
255         afx_msg void OnToolbarNone();
256         afx_msg void OnUpdateToolbarNone(CCmdUI* pCmdUI);
257         afx_msg void OnToolbarSmall();
258         afx_msg void OnUpdateToolbarSmall(CCmdUI* pCmdUI);
259         afx_msg void OnToolbarBig();
260         afx_msg void OnUpdateToolbarBig(CCmdUI* pCmdUI);
261         afx_msg BOOL OnToolTipText(UINT, NMHDR* pNMHDR, LRESULT* pResult);
262         afx_msg void OnHelpCheckForUpdates();
263         afx_msg void OnFileOpenConflict();
264         afx_msg void OnPluginsList();
265         afx_msg void OnUpdatePluginName(CCmdUI* pCmdUI);
266         afx_msg void OnDiffOptionsDropDown(NMHDR* pNMHDR, LRESULT* pResult);
267         afx_msg void OnUpdateDiffOptions(CCmdUI* pCmdUI);
268         afx_msg void OnDiffWhitespace(UINT nID);
269         afx_msg void OnUpdateDiffWhitespace(CCmdUI* pCmdUI);
270         afx_msg void OnDiffCaseSensitive();
271         afx_msg void OnUpdateDiffCaseSensitive(CCmdUI* pCmdUI);
272         afx_msg void OnDiffIgnoreEOL();
273         afx_msg void OnUpdateDiffIgnoreEOL(CCmdUI* pCmdUI);
274         afx_msg void OnCompareMethod(UINT nID);
275         afx_msg void OnUpdateCompareMethod(CCmdUI* pCmdUI);
276         afx_msg void OnMRUs(UINT nID);
277         afx_msg void OnUpdateNoMRUs(CCmdUI* pCmdUI);
278         afx_msg void OnDestroy();
279         //}}AFX_MSG
280         DECLARE_MESSAGE_MAP()
281
282 private:
283         void addToMru(LPCTSTR szItem, LPCTSTR szRegSubKey, UINT nMaxItems = 20);
284         void FileNew(int nPanes);
285         const OpenDocList &GetAllOpenDocs();
286         const MergeDocList &GetAllMergeDocs();
287         const DirDocList &GetAllDirDocs();
288         const HexMergeDocList &GetAllHexMergeDocs();
289         void UpdateFont(FRAMETYPE frame);
290         BOOL CreateToolbar();
291         BOOL CreateComboBoxOnToolbar();
292         CMergeEditView * GetActiveMergeEditView();
293         void LoadToolbarImages();
294         HMENU NewMenu( int view, int ID );
295 };
296
297 CMainFrame * GetMainFrame(); // access to the singleton main frame object
298
299 /////////////////////////////////////////////////////////////////////////////
300
301 //{{AFX_INSERT_LOCATION}}
302 // Microsoft Developer Studio will insert additional declarations immediately before the previous line.