?? 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 + -