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

Programming Toolbar Chevrons

Rate me:
Please Sign up or sign in to vote.
4.87/5 (18 votes)
8 May 2003 425.7K   6.4K   150  
An introduction to using the cool new toolbar chevrons
#if !defined(AFX_CHEVDROP_H__E462CCF6_009E_11D4_84C8_0080450EA020__INCLUDED_)
#define AFX_CHEVDROP_H__E462CCF6_009E_11D4_84C8_0080450EA020__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ChevDrop.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CChevDrop window

#define BUTTONSPERROW	4

class CChevDrop : public CWnd
{
	CToolBarCtrl	m_tb;

	// Imagelist for the toolbar	
	CImageList	m_hImageList;

	// This window receives the notifications for the toolbar !
	HWND	m_hMsgReceiver;

	// Helper to create a toolbar
	HWND	CreateToolBar( HWND hwndParent, HWND hToolToReplicate );

	// Cleans all toolbar 
	BOOL	CleanToolBar( );

// Construction
public:
	CChevDrop();

	BOOL	CreatePopup( CWnd* pParent );

	BOOL	ShowPopup(	
						CWnd*	pMsgReceiver,
						CToolBar* pToolBar,
						CRect	rectDisplayed,
						CPoint	ptScreen );

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CChevDrop)
	protected:
	virtual void PostNcDestroy();
	virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
	virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CChevDrop();

	// Generated message map functions
protected:
	//{{AFX_MSG(CChevDrop)
	afx_msg void OnKillFocus(CWnd* pNewWnd);
	afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

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

Comments and Discussions