ViewPropertySheet.h
上传用户:sisi1999
上传日期:2007-01-02
资源大小:39k
文件大小:2k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. #if !defined(AFX_VIEWPROPERTYSHEET_H__C193DDD2_9033_11D2_B983_00105A072D03__INCLUDED_)
  2. #define AFX_VIEWPROPERTYSHEET_H__C193DDD2_9033_11D2_B983_00105A072D03__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ViewPropertySheet.h : header file
  7. //
  8. #define PS_Y_OFFSET 3 // distance from bottom control to prop sheet
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CViewPropertySheet
  11. class CViewPropertySheet : public CPropertySheet
  12. {
  13. DECLARE_DYNAMIC(CViewPropertySheet)
  14. // Construction
  15. public:
  16. CViewPropertySheet();
  17. CViewPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  18. CViewPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  19. ~CViewPropertySheet();
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CViewPropertySheet)
  27. public:
  28. virtual BOOL OnInitDialog();
  29. virtual BOOL PreTranslateMessage(MSG* pMsg);
  30. protected:
  31. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. BOOL m_Center;
  36. CRect m_MinPageRect;
  37. CRect m_MaxPageRect;
  38. CRect m_rectOriginal; // original, optimized size
  39.   BOOL m_bOKToLeaveTab;
  40.   int m_nLastActive;
  41. virtual BOOL Create(CWnd* pParentWnd, DWORD dwStyle = (DWORD)-1, DWORD dwExStyle = 0);
  42. virtual void AdjustPages();
  43. virtual void CenterControls(BOOL bCenter = TRUE);
  44. virtual void AllowPageChange(BOOL bAllowPageChange = TRUE);
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CViewPropertySheet)
  48. afx_msg void OnSize(UINT nType, int cx, int cy);
  49. //}}AFX_MSG
  50. afx_msg LRESULT OnAdjust(WPARAM wParam, LPARAM lParam);
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_VIEWPROPERTYSHEET_H__C193DDD2_9033_11D2_B983_00105A072D03__INCLUDED_)