📄 terminalview.h
字号:
// TerminalView.h : interface of the CTerminalView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_TERMINALVIEW_H__831056AD_ED11_11D4_8441_0000F4C08C6C__INCLUDED_)
#define AFX_TERMINALVIEW_H__831056AD_ED11_11D4_8441_0000F4C08C6C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MainFrm.h"
class CTerminalView : public CEditView
{
protected: // create from serialization only
CTerminalView();
DECLARE_DYNCREATE(CTerminalView)
// Attributes
public:
CTerminalDoc* GetDocument();
// 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:
//CMyStatusBar m_StatusBar;
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 void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnViewSend();
afx_msg void OnUpdateViewSend(CCmdUI* pCmdUI);
//}}AFX_MSG
afx_msg LRESULT OnCommNotify(WPARAM wParam,LPARAM lParam);
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__831056AD_ED11_11D4_8441_0000F4C08C6C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -