Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / MFC

Bitmap ToolBar

Rate me:
Please Sign up or sign in to vote.
2.50/5 (12 votes)
25 Apr 20021 min read 254K   4.7K   65   17
This is my attempt to create a simple toolbar class that allows to set a bitmap in the background of a toolbar.

Sample Image - screen.jpg

Introduction

This is my attempt to create a simple toolbar class that allows to set a bitmap in the background of a toolbar. It is not as successful as the BCGControl lib but that's a beginning...

Some improvements could be made; for example, a hot image is not used. The process also flickers a little when clicking a button. The class should also be modified to Load the background only once to update only the buttons rect.

To Use

  • Create the toolbar as usual:
    C++
    if (!myToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
    		| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC, 
    		DB_BITMAP_TAHITI, IDB_BITMAP_TOOLBAR, 9, false) ||
    		!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
    {
    	TRACE0("Failed to create toolbar\n");
    	return -1;      // fail to create
    }

    DB_BITMAP_TAHITI = id of the background bitmap
    IDB_BITMAP_TOOLBAR = id of the toolbar bitmap
    9 is the number of buttons of the bitmap
    false is a boolean that defines if the background bitmap must be stretched if its size is different from the toolbar.

    Note that TBSTYLE_FLAT will create flat format buttons... else, standard 3D buttons will be added.

  • Set the style of the process, IM_STRECH or IM_TRANSPARENT. IM_TRANSPARENT will take the toolbar image as it is and remove the background color. IM_STRECH stretches the bitmap to the size of the button.
    C++
    m_wndToolBar.ImageStyle = IM_TRANSPARENT;
    m_wndToolBar.MaskColor = RGB(198, 195, 198);
  • Define if the bitmap must be applied on the complete control frame or only on the toolbar. m_wndToolBar.all_frame = true;
     
  • You can modify the type of button with the DrawEdge function's options.

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

 
QuestionProblem with docking at CBRS_LEFT or CBRS_RIGHT. Pin
hunzaixa16-Apr-08 23:10
hunzaixa16-Apr-08 23:10 
QuestionCan anyone explain me a bit about the source code? Pin
Bomberofdoom4-May-07 6:29
Bomberofdoom4-May-07 6:29 
GeneralProblem with Docking Pin
dnataraja28-Mar-06 1:54
dnataraja28-Mar-06 1:54 
Generalthank you Nicolas Pin
quike604128-Dec-05 11:45
quike604128-Dec-05 11:45 
GeneralToolbar with gif Pin
quike60412-Oct-05 5:06
quike60412-Oct-05 5:06 
QuestionHow to display .gif file on the toolbar and react to user click Pin
quike604130-Aug-05 13:11
quike604130-Aug-05 13:11 
AnswerRe: How to display .gif file on the toolbar and react to user click Pin
Nicolas Gazelle30-Aug-05 21:53
Nicolas Gazelle30-Aug-05 21:53 
GeneralIs it possible on C# Pin
Inquire2you3-Sep-04 14:11
Inquire2you3-Sep-04 14:11 
GeneralRe: Is it possible on C# Pin
chengser14-Aug-05 19:16
chengser14-Aug-05 19:16 
AnswerRe: Is it possible on C# Pin
The Cake of Deceit9-Jul-08 6:30
The Cake of Deceit9-Jul-08 6:30 
Questiondont work well why?? Pin
jason_pei23-Jun-04 16:01
jason_pei23-Jun-04 16:01 
QuestionHow to display .gif file on the toolbar and react to user click Pin
guoalan3-May-04 8:50
guoalan3-May-04 8:50 
GeneralNot so Bad Pin
confuzed119-Nov-02 7:15
confuzed119-Nov-02 7:15 
GeneralToobarControls Pin
Anthony Winters30-Oct-02 9:28
Anthony Winters30-Oct-02 9:28 
GeneralRe: ToobarControls Pin
Beer7-Dec-02 7:27
Beer7-Dec-02 7:27 
GeneralRe: ToobarControls Pin
Sir.Costy5-Dec-06 22:30
Sir.Costy5-Dec-06 22:30 
GeneralBitmap Toolbar Pin
Premdutt15-Aug-02 20:29
Premdutt15-Aug-02 20:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.