Click here to Skip to main content
15,885,757 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.
//*************************************************************

// BCGControlBarImpl.h: interface for the CBCGControlBarImpl class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BCGCONTROLBARIMPL_H__F8388FA2_30D5_11D3_95C5_00A0C9289F1B__INCLUDED_)
#define AFX_BCGCONTROLBARIMPL_H__F8388FA2_30D5_11D3_95C5_00A0C9289F1B__INCLUDED_

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


class CBCGControlBarImpl  
{
	friend class CBCGToolBar;
	friend class CBCGDialogBar;
	friend class CBCGSizingControlBar;

public:
	CBCGControlBarImpl(CControlBar* pBar);
	virtual ~CBCGControlBarImpl();

// Attributes:
protected:
	CControlBar*	m_pBar;

// Operations:
protected:
	void CalcNcSize (NCCALCSIZE_PARAMS FAR* lpncsp);

	void DrawNcArea ();
	void DrawBorders(CDC* pDC, CRect& rect);
	BOOL GetBackgroundFromParent (CDC* pDC);

	static void DrawGripper (CDC* pDC, CRect rectGripper, BOOL bHorz);
};

#endif // !defined(AFX_BCGCONTROLBARIMPL_H__F8388FA2_30D5_11D3_95C5_00A0C9289F1B__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