Click here to Skip to main content
15,894,180 members
Articles / Desktop Programming / MFC

Dynamic child window positioning

Rate me:
Please Sign up or sign in to vote.
4.97/5 (24 votes)
22 Feb 2000 382.3K   3.1K   97  
Describes a method to implement resizable child windows.
#if !defined(AFX_CDXCDYNAMICFORMVIEW_H__82427295_6456_11D3_802D_000000000000__INCLUDED_)
#define AFX_CDXCDYNAMICFORMVIEW_H__82427295_6456_11D3_802D_000000000000__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// cdxCDynamicFormView.h : header file
//

#include	"cdxCDynamicWnd.h"

/*
 * cdxCDynamicFormView
 * ===================
 * My dynamic form view.
 */

#ifndef __AFXEXT_H__
#include <afxext.h>
#endif

class cdxCDynamicFormView : public CFormView, public cdxCDynamicWnd
{
	DECLARE_DYNCREATE(cdxCDynamicFormView);

	enum { flDefault = flAntiFlicker };

public:
	cdxCDynamicFormView(UINT idd = 0, Freedom fd = fdAll, UINT nFlags = flDefault) : CFormView(idd), cdxCDynamicWnd(fd,nFlags) { m_bUseScrollPos = true; }
	cdxCDynamicFormView(LPCTSTR lpszTemplateName, Freedom fd = fdAll, UINT nFlags = flDefault) : CFormView(lpszTemplateName), cdxCDynamicWnd(fd,nFlags) { m_bUseScrollPos = true; }
	virtual ~cdxCDynamicFormView() { DoOnDestroy(); }

public:
	virtual void OnInitialUpdate();
	virtual BOOL DestroyWindow();

protected:
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnSizing(UINT fwSide, LPRECT pRect);
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
	afx_msg void OnParentNotify(UINT message, LPARAM lParam);
	afx_msg void OnDestroy();

	DECLARE_MESSAGE_MAP();
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CDXCDYNAMICFORMVIEW_H__82427295_6456_11D3_802D_000000000000__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 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
Other JP Morgan Chase
Hong Kong Hong Kong
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions