PROPSHT.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // AllControlsSheet.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAllControlsSheet
  14. #include "progctrl.h"
  15. #include "slidctrl.h"
  16. #include "spinctrl.h"
  17. class CAllControlsSheet : public CPropertySheet
  18. {
  19. DECLARE_DYNAMIC(CAllControlsSheet)
  20. // Construction
  21. public:
  22. CAllControlsSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  23. CAllControlsSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  24. protected:
  25. void AddControlPages(void);
  26. // Attributes
  27. public:
  28. CProgCtrlPage       m_progctrlpage;
  29. CSliderCtrlPage     m_sliderctrlpage;
  30. CSpinCtrlPage       m_spinctrlpage;
  31. // Operations
  32. public:
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CAllControlsSheet)
  36. public:
  37. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CAllControlsSheet();
  42. virtual BOOL OnInitDialog();
  43. // Generated message map functions
  44. protected:
  45. HICON m_hIcon;
  46. //{{AFX_MSG(CAllControlsSheet)
  47. afx_msg HCURSOR OnQueryDragIcon();
  48. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////