pcm120view.h
来自「使用vc++技术实现光电机串口通信管理程序」· C头文件 代码 · 共 68 行
H
68 行
// PCM120View.h : interface of the CPCM120View class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_PCM120VIEW_H__90466287_D0A6_4456_A8AF_BA79FCF4B143__INCLUDED_)
#define AFX_PCM120VIEW_H__90466287_D0A6_4456_A8AF_BA79FCF4B143__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "PCM120Doc.h"
class CPCM120View : public CView
{
protected: // create from serialization only
CPCM120View();
DECLARE_DYNCREATE(CPCM120View)
// Attributes
public:
CPCM120Doc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPCM120View)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CPCM120View();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CPCM120View)
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in PCM120View.cpp
inline CPCM120Doc* CPCM120View::GetDocument()
{ return (CPCM120Doc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PCM120VIEW_H__90466287_D0A6_4456_A8AF_BA79FCF4B143__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?