home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / cmnctrl.pak / PROGCTRL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  63 lines

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