Provide (experimental) clang-format file
[TortoiseGit.git] / ext / ResizableLib / ResizableFrame.h
bloba418cb5c223d76cc63a59357e41f0ad3818ece4e
1 #if !defined(AFX_RESIZABLEFRAME_H__INCLUDED_)
2 #define AFX_RESIZABLEFRAME_H__INCLUDED_
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // ResizableFrame.h : header file
8 //
9 /////////////////////////////////////////////////////////////////////////////
11 // This file is part of ResizableLib
12 // http://sourceforge.net/projects/resizablelib
14 // Copyright (C) 2000-2004 by Paolo Messina
15 // http://www.geocities.com/ppescher - mailto:ppescher@hotmail.com
17 // The contents of this file are subject to the Artistic License (the "License").
18 // You may not use this file except in compliance with the License.
19 // You may obtain a copy of the License at:
20 // http://www.opensource.org/licenses/artistic-license.html
22 // If you find this code useful, credits would be nice!
24 /////////////////////////////////////////////////////////////////////////////
26 #include "ResizableMinMax.h"
27 #include "ResizableWndState.h"
28 #include "ResizableLayout.h"
30 /////////////////////////////////////////////////////////////////////////////
31 // CResizableFrame frame
33 class CResizableFrame : public CFrameWnd, public CResizableMinMax,
34 public CResizableWndState, public CResizableLayout
36 DECLARE_DYNCREATE(CResizableFrame)
37 protected:
38 CResizableFrame(); // protected constructor used by dynamic creation
40 // Attributes
41 protected:
43 // Operations
44 public:
46 // Overrides
47 // ClassWizard generated virtual function overrides
48 //{{AFX_VIRTUAL(CResizableFrame)
49 protected:
50 virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
51 //}}AFX_VIRTUAL
53 // Implementation
54 protected:
55 virtual ~CResizableFrame();
57 BOOL EnableSaveRestore(LPCTSTR pszSection, BOOL bRectOnly = FALSE, BOOL bHorzResize = TRUE, BOOL bVertResize = TRUE);
59 virtual CWnd* GetResizableWnd() const
61 // make the layout know its parent window
62 return CWnd::FromHandle(m_hWnd);
65 private:
66 // flags
67 BOOL m_bEnableSaveRestore;
68 BOOL m_bRectOnly;
70 // internal status
71 CString m_sSection; // section name (identifies a parent window)
73 protected:
74 // Generated message map functions
75 //{{AFX_MSG(CResizableFrame)
76 afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
77 afx_msg void OnDestroy();
78 afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct);
79 afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
80 //}}AFX_MSG
81 DECLARE_MESSAGE_MAP()
84 /////////////////////////////////////////////////////////////////////////////
86 //{{AFX_INSERT_LOCATION}}
87 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
89 #endif // !defined(AFX_RESIZABLEFRAME_H__INCLUDED_)