myview.h

来自「故障诊断工作涉及的领域相当广泛」· C头文件 代码 · 共 63 行

H
63
字号
#if !defined(AFX_MYVIEW_H__CB1E5F86_EF0C_4E2C_A648_14E51C5CB993__INCLUDED_)
#define AFX_MYVIEW_H__CB1E5F86_EF0C_4E2C_A648_14E51C5CB993__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// myview.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// myview view
#include "richtestDoc.h"
#include "mydata.h"
class myview : public CScrollView
{
protected:
	myview();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(myview)

// Attributes
public:

	int matrix_draw(CDC* pDC,int num,mwArray* in,int hight,char *name,int length);
	int mydata_draw(CDC* pDC,mydata* data,int hight);
// Operations
public:
	void node_info_out(char *info);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(myview)
	protected:
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view
	virtual void OnInitialUpdate();     // first time after construct
	//}}AFX_VIRTUAL

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

	// Generated message map functions
	//{{AFX_MSG(myview)
	afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
	afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_MYVIEW_H__CB1E5F86_EF0C_4E2C_A648_14E51C5CB993__INCLUDED_)

⌨️ 快捷键说明

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