PasRTDatView.h
上传用户:shtiemo
上传日期:2017-12-29
资源大小:163k
文件大小:2k
开发平台:

Visual C++

  1. // PasRTDatView.h : interface of the CPasRTDatView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CPasRTDatView : public CView
  5. {
  6. protected: // create from serialization only
  7. CPasRTDatView();
  8. DECLARE_DYNCREATE(CPasRTDatView)
  9. // Attributes
  10. public:
  11. CPasRTDatDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CPasRTDatView)
  17. public:
  18. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. protected:
  21. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  22. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  23. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CPasRTDatView();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CPasRTDatView)
  36. afx_msg void OnRtdatAutosave();
  37. afx_msg void OnUpdateRtdatAutosave(CCmdUI* pCmdUI);
  38. afx_msg void OnRtdatReadrtdat();
  39. afx_msg void OnRtdatSavertdat();
  40. afx_msg void OnRtdatSendrtdat();
  41. afx_msg void OnTimer(UINT nIDEvent);
  42. afx_msg void OnDestroy();
  43. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44. afx_msg void OnRtdatAutoread();
  45. afx_msg void OnUpdateRtdatAutoread(CCmdUI* pCmdUI);
  46. afx_msg void OnRtdatSettime();
  47. afx_msg void OnRtdatSetperiod();
  48. afx_msg void OnRtdatRtumea();
  49. afx_msg void OnUpdateRtdatRtumea(CCmdUI* pCmdUI);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. #ifndef _DEBUG  // debug version in PasRTDatView.cpp
  54. inline CPasRTDatDoc* CPasRTDatView::GetDocument()
  55.    { return (CPasRTDatDoc*)m_pDocument; }
  56. #endif
  57. /////////////////////////////////////////////////////////////////////////////