Click here to Skip to main content
15,886,873 members
Articles / Desktop Programming / MFC

Sizing TabControlBar

Rate me:
Please Sign up or sign in to vote.
3.65/5 (23 votes)
7 Feb 2000 346.5K   4.6K   92  
Creates a dockable and resizable control bar.
// ResourceView.cpp: Implementierungsdatei
//

#include "stdafx.h"
#include "Demo.h"
#include "ResourceView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CResourceView

IMPLEMENT_DYNCREATE(CResourceView, CTreeView)

CResourceView::CResourceView()
{
}

CResourceView::~CResourceView()
{
}


BEGIN_MESSAGE_MAP(CResourceView, CTreeView)
	//{{AFX_MSG_MAP(CResourceView)
	ON_WM_CREATE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Zeichnung CResourceView 

void CResourceView::OnDraw(CDC* pDC)
{
	CDocument* pDoc = GetDocument();
	// ZU ERLEDIGEN: Code zum Zeichnen hier einf�gen
}

/////////////////////////////////////////////////////////////////////////////
// Diagnose CResourceView

#ifdef _DEBUG
void CResourceView::AssertValid() const
{
	CTreeView::AssertValid();
}

void CResourceView::Dump(CDumpContext& dc) const
{
	CTreeView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// Behandlungsroutinen f�r Nachrichten CResourceView 

int CResourceView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
	if (CTreeView::OnCreate(lpCreateStruct) == -1)
		return -1;
	
	GetTreeCtrl().ModifyStyle(0, 
		TVS_HASBUTTONS|TVS_LINESATROOT|TVS_HASLINES|TVS_SHOWSELALWAYS);

	HTREEITEM hRootItem = GetTreeCtrl().InsertItem("Resources",0,0);
	
	for (int i=0; i<15; i++)
	{
		CString strItem;
		strItem.Format("Resource %d", i);
		GetTreeCtrl().InsertItem(strItem,i,i,hRootItem);
	}
	
	GetTreeCtrl().SelectItem(hRootItem);
	GetTreeCtrl().Expand(hRootItem, TVE_EXPAND);
	
	return 0;
}

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

Comments and Discussions