⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wzdtview.h

📁 The programs and applications on this disk have been carefully tested, but are not guaranteed for
💻 H
字号:
// WzdTView.h : interface of the CWzdTreeView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined WZDTREEVIEW_H
#define WZDTREEVIEW_H

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#include <afxcview.h>

class CWzdTreeView : public CTreeView
{
protected: // create from serialization only
	CWzdTreeView();
	DECLARE_DYNCREATE(CWzdTreeView)

// Attributes
public:
	CWzdDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWzdTreeView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CWzdTreeView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CWzdTreeView)
	afx_msg void OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CImageList m_ImageList;
	void AddBranch(HTREEITEM hTreeItem, CList<CWzdInfo*,CWzdInfo*> *pList);
	HTREEITEM AddLeaf(HTREEITEM hTreeItem, CWzdInfo *pInfo);
	HTREEITEM FindTreeItem(HTREEITEM hTreeItem, long nObjectID);
};

#ifndef _DEBUG  // debug version in WzdTView.cpp
inline CWzdDoc* CWzdTreeView::GetDocument()
   { return (CWzdDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -