Click here to Skip to main content
15,896,557 members
Articles / Desktop Programming / MFC

Collapsible, resizable and dockable XP style control bar

Rate me:
Please Sign up or sign in to vote.
3.38/5 (25 votes)
22 Sep 2003 196.5K   6.6K   89  
Collapsible, resizable and dockable XP style control bar
// SampleAppView.cpp : implementation of the CSampleAppView class
//

#include "stdafx.h"
#include "SampleApp.h"

#include "SampleAppDoc.h"
#include "SampleAppView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSampleAppView

IMPLEMENT_DYNCREATE(CSampleAppView, CView)

BEGIN_MESSAGE_MAP(CSampleAppView, CView)
	//{{AFX_MSG_MAP(CSampleAppView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSampleAppView construction/destruction

CSampleAppView::CSampleAppView()
{
	// TODO: add construction code here

}

CSampleAppView::~CSampleAppView()
{
}

BOOL CSampleAppView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CSampleAppView drawing

void CSampleAppView::OnDraw(CDC* pDC)
{
	CSampleAppDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CSampleAppView diagnostics

#ifdef _DEBUG
void CSampleAppView::AssertValid() const
{
	CView::AssertValid();
}

void CSampleAppView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

CSampleAppDoc* CSampleAppView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSampleAppDoc)));
	return (CSampleAppDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CSampleAppView message handlers

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
Monaco Monaco
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions