Click here to Skip to main content
15,886,864 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.4K   4.6K   92  
Creates a dockable and resizable control bar.
#ifndef AFX_CLASSVIEW_H__84F28FA4_C33F_11D1_91F5_9F8A24CCC434__INCLUDED_
#define AFX_CLASSVIEW_H__84F28FA4_C33F_11D1_91F5_9F8A24CCC434__INCLUDED_

// ClassView.h : Header-Datei
//

/////////////////////////////////////////////////////////////////////////////
// Ansicht CClassView 

class CClassView : public CTreeView
{
protected:
	CClassView();           // Dynamische Erstellung verwendet gesch�tzten Konstruktor
	DECLARE_DYNCREATE(CClassView)

// Attribute
public:

// Operationen
public:

// �berschreibungen
	// Vom Klassen-Assistenten generierte virtuelle Funktions�berschreibungen
	//{{AFX_VIRTUAL(CClassView)
	protected:
	virtual void OnDraw(CDC* pDC);      // �berschrieben zum Zeichnen dieser Ansicht
	//}}AFX_VIRTUAL

// Implementierung
protected:
	virtual ~CClassView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generierte Nachrichtenzuordnungsfunktionen
protected:
	//{{AFX_MSG(CClassView)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio f�gt zus�tzliche Deklarationen unmittelbar vor der vorhergehenden Zeile ein.

#endif // AFX_CLASSVIEW_H__84F28FA4_C33F_11D1_91F5_9F8A24CCC434__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
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