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

对话框与窗口

开发平台:

Visual C++

  1. //{{AFX_INCLUDES()
  2. #include "msflexgrid.h"
  3. //}}AFX_INCLUDES
  4. #if !defined(AFX_RTFORM_H__D83979B6_F56A_11D3_85D3_0008C777FFEE__INCLUDED_)
  5. #define AFX_RTFORM_H__D83979B6_F56A_11D3_85D3_0008C777FFEE__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // RTForm.h : header file
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CRTForm form view
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>
  15. #endif
  16. #include "RTSlider.h"
  17. class CRTForm : public CFormView
  18. {
  19. protected:
  20. CRTForm();           // protected constructor used by dynamic creation
  21. DECLARE_DYNCREATE(CRTForm)
  22. // Form Data
  23. public:
  24. //{{AFX_DATA(CRTForm)
  25. enum { IDD = IDD_RTFORM };
  26. CRTSlider m_SliderPage;
  27. CMSFlexGrid m_RTGrid;
  28. //}}AFX_DATA
  29. // Attributes
  30. public:
  31. CRect m_sRect;
  32. // Operations
  33. public:
  34. CWnd* GetRTDemoView();
  35. void  MoveWindows();
  36. void  InitialSlider(int nMin, int nMax, int nPage, int nPos, BOOL nFlag = TRUE);
  37. void  RedrawGrid();
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CRTForm)
  41. public:
  42. virtual void OnInitialUpdate();
  43. protected:
  44. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. protected:
  48. virtual ~CRTForm();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. // Generated message map functions
  54. //{{AFX_MSG(CRTForm)
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_RTFORM_H__D83979B6_F56A_11D3_85D3_0008C777FFEE__INCLUDED_)