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

  1. // AllControlsSheet.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. // CAllControlsSheet
  16.  
  17. #include "listcpg.h"
  18. #include "treecpg.h"
  19. #include "toolpage.h"
  20. #include "spinctrl.h"
  21. #include "slidctrl.h"
  22. #include "progctrl.h"
  23. #include "animctrl.h"
  24.  
  25. class CAllControlsSheet : public CPropertySheet
  26. {
  27.     DECLARE_DYNAMIC(CAllControlsSheet)
  28.  
  29. // Construction
  30. public:
  31.     CAllControlsSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  32.     CAllControlsSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  33.  
  34. protected:
  35.     void AddControlPages(void);
  36.  
  37. // Attributes
  38. public:
  39.  
  40.     CListCtrlPage        m_listctrlpage;
  41.     CTreeCtrlPage        m_treectrlpage;
  42.     CToolBarCtrlPage    m_toolbarpage;
  43.     CProgCtrlPage        m_progctrlpage;
  44.     CSliderCtrlPage        m_sliderctrlpage;
  45.     CSpinCtrlPage        m_spinctrlpage;
  46.     CAnimateCtrlPage    m_animctrlpage;
  47.  
  48. // Operations
  49. public:
  50.  
  51. // Overrides
  52.     // ClassWizard generated virtual function overrides
  53.     //{{AFX_VIRTUAL(CAllControlsSheet)
  54.     //}}AFX_VIRTUAL
  55.  
  56. // Implementation
  57. public:
  58.     virtual ~CAllControlsSheet();
  59.     virtual BOOL OnInitDialog();
  60.  
  61.     // Generated message map functions
  62. protected:
  63.  
  64.     HICON m_hIcon;
  65.  
  66.     //{{AFX_MSG(CAllControlsSheet)
  67.     afx_msg HCURSOR OnQueryDragIcon();
  68.     //}}AFX_MSG
  69.     DECLARE_MESSAGE_MAP()
  70. };
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73.