Click here to Skip to main content
15,885,904 members
Articles / Desktop Programming / MFC

Persistent Frames

Rate me:
Please Sign up or sign in to vote.
4.63/5 (5 votes)
6 Jan 2001 92.6K   2.2K   50  
A collection of classes that allows MFC SDI and MDI applications to remember the positions and sizes of their main frame and child frame windows.
#ifndef __PERSISTMDIFRAME_H__
#define __PERSISTMDIFRAME_H__

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

/*************************************************************************
 FILE       : PersistMDIFrame.h

 Author		: Stefan Chekanov (stefant@iname.com)

 Description: Definition of CPersistMDIFrame class used to make MDI Main
			  frames persistent.
			  To use:
			  1. Derive a class from it instead of CMDIFrameWnd.
			  2. In the constructor call SetProfileHeading() to set the
			     registry key where to save the state. Its default value
				 is "Main Frame".
			  3. In the constructor call SetManageBarStates to set whether
			     bar states should be persistent too. Its default value is false.

Copyright(c) 1998,1999,2000
by Stefan Chekanov (stefant@iname.com)

This code may be used in compiled form in any way you desire. This
file may be redistributed unmodified by any means PROVIDING it is 
not sold for profit without the authors written consent, and 
providing that this notice and the authors name is included. If 
the source code in this file is used in any commercial application 
then a simple email to the author would be nice.

This file is provided "as is" with no expressed or implied warranty.
The author accepts no liability if it causes any damage.

*************************************************************************/
/* #    Revisions    # */

/////////////////////////////////////////////////////////////////////////////

#include "PersistFrameImpl.h"

/////////////////////////////////////////////////////////////////////////////

class CPersistMDIFrame : public CMDIFrameWnd
{
    DECLARE_DYNAMIC(CPersistMDIFrame)

protected:
    CPersistMDIFrame();
    virtual	~CPersistMDIFrame();


// Attributes
protected:
	//	Set the registry section where the state info to be saved/loaded from
	void	SetProfileHeading( LPCTSTR szHeading ) {
		m_persistImpl.SetProfileHeading( szHeading );
	}
	
	//	Specify whether positions of control bars should be saved/restored too.
	void	SetManageBarStates( bool bManage ) {
		m_persistImpl.SetManageBarStates( bManage );
	}

	CPersistFrameImpl	m_persistImpl;


// Overrides
public:
	// ClassWizard generated virtual function overrides
    //{{AFX_VIRTUAL(CPersistMDIFrame)
    //}}AFX_VIRTUAL

// Generated message map functions
protected:
    //{{AFX_MSG(CPersistMDIFrame)
    afx_msg void OnDestroy();
	//}}AFX_MSG
    DECLARE_MESSAGE_MAP()

public:
	virtual	BOOL	ShowWindow( int nCmdShow );
};
/////////////////////////////////////////////////////////////////////////////

#endif	//	__PERSISTMDIFRAME_H__

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Brosix
Bulgaria Bulgaria
Stefan does programming since his early ages more than 30 years ago. Later he began programming at his work and now he is very happy to work his hobby. He owns a Master's degree in Computer Science.

During his professional career, Stefan has worked with many technologies. His programming experience includes C/C++, Java, C#, PHP, JavaScript, MFC, ATL, ASP, ASP.NET, TCP/IP, SQL. He has worked with different operating systems: Windows, Linux, Mac OS X, iOS, Android, Solaris, FreeBSD, NetBSD and QNX.

Currently his professional interests are in building large scale distributed systems that operate over the Internet. This involves building server components as well as developing system level software.

More information about his current work can be found here: brosix.com - Enterprise Instant Messaging


Stefan is based in Plovdiv, Bulgaria. It is a very nice and peaceful place combined with an enjoyable weather.

Stefan has a wife and 2 children. He likes in his spear time to travel with his family to see new and interesting places.

Comments and Discussions