📄 simuflatview.h
字号:
// SimuFlatView.h : interface of the CSimuFlatView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_SIMUFLATVIEW_H__9C65E3C6_16B9_4C7A_9788_2C4476D8EE9E__INCLUDED_)
#define AFX_SIMUFLATVIEW_H__9C65E3C6_16B9_4C7A_9788_2C4476D8EE9E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSimuFlatView : public CView
{
protected: // create from serialization only
CSimuFlatView();
DECLARE_DYNCREATE(CSimuFlatView)
void DrawGrid(CDC *pDC,int x,int y,int cx,int cy,COLORREF bcolorCell);
void DrawData(CDC *pDC,int x,int y,int cx,int cy,CString str);
void DrawCurv(CDC *pDC,COLORREF bcolorCell);
int nCols,nRows;
int nCellWidth;
int nCellHeight;
int ox1,oy1,cx1,cy1,ox2,oy2,cx2,cy2;
BOOL Running;
// Attributes
public:
CSimuFlatDoc* GetDocument();
UINT m_CurrentTool;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSimuFlatView)
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 ~CSimuFlatView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CSimuFlatView)
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnStart();
afx_msg void OnStop();
afx_msg void OnManul();
afx_msg void OnAuto();
afx_msg void OnSp();
afx_msg void OnPid();
afx_msg void OnUpdateStart(CCmdUI* pCmdUI);
afx_msg void OnUpdateAuto(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in SimuFlatView.cpp
inline CSimuFlatDoc* CSimuFlatView::GetDocument()
{ return (CSimuFlatDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SIMUFLATVIEW_H__9C65E3C6_16B9_4C7A_9788_2C4476D8EE9E__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -