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