forked from kuran-kuran/MZDiskExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeftView.h
68 lines (54 loc) · 1.87 KB
/
LeftView.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
// LeftView.h : CLeftView クラスの宣言およびインターフェイスの定義をします。
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_LEFTVIEW_H__322DF586_960F_4B5F_8072_4821AC98EBBB__INCLUDED_)
#define AFX_LEFTVIEW_H__322DF586_960F_4B5F_8072_4821AC98EBBB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMZDiskExplorerDoc;
class CLeftView : public CTreeView
{
protected: // シリアライズ機能のみから作成します。
CLeftView();
DECLARE_DYNCREATE(CLeftView)
// アトリビュート
public:
CMZDiskExplorerDoc* GetDocument();
// オペレーション
public:
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
//{{AFX_VIRTUAL(CLeftView)
public:
virtual void OnDraw(CDC* pDC); // このビューを描画する際にオーバーライドされます。
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnInitialUpdate(); // 構築後の最初の1度だけ呼び出されます。
//}}AFX_VIRTUAL
// インプリメンテーション
public:
virtual ~CLeftView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(CLeftView)
afx_msg void OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // LeftView.cpp ファイルがデバッグ環境の時使用されます。
inline CMZDiskExplorerDoc* CLeftView::GetDocument()
{ return (CMZDiskExplorerDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_LEFTVIEW_H__322DF586_960F_4B5F_8072_4821AC98EBBB__INCLUDED_)