ResizableSplitterWnd.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // ResizableSplitterWnd.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // This file is part of ResizableLib
  6. // https://github.com/ppescher/resizablelib
  7. //
  8. // Copyright (C) 2000-2015 by Paolo Messina
  9. // mailto:ppescher@hotmail.com
  10. //
  11. // The contents of this file are subject to the Artistic License 2.0
  12. // http://opensource.org/licenses/Artistic-2.0
  13. //
  14. // If you find this code useful, credits would be nice!
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. #if !defined(AFX_RESIZABLESPLITTERWND_H__INCLUDED_)
  18. #define AFX_RESIZABLESPLITTERWND_H__INCLUDED_
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. #include "ResizableMinMax.h"
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CResizableSplitterWnd frame with splitter
  25. class CResizableSplitterWnd : public CSplitterWnd, public CResizableMinMax
  26. {
  27. DECLARE_DYNAMIC(CResizableSplitterWnd)
  28. // Construction
  29. public:
  30. CResizableSplitterWnd();
  31. // Attributes
  32. public:
  33. // Operations
  34. public:
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CResizableSplitterWnd)
  38. protected:
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. virtual ~CResizableSplitterWnd();
  43. // Generated message map functions
  44. //{{AFX_MSG(CResizableSplitterWnd)
  45. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_RESIZABLESPLITTERWND_H__INCLUDED_)