home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _CB0103F05175473A9D2CE3FB5161D882 < prev    next >
Encoding:
Text File  |  2004-06-28  |  1.3 KB  |  61 lines

  1.  
  2. /******************************************************************
  3.  
  4. $Archive: $
  5. $Workfile: $
  6. $Author: $
  7. $Date: $
  8. $Revision: $
  9.  
  10. *******************************************************************/
  11.  
  12. #if !defined (__MyPropertyPage3_h)
  13. #define __MyPropertyPage3_h
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMyPropertyPage3 dialog
  17.  
  18. class CMyPropertyPage3 : public CPropertyPage
  19. {
  20.     DECLARE_DYNCREATE(CMyPropertyPage3)
  21.  
  22. // Construction
  23. public:
  24.     CMyPropertyPage3();
  25.     ~CMyPropertyPage3();
  26.  
  27. // Dialog Data
  28.     //{{AFX_DATA(CMyPropertyPage3)
  29.     enum { IDD = IDD_PROPPAGE3 };
  30.     CProgressCtrl    m_progress1;
  31.     CSliderCtrl    m_slider2;
  32.     CSliderCtrl    m_slider1;
  33.     CTabCtrl    m_ctlTab4;
  34.     CTabCtrl    m_ctlTab1;
  35.     BOOL    m_sample_check;
  36.     //}}AFX_DATA
  37.  
  38.  
  39. // Overrides
  40.     // ClassWizard generate virtual function overrides
  41.     //{{AFX_VIRTUAL(CMyPropertyPage3)
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.     // Generated message map functions
  49.     //{{AFX_MSG(CMyPropertyPage3)
  50.     virtual BOOL OnInitDialog();
  51.     afx_msg void OnTimer(UINT nIDEvent);
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54.  
  55. };
  56.  
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59.  
  60. #endif // __MyPropertyPage3_h
  61.