-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainFrm.h
73 lines (57 loc) · 1.95 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
// MainFrm.h : CMainFrame クラスの宣言およびインターフェイスの定義をします。
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAINFRM_H__676DBE57_051D_47AA_B2C3_EA0DF56CE810__INCLUDED_)
#define AFX_MAINFRM_H__676DBE57_051D_47AA_B2C3_EA0DF56CE810__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMZDiskExplorerView;
class CMainFrame : public CFrameWnd
{
protected: // シリアライズ機能のみから作成します。
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// アトリビュート
protected:
CSplitterWnd m_wndSplitter;
public:
// オペレーション
public:
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
//{{AFX_VIRTUAL(CMainFrame)
public:
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
//}}AFX_VIRTUAL
// インプリメンテーション
public:
void PutStatusBarSize( LPCTSTR str );
virtual ~CMainFrame();
CMZDiskExplorerView* GetRightPane();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // コントロール バー用メンバ
CToolBar m_wndToolBar;
CStatusBar m_wndStatusBar;
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(CMainFrame)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
// メモ - ClassWizard はこの位置にメンバ関数を追加または削除します。
// この位置に生成されるコードを編集しないでください。
//}}AFX_MSG
afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
afx_msg void OnViewStyle(UINT nCommandID);
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnClose();
afx_msg void OnDestroy();
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_MAINFRM_H__676DBE57_051D_47AA_B2C3_EA0DF56CE810__INCLUDED_)