Click here to Skip to main content
15,896,028 members
Articles / Desktop Programming / ATL

Create a Universal Document Template which supports Dynamic Frame Window Layout

Rate me:
Please Sign up or sign in to vote.
3.00/5 (8 votes)
14 Dec 20024 min read 49.3K   668   24  
Introduce a programming technology to design a very complex, rich document type.
//*******************************************************************************
// COPYRIGHT NOTES
// ---------------
// This source code is a part of Tangram library.
// You may use, compile or redistribute it as part of your application 
// for free. You cannot redistribute it as a part of a software development 
// library without the agreement of the author. If the sources are 
// distributed along with the application, you should leave the original 
// copyright notes in the source code without any changes.
// This code can be used WITHOUT ANY WARRANTIES on your own risk.
// 
// For the latest updates to this library, check site:
// http://www.tangramdev.com
// 
// sunhui
//*******************************************************************************
#if !defined(AFX_DOCKINGTANGRAMBAR_H__1705E661_2D5D_47C5_B51E_E617B09211C1__INCLUDED_)
#define AFX_DOCKINGTANGRAMBAR_H__1705E661_2D5D_47C5_B51E_E617B09211C1__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DockingTangramBar.h : header file
//
#include "BCGSizingControlBar.h"
/////////////////////////////////////////////////////////////////////////////
// CDockingTangramBar window
class CBCGSizingControlBar;
class CTangramObject;
class CDockingTangramBar : public CBCGSizingControlBar
{
    DECLARE_DYNCREATE(CDockingTangramBar);
// Construction
public:
	CDockingTangramBar(CTangramObject* pObj = NULL, BOOL DockingMain=FALSE);

// Attributes
public:
	BOOL bDockingMain;
	HWND hWnd;
	CWnd* m_pWnd;
	CRuntimeClass* m_pWndClass;
	CFrameWnd* m_pDockingFrame;
	CTangramObject* m_pTangramObject;
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDockingTangramBar)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CDockingTangramBar();

	// Generated message map functions
protected:
	//{{AFX_MSG(CDockingTangramBar)
	afx_msg void OnDestroy();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	CFrameWnd* CreateDockingFrame(CString strTitle,CFrameWnd* pParentFrame);
	void SetTangramObj(CTangramObject* pObj = NULL);
};

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

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

#endif // !defined(AFX_DOCKINGTANGRAMBAR_H__1705E661_2D5D_47C5_B51E_E617B09211C1__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
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions