Click here to Skip to main content
15,886,806 members
Articles / Desktop Programming / WTL

WTL Toolbar Helper

Rate me:
Please Sign up or sign in to vote.
4.89/5 (28 votes)
11 Dec 2006CPOL9 min read 75.6K   4.1K   64  
Add text, drop-down menus, and comboboxes to a WTL toolbar.
// ToolbarHelperSampleView.cpp : implementation of the CToolbarHelperSampleView class
//
/////////////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "resource.h"

#include "ToolbarHelperSampleView.h"

CToolbarHelperSampleView::CToolbarHelperSampleView() : m_clr(RGB(0xFF, 0x00, 0x00))
{
}

BOOL CToolbarHelperSampleView::PreTranslateMessage(MSG* pMsg)
{
	pMsg;
	return FALSE;
}

LRESULT CToolbarHelperSampleView::OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
	CPaintDC dc(m_hWnd);
	
	CRect rect;
	GetClientRect(&rect);
	dc.FillSolidRect(&rect, m_clr);
	return 0;
}

LRESULT CToolbarHelperSampleView::OnEraseBkgnd(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
	return TRUE;
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions