-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainFrm.h
More file actions
46 lines (35 loc) · 1.19 KB
/
MainFrm.h
File metadata and controls
46 lines (35 loc) · 1.19 KB
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
// MainFrm.h : CMainFrame クラスのインターフェイス
//
#pragma once
class CSharedMemWinApp;
class CMainFrame : public CFrameWnd
{
protected: // シリアル化からのみ作成します。
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
public:
CSharedMemWinApp* pApp;
// オーバーライド
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
public:
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // コントロール バー用メンバ
CStatusBar m_wndStatusBar;
CToolBar m_wndToolBar;
// 生成された、メッセージ割り当て関数
protected:
afx_msg void OnUpdateUiShmStart(CCmdUI* pCmdUI);
afx_msg void OnUpdateUiShmStop(CCmdUI* pCmdUI);
afx_msg void OnUpdateUiShmSetting(CCmdUI* pCmdUI);
afx_msg void OnUpdateUiEditCopy(CCmdUI* pCmdUI);
afx_msg void OnUpdateUiLogSave(CCmdUI* pCmdUI);
afx_msg void OnUpdateUiLogClear(CCmdUI* pCmdUI);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnInitMenu(CMenu* pMenu);
DECLARE_MESSAGE_MAP()
};