home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 11_Cabinet / PROPSHT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.8 KB  |  67 lines

  1. // AllControlsSheet.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 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. // CAllControlsSheet
  16.  
  17. #include "progctrl.h"
  18. #include "slidctrl.h"
  19. #include "spinctrl.h"
  20.  
  21. class CAllControlsSheet : public CPropertySheet
  22. {
  23.     DECLARE_DYNAMIC(CAllControlsSheet)
  24.  
  25. // Construction
  26. public:
  27.     CAllControlsSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  28.     CAllControlsSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  29.  
  30. protected:
  31.     void AddControlPages(void);
  32.  
  33. // Attributes
  34. public:
  35.  
  36.     CProgCtrlPage       m_progctrlpage;
  37.     CSliderCtrlPage     m_sliderctrlpage;
  38.     CSpinCtrlPage       m_spinctrlpage;
  39. // Operations
  40. public:
  41.  
  42. // Overrides
  43.     // ClassWizard generated virtual function overrides
  44.     //{{AFX_VIRTUAL(CAllControlsSheet)
  45.     public:
  46.     virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. public:
  51.     virtual ~CAllControlsSheet();
  52.     virtual BOOL OnInitDialog();
  53.  
  54.     // Generated message map functions
  55. protected:
  56.  
  57.     HICON m_hIcon;
  58.  
  59.     //{{AFX_MSG(CAllControlsSheet)
  60.     afx_msg HCURSOR OnQueryDragIcon();
  61.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  62.     //}}AFX_MSG
  63.     DECLARE_MESSAGE_MAP()
  64. };
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67.