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

📄 datanodeview.h

📁 组态数据结点,工控数据结构编程学习资料,源码或其他好源码或编程学习资料
💻 H
字号:
// SimpleListView.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CDataNodeView view

class CDataNodeView : public CListView
{
protected:
	CDataNodeView();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CDataNodeView)

// Attributes
public:

// Operations
public:
	CDataNodeDoc* GetDocument();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDataNodeView)
	public:
	virtual void OnInitialUpdate();
	protected:
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	//}}AFX_VIRTUAL

// Implementation

public:
	//void DisplayClassInfo(const HTREEITEM);
	//void DisplayTypeInfo(const HTREEITEM);
	//void DisplayAnimalInfo(const DWORD);
	//==============================================================//
	virtual void EraseList();

	virtual void DeviceNodeSerialInstaller(/*const HTREEITEM*/);
	virtual void DeviceNodeNetworkInstaller(/*const HTREEITEM*/);
	virtual void DeviceNodeControllerInstaller(/*const HTREEITEM*/);
	virtual void DeviceNodeOPCServerInstaller(/*const HTREEITEM*/);
	virtual void DeviceNodeDDEInstaller(/*const HTREEITEM*/);
	
	virtual void DataNodeGeneralBuilder(/*const HTREEITEM*/);
	virtual void DataNodeRecipeBuilder(/*const HTREEITEM*/);
	virtual void DataNodeAlarmBuilder(/*const HTREEITEM*/);

	virtual void EnviromentForDrawing(/*const HTREEITEM*/);
	virtual void EnviromentForRuntime(/*const HTREEITEM*/);


protected:
	virtual ~CDataNodeView();
	void DisplayChildren(char **, const HTREEITEM);

#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
protected:
	//{{AFX_MSG(CDataNodeView)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
#ifndef _DEBUG  // debug version in SimpleTreeView.cpp
inline CDataNodeDoc* CDataNodeView::GetDocument()
   { return (CDataNodeDoc*)m_pDocument; }
#endif

⌨️ 快捷键说明

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