00001
00002
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00016
00017 #if !defined(AFX_RESIZABLESTATE_H__INCLUDED_)
00018 #define AFX_RESIZABLESTATE_H__INCLUDED_
00019
00020 #if _MSC_VER > 1000
00021 #pragma once
00022 #endif // _MSC_VER > 1000
00023
00024 class CResizableState
00025 {
00026 protected:
00027
00028 BOOL LoadWindowRect(LPCTSTR pszSection, BOOL bRectOnly);
00029 BOOL SaveWindowRect(LPCTSTR pszSection, BOOL bRectOnly);
00030
00031 virtual CWnd* GetResizableWnd() = 0;
00032
00033 public:
00034 CResizableState();
00035 virtual ~CResizableState();
00036 };
00037
00038 #endif // !defined(AFX_RESIZABLESTATE_H__INCLUDED_)