📄 dspctlview.h
字号:
// DspCtlView.h : interface of the CDspCtlView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_DSPCTLVIEW_H__87AC5CA4_66ED_11D5_9715_E305717F1B53__INCLUDED_)
#define AFX_DSPCTLVIEW_H__87AC5CA4_66ED_11D5_9715_E305717F1B53__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "..\plot\clPlot.h"
class CDlgPara;
#include "AnimateBtn.h"
//#define WM_COMMNOTIFY WM_USER+10
class CDspCtlView : public CView
{
protected: // create from serialization only
CDspCtlView();
DECLARE_DYNCREATE(CDspCtlView)
// Attributes
public:
CDspCtlDoc* GetDocument();
// Operations
public:
CWinThread* m_pThread; // 代表辅助线程
clPlot m_Plot;
BOOL canSize;
CTime m_StartTime;
BOOL bStart;
CDlgPara* mydlgpara;
CAnimateBtn * btn;
// int i;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDspCtlView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual void OnInitialUpdate();
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
// bool RunState;
virtual ~CDspCtlView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CDspCtlView)
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg void OnStart();
afx_msg void OnSetpara();
afx_msg void OnStop();
afx_msg void OnDrawline();
afx_msg void OnUpdateStart(CCmdUI* pCmdUI);
afx_msg void OnUpdateStop(CCmdUI* pCmdUI);
afx_msg LRESULT OnCommNotify(WPARAM wparam,LPARAM lparam);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in DspCtlView.cpp
inline CDspCtlDoc* CDspCtlView::GetDocument()
{ return (CDspCtlDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DSPCTLVIEW_H__87AC5CA4_66ED_11D5_9715_E305717F1B53__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -