home *** CD-ROM | disk | FTP | other *** search
- // AllControlsSheet.h : header file
- //
-
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1995 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
-
- /////////////////////////////////////////////////////////////////////////////
- // CAllControlsSheet
-
- #include "listcpg.h"
- #include "treecpg.h"
- #include "toolpage.h"
- #include "spinctrl.h"
- #include "slidctrl.h"
- #include "progctrl.h"
- #include "animctrl.h"
-
- class CAllControlsSheet : public CPropertySheet
- {
- DECLARE_DYNAMIC(CAllControlsSheet)
-
- // Construction
- public:
- CAllControlsSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
- CAllControlsSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
-
- protected:
- void AddControlPages(void);
-
- // Attributes
- public:
-
- CListCtrlPage m_listctrlpage;
- CTreeCtrlPage m_treectrlpage;
- CToolBarCtrlPage m_toolbarpage;
- CProgCtrlPage m_progctrlpage;
- CSliderCtrlPage m_sliderctrlpage;
- CSpinCtrlPage m_spinctrlpage;
- CAnimateCtrlPage m_animctrlpage;
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAllControlsSheet)
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CAllControlsSheet();
- virtual BOOL OnInitDialog();
-
- // Generated message map functions
- protected:
-
- HICON m_hIcon;
-
- //{{AFX_MSG(CAllControlsSheet)
- afx_msg HCURSOR OnQueryDragIcon();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-