Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C++

Multi-dialog management through client area sharing

,
Rate me:
Please Sign up or sign in to vote.
4.95/5 (30 votes)
30 Sep 2005CPOL10 min read 62.6K   1.7K   56  
An article on multi-dialog management through client area sharing.
// MaximizedContainer.h : main header file for the MAXIMIZEDCONTAINER application
//
// Author:  John Keirsbilck
//          spoodles@rochester.rr.com
//
// This software is released into the public domain.
// You are free to use it in any way you like.
//
// This software is provided "as is" with no expressed
// or implied warranty.  I accept no liability for any
// damage or loss of business that this software may cause.
//

#if !defined(AFX_MAXIMIZEDCONTAINER_H__8E98276B_4C48_4A60_BB2B_A93942864FB4__INCLUDED_)
#define AFX_MAXIMIZEDCONTAINER_H__8E98276B_4C48_4A60_BB2B_A93942864FB4__INCLUDED_

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

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CMaximizedContainerApp:
// See MaximizedContainer.cpp for the implementation of this class
//

class CMaximizedContainerApp : public CWinApp
{
public:
	CMaximizedContainerApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMaximizedContainerApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CMaximizedContainerApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MAXIMIZEDCONTAINER_H__8E98276B_4C48_4A60_BB2B_A93942864FB4__INCLUDED_)

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Europe Europe
More than 30 years of software development experience.
(also playing the SCRUM Master role depending on the project)

Written By
Chief Technology Officer
United States United States
At this software thing longer than I care to mention. These days primarily a VC++ and SQL Server guy.

Comments and Discussions