-
Notifications
You must be signed in to change notification settings - Fork 2
/
TreeList.h
87 lines (72 loc) · 2.36 KB
/
TreeList.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
#if !defined(AFX_TREELIST_H__FA3CF1B7_BF63_431D_A0D2_81B7777C67D4__INCLUDED_)
#define AFX_TREELIST_H__FA3CF1B7_BF63_431D_A0D2_81B7777C67D4__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// TreeList.h : header file
//
class CHustBaseDoc;
/////////////////////////////////////////////////////////////////////////////
// CTreeList view
class CTreeList : public CTreeView
{
protected:
CTreeList(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CTreeList)
// Attributes
public:
CHustBaseDoc* GetDocument();
// CString path;
// Operations
public:
bool PathFlag;
public:
static bool openorNot;//=false;
void PopulateTree();
// BOOL LocateAndInsert(const CAnimalInfo &, const POSITION);
//µÈ´ý
void DeleteSelection();
void EditSelection();
void ModifySelection();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTreeList)
public:
virtual void OnInitialUpdate();
protected:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CTreeList();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
protected:
HTREEITEM InsertNode(const HTREEITEM, const CString &str, const DWORD);
void InsertDBNodes();
//{{AFX_MSG(CTreeList)
afx_msg void OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg int OnCreate(LPCREATESTRUCT lpcs);
afx_msg void OnSize(UINT nType, int cx, int cy);
// afx_msg void OnOpenDB();
//}}AFX_MSG
// HTREEITEM FindNode(const HTREEITEM, const CString &) const;
// HTREEITEM InsertNode(const HTREEITEM, const CString &str, const DWORD);
// void ModifyTable(const HTREEITEM selectedNode, const DWORD itemData);
// void ModifyType(const HTREEITEM selectedNode, const DWORD itemData);
DECLARE_MESSAGE_MAP()
private:
CBitmap bm;
};
#ifndef _DEBUG // debug version in TreeView.cpp
inline CHustBaseDoc* CTreeList::GetDocument()
{ return (CHustBaseDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TREELIST_H__FA3CF1B7_BF63_431D_A0D2_81B7777C67D4__INCLUDED_)