quxianview.h

来自「基于s3c2440 的TCD132D驱动和数据采集并把采集的数据绘制曲线」· C头文件 代码 · 共 72 行

H
72
字号
// quxianView.h : interface of the CQuxianView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_QUXIANVIEW_H__616F296D_91A9_45A9_A697_632330E492DE__INCLUDED_)
#define AFX_QUXIANVIEW_H__616F296D_91A9_45A9_A697_632330E492DE__INCLUDED_

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

class CQuxianView : public CView
{
protected: // create from serialization only
	CQuxianView();
	DECLARE_DYNCREATE(CQuxianView)

// Attributes
public:
	CQuxianDoc* GetDocument();

// Operations
public:

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

// Implementation
public:
	unsigned long p[2002];
	unsigned int usConData;
	double m_adval;
	BOOL bShowLineA;
	BOOL k;
	
	virtual ~CQuxianView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	HICON m_hIcon;
	//{{AFX_MSG(CQuxianView)
	afx_msg void OnHt();
	afx_msg void OnCcd();
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in quxianView.cpp
inline CQuxianDoc* CQuxianView::GetDocument()
   { return (CQuxianDoc*)m_pDocument; }
#endif

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

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_QUXIANVIEW_H__616F296D_91A9_45A9_A697_632330E492DE__INCLUDED_)

⌨️ 快捷键说明

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