/libusbK/src/inf-wizard2/src/ResizableFormView.h

http://usb-travis.googlecode.com/ · C++ Header · 110 lines · 51 code · 22 blank · 37 comment · 0 complexity · 1d975dc652db9b9094cacc3aedb21bb8 MD5 · raw file

  1. #if !defined(AFX_RESIZABLEFORMVIEW_H__INCLUDED_)
  2. #define AFX_RESIZABLEFORMVIEW_H__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ResizableFormView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. //
  10. // This file is part of ResizableLib
  11. // http://sourceforge.net/projects/resizablelib
  12. //
  13. // Copyright (C) 2000-2004 by Paolo Messina
  14. // http://www.geocities.com/ppescher - mailto:ppescher@hotmail.com
  15. //
  16. // The contents of this file are subject to the Artistic License (the "License").
  17. // You may not use this file except in compliance with the License.
  18. // You may obtain a copy of the License at:
  19. // http://www.opensource.org/licenses/artistic-license.html
  20. //
  21. // If you find this code useful, credits would be nice!
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. #include "ResizableLayout.h"
  25. #include "ResizableGrip.h"
  26. #include "ResizableMinMax.h"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CResizableFormView form view
  29. #include <afxext.h>
  30. class CResizableFormView : public CFormView, public CResizableLayout,
  31. public CResizableGrip, public CResizableMinMax
  32. {
  33. DECLARE_DYNAMIC(CResizableFormView)
  34. // Construction
  35. protected: // must derive your own class
  36. CResizableFormView(UINT nIDTemplate);
  37. CResizableFormView(LPCTSTR lpszTemplateName);
  38. virtual ~CResizableFormView();
  39. private:
  40. void PrivateConstruct();
  41. // support for temporarily hiding the grip
  42. DWORD m_dwGripTempState;
  43. enum GripHideReason // bitmask
  44. {
  45. GHR_MAXIMIZED = 0x01,
  46. GHR_SCROLLBAR = 0x02,
  47. GHR_ALIGNMENT = 0x04,
  48. };
  49. // called from base class
  50. protected:
  51. virtual void GetTotalClientRect(LPRECT lpRect) const;
  52. virtual CWnd* GetResizableWnd() const
  53. {
  54. // make the layout know its parent window
  55. return CWnd::FromHandle(m_hWnd);
  56. };
  57. // Attributes
  58. public:
  59. // Operations
  60. public:
  61. // Overrides
  62. public:
  63. // ClassWizard generated virtual function overrides
  64. //{{AFX_VIRTUAL(CResizableFormView)
  65. protected:
  66. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  67. //}}AFX_VIRTUAL
  68. // Implementation
  69. protected:
  70. #ifdef _DEBUG
  71. virtual void AssertValid() const;
  72. virtual void Dump(CDumpContext& dc) const;
  73. #endif
  74. // Generated message map functions
  75. //{{AFX_MSG(CResizableFormView)
  76. afx_msg void OnSize(UINT nType, int cx, int cy);
  77. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  78. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  79. afx_msg void OnDestroy();
  80. virtual BOOL OnInitDialog();
  81. afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct);
  82. //}}AFX_MSG
  83. DECLARE_MESSAGE_MAP()
  84. };
  85. /////////////////////////////////////////////////////////////////////////////
  86. //{{AFX_INSERT_LOCATION}}
  87. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  88. #endif // !defined(AFX_RESIZABLEFORMVIEW_H__INCLUDED_)