OSDN Git Service

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