forked from uesp/skyedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainFrm.h
111 lines (88 loc) · 3.25 KB
/
MainFrm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*===========================================================================
*
* File: MainFrm.H
* Author: Dave Humphrey ([email protected])
* Created On: 26 November 2011
*
* Defines the interface of the CMainFrame class.
*
*=========================================================================*/
#ifndef __MainFrm_H
#define __MainFrm_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
#include "errorbar.h"
#include "undobar.h"
#include "sreditdoc.h"
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Begin Definitions
*
*=========================================================================*/
/* Custom messages */
#define SRE_MSG_UPDATEUNDO (WM_APP + 209)
#define SRE_MSG_UNDOITEMS (WM_APP + 210)
#define SRE_MSG_LOCKUNDO (WM_APP + 211)
/*===========================================================================
* End of Definitions
*=========================================================================*/
/*===========================================================================
*
* Class CMainFrame Definition
*
*=========================================================================*/
class CMainFrame : public CMDIFrameWnd {
DECLARE_DYNAMIC(CMainFrame)
public:
CMainFrame();
/*---------- Begin Protected Class Members ----------------------*/
protected:
CStatusBar m_wndStatusBar;
CToolBar m_wndToolBar;
CSrErrorBar m_wndErrorBar;
CSrUndoBar m_wndUndoBar;
/*---------- Begin Public Class Methods ------------------------*/
public:
/* Destructor */
virtual ~CMainFrame();
CView* GetActiveMainView (void);
CSrEditDoc* GetActiveSrEditDoc (void);
/* Diagnostics */
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnDestroy();
afx_msg void OnViewErrorBar();
afx_msg void OnUpdateViewErrorBar(CCmdUI* pCmdUI);
afx_msg void OnViewUndobar();
afx_msg void OnUpdateViewUndobar(CCmdUI* pCmdUI);
afx_msg LRESULT OnUpdateUndo (WPARAM wParam, LPARAM lParam);
afx_msg LRESULT OnUndoItems (WPARAM wParam, LPARAM lParam);
afx_msg LRESULT OnUndoLock (WPARAM wParam, LPARAM lParam);
afx_msg LRESULT OnMdiMaximize (WPARAM wParam, LPARAM lParam);
afx_msg void OnHelp (void);
afx_msg void OnViewResourceviewer();
afx_msg void OnHelpUespwiki();
afx_msg void OnHelpCswiki();
afx_msg void OnViewResetlists();
afx_msg void OnViewScripts();
DECLARE_MESSAGE_MAP();
public:
};
/*===========================================================================
* End of Class CMainFrame Definition
*=========================================================================*/
#endif
/*===========================================================================
* End of File MainFrm.H
*=========================================================================*/