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

📄 terminalview.h

📁 一个操纵RS232端口的程序
💻 H
字号:
// TerminalView.h : interface of the CTerminalView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_TERMINALVIEW_H__FA4B9F7D_5478_4CDC_AC07_4D2BD66CF304__INCLUDED_)
#define AFX_TERMINALVIEW_H__FA4B9F7D_5478_4CDC_AC07_4D2BD66CF304__INCLUDED_

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


class CTerminalView : public CEditView
{
protected: // create from serialization only
	CTerminalView();
	DECLARE_DYNCREATE(CTerminalView)

// Attributes
public:
	CTerminalDoc* GetDocument();
	int m_iViewMode;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTerminalView)
	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 ~CTerminalView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CTerminalView)
	afx_msg LRESULT OnCommNotify(WPARAM wParam, LPARAM lParam);
	afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
	afx_msg void OnViewCate();
	afx_msg void OnUpdateViewCate(CCmdUI* pCmdUI);
	afx_msg void OnViewFull();
	afx_msg void OnUpdateViewFull(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in TerminalView.cpp
inline CTerminalDoc* CTerminalView::GetDocument()
   { return (CTerminalDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_TERMINALVIEW_H__FA4B9F7D_5478_4CDC_AC07_4D2BD66CF304__INCLUDED_)

⌨️ 快捷键说明

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