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

多媒体编程

开发平台:

Visual C++

  1. #if !defined(AFX_RESIZABLEDIALOG_H__INCLUDED_)
  2. #define AFX_RESIZABLEDIALOG_H__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ResizableDialog.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. //
  10. // Copyright (C) 2000-2002 by Paolo Messina
  11. // (http://www.geocities.com/ppescher - ppescher@yahoo.com)
  12. //
  13. // The contents of this file are subject to the Artistic License (the "License").
  14. // You may not use this file except in compliance with the License. 
  15. // You may obtain a copy of the License at:
  16. // http://www.opensource.org/licenses/artistic-license.html
  17. //
  18. // If you find this code useful, credits would be nice!
  19. //
  20. /////////////////////////////////////////////////////////////////////////////
  21. #include "ResizableLayout.h"
  22. #include "ResizableGrip.h"
  23. #include "ResizableMinMax.h"
  24. #include "ResizableState.h"
  25. #include "..CmdUICmdUI.h"
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CResizableDialog window
  28. class CResizableDialog : public CCmdUIDialog, public CResizableLayout,
  29.  public CResizableGrip, public CResizableMinMax,
  30.  public CResizableState
  31. {
  32. // Construction
  33. public:
  34. CResizableDialog();
  35. CResizableDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL);
  36. CResizableDialog(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
  37. // Attributes
  38. private:
  39. // support for temporarily hiding the grip
  40. DWORD m_dwGripTempState;
  41. // flags
  42. BOOL m_bEnableSaveRestore;
  43. BOOL m_bRectOnly;
  44. // internal status
  45. CString m_sSection; // section name (identifies a parent window)
  46. // Operations
  47. public:
  48. // Overrides
  49. // ClassWizard generated virtual function overrides
  50. //{{AFX_VIRTUAL(CResizableDialog)
  51. protected:
  52. //}}AFX_VIRTUAL
  53. // Implementation
  54. public:
  55. virtual ~CResizableDialog();
  56. // used internally
  57. private:
  58. void PrivateConstruct();
  59. // callable from derived classes
  60. protected:
  61. // section to use in app's profile
  62. void EnableSaveRestore(LPCTSTR pszSection, BOOL bRectOnly = FALSE);
  63. virtual CWnd* GetResizableWnd()
  64. {
  65. // make the layout know its parent window
  66. return this;
  67. };
  68. // Generated message map functions
  69. protected:
  70. //{{AFX_MSG(CResizableDialog)
  71. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  72. afx_msg void OnSize(UINT nType, int cx, int cy);
  73. afx_msg void OnDestroy();
  74. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  75. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  76. //}}AFX_MSG
  77. DECLARE_MESSAGE_MAP()
  78. };
  79. /////////////////////////////////////////////////////////////////////////////
  80. //{{AFX_INSERT_LOCATION}}
  81. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  82. #endif // !defined(AFX_RESIZABLEDIALOG_H__INCLUDED_)