RTDemoView.h
上传用户:mgf822
上传日期:2013-10-03
资源大小:133k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // RTDemoView.h : interface of the CRTDemoView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RTDemoVIEW_H__12551283_E7E7_11D3_85BC_0008C777FFEE__INCLUDED_)
  5. #define AFX_RTDemoVIEW_H__12551283_E7E7_11D3_85BC_0008C777FFEE__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "RealTime.h"
  10. #include "RTSlider.h"
  11. #include "random.h"
  12. class CRTDemoView : public CView
  13. {
  14. // just want to save time using temporary variables
  15. int    i, m, n;
  16. double m_dY, m_dValue;
  17. protected: // create from serialization only
  18. CRTDemoView();
  19. DECLARE_DYNCREATE(CRTDemoView)
  20. // Attributes
  21. public:
  22. CRTDemoDoc* GetDocument();
  23. CRealTime  m_Graph;
  24. RndGen Rn;
  25. DWORD  m_nStartTime;
  26. int    m_nTimeSpan;
  27. DWORD  MaxSeconds;
  28. DWORD  mSec;
  29. double CyclesPerSec;
  30. DWORD  CurrentTime;
  31. BOOL   m_bCanSize;
  32. CRTSlider m_SliderTick;
  33. CRect   m_SRect;
  34. int   m_sSize;
  35. int   m_sTicks;
  36. BOOL   m_bFlag;
  37. BOOL   CanTicks;
  38. DWORD   m_nTicks;
  39. BOOL   m_bRealTime;
  40. BOOL   m_bTimerOn;
  41. // Operations
  42. public:
  43. void DrawFrame(CRect& rect, COLORREF cr, const char* Title);
  44. void Redraw();
  45. void SetData(int i);
  46. void RefreshGraph();
  47. RECT& GetGraphRect();
  48. CWnd* GetRTForm();
  49. void  ResetSlider(int Ticks);
  50. void  GetYValues(int Index);
  51. void  TicksRanges();
  52. void  RTKillTimer();
  53. void  RTRestoreTimer();
  54. void  RemoveALine(int Index);
  55. BOOL  InsertALine(int index, COLORREF color, double low, double high, 
  56.   const char* name, const char* desc, const char* unit, 
  57.   double min, double max, int style, int width);
  58. void  SaveAModifiedLine();
  59. void  GetColorAndName(int index, COLORREF& cr, CString& name);
  60. // Overrides
  61. // ClassWizard generated virtual function overrides
  62. //{{AFX_VIRTUAL(CRTDemoView)
  63. public:
  64. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  65. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  66. virtual void OnInitialUpdate();
  67. protected:
  68. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  69. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  70. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  71. //}}AFX_VIRTUAL
  72. // Implementation
  73. public:
  74. SYSTEMTIME lpSystemTime;
  75. virtual ~CRTDemoView();
  76. #ifdef _DEBUG
  77. virtual void AssertValid() const;
  78. virtual void Dump(CDumpContext& dc) const;
  79. #endif
  80. protected:
  81. CString m_sString;
  82. DWORD   MillSeconds;
  83. int SpeedLevel;
  84. // Generated message map functions
  85. protected:
  86. afx_msg void OnContextMenu(CWnd*, CPoint point);
  87. //{{AFX_MSG(CRTDemoView)
  88. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  89. afx_msg void OnTimer(UINT nIDEvent);
  90. afx_msg void OnDestroy();
  91. afx_msg void OnSize(UINT nType, int cx, int cy);
  92. afx_msg void OnSpeedTimerspeed();
  93. afx_msg void OnUpdateSpeedTimerspeed(CCmdUI* pCmdUI);
  94. //}}AFX_MSG
  95. DECLARE_MESSAGE_MAP()
  96. };
  97. #ifndef _DEBUG  // debug version in RTDemoView.cpp
  98. inline CRTDemoDoc* CRTDemoView::GetDocument()
  99.    { return (CRTDemoDoc*)m_pDocument; }
  100. #endif
  101. /////////////////////////////////////////////////////////////////////////////
  102. //{{AFX_INSERT_LOCATION}}
  103. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  104. #endif // !defined(AFX_RTDemoVIEW_H__12551283_E7E7_11D3_85BC_0008C777FFEE__INCLUDED_)