PROGCTRL.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // ProgCtrl.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CProgCtrlPage dialog
  14. #ifndef INC_PROGCTRL_H
  15. #define INC_PROGCTRL_H
  16. class CProgCtrlPage : public CPropertyPage
  17. {
  18. DECLARE_DYNCREATE(CProgCtrlPage)
  19. // Construction
  20. public:
  21. CProgCtrlPage();
  22. ~CProgCtrlPage();
  23. // Dialog Data
  24. //{{AFX_DATA(CProgCtrlPage)
  25. enum { IDD = IDD_PROGCTRL };
  26. int     m_iDelta;
  27. UINT    m_uiStep;
  28. UINT    m_uiRangeFrom;
  29. UINT    m_uiPos;
  30. UINT    m_uiRangeTo;
  31. BOOL    m_bVertical;
  32. BOOL    m_bSmooth;
  33. //}}AFX_DATA
  34. CProgressCtrl   m_Progress;
  35. // Overrides
  36. // ClassWizard generate virtual function overrides
  37. //{{AFX_VIRTUAL(CProgCtrlPage)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. virtual BOOL OnInitDialog();
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. // Generated message map functions
  45. //{{AFX_MSG(CProgCtrlPage)
  46. afx_msg void OnProgressStepit();
  47. afx_msg void OnSetpos();
  48. afx_msg void OnProgressSetdelta();
  49. afx_msg void OnFrom();
  50. afx_msg void OnTo();
  51. afx_msg void OnStep();
  52. afx_msg void OnStyleChange();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. #endif