ResizableSheet.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #if !defined(AFX_RESIZABLESHEET_H__INCLUDED_)
  2. #define AFX_RESIZABLESHEET_H__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. /////////////////////////////////////////////////////////////////////////////
  7. //
  8. // Copyright (C) 2000-2002 by Paolo Messina
  9. // (http://www.geocities.com/ppescher - ppescher@yahoo.com)
  10. //
  11. // The contents of this file are subject to the Artistic License (the "License").
  12. // You may not use this file except in compliance with the License. 
  13. // You may obtain a copy of the License at:
  14. // http://www.opensource.org/licenses/artistic-license.html
  15. //
  16. // If you find this code useful, credits would be nice!
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #include "ResizableLayout.h"
  20. #include "ResizableGrip.h"
  21. #include "ResizableMinMax.h"
  22. #include "ResizableState.h"
  23. /////////////////////////////////////////////////////////////////////////////
  24. // ResizableSheet.h : header file
  25. //
  26. class CResizableSheet : public CPropertySheet, public CResizableLayout,
  27. public CResizableGrip, public CResizableMinMax,
  28. public CResizableState
  29. {
  30. DECLARE_DYNAMIC(CResizableSheet)
  31. // Construction
  32. public:
  33. CResizableSheet();
  34. CResizableSheet(UINT nIDCaption, CWnd *pParentWnd = NULL, UINT iSelectPage = 0);
  35. CResizableSheet(LPCTSTR pszCaption, CWnd *pParentWnd = NULL, UINT iSelectPage = 0);
  36. // Attributes
  37. private:
  38. // support for temporarily hiding the grip
  39. DWORD m_dwGripTempState;
  40. // flags
  41. BOOL m_bEnableSaveRestore;
  42. BOOL m_bRectOnly;
  43. BOOL m_bSavePage;
  44. // layout vars
  45. CSize m_sizePageTL, m_sizePageBR;
  46. // internal status
  47. CString m_sSection; // section name (identifies a parent window)
  48. // Operations
  49. public:
  50. // Overrides
  51. // ClassWizard generated virtual function overrides
  52. //{{AFX_VIRTUAL(CResizableSheet)
  53. public:
  54. virtual BOOL OnInitDialog();
  55. //}}AFX_VIRTUAL
  56. protected:
  57. // Implementation
  58. public:
  59. void RefreshLayout();
  60. virtual ~CResizableSheet();
  61. // used internally
  62. private:
  63. void PresetLayout();
  64. void PrivateConstruct();
  65. void SavePage();
  66. void LoadPage();
  67. BOOL IsWizard() { return (m_psh.dwFlags & PSH_WIZARD); }
  68. // callable from derived classes
  69. protected:
  70. // section to use in app's profile
  71. void EnableSaveRestore(LPCTSTR pszSection, BOOL bRectOnly = FALSE,
  72. BOOL bWithPage = FALSE);
  73. int GetMinWidth(); // minimum width to display all buttons
  74. virtual CWnd* GetResizableWnd()
  75. {
  76. // make the layout know its parent window
  77. return this;
  78. };
  79. // Generated message map functions
  80. protected:
  81. virtual BOOL ArrangeLayoutCallback(LayoutInfo& layout);
  82. //{{AFX_MSG(CResizableSheet)
  83. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  84. afx_msg void OnSize(UINT nType, int cx, int cy);
  85. afx_msg void OnDestroy();
  86. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  87. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  88. //}}AFX_MSG
  89. afx_msg BOOL OnPageChanging(NMHDR* pNotifyStruct, LRESULT* pResult);
  90. DECLARE_MESSAGE_MAP()
  91. };
  92. /////////////////////////////////////////////////////////////////////////////
  93. #endif // AFX_RESIZABLESHEET_H__INCLUDED_