Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / MFC

A Better Bitmap Button Class

Rate me:
Please Sign up or sign in to vote.
3.46/5 (14 votes)
14 Oct 2001 396.6K   9.2K   80   59
An improvement on the CBitmapButton class.

Table of Contents

Overview

I never much liked the CBitmapButton class. It has several major defects.

  • It requires an unnatural paradigm of naming resources.
  • It does not work well with multiple screen resolutions.
  • It requires too much work on the part of the programmer to create the button images.

This class has too much generality and power for the "typical" case. So it makes the simple case as hard as the most general case. I don't need the most general case, and you probably don't either. You just want to display an interesting bitmap in a button, rather than some boring piece of text. The rest you'd like to work properly without any effort on your part.

The CBitmapButton class is well and truly weird in that it nominally requires you to create one-to-four images of the button, all nicely designed with the right kinds of edges and everything, and name them with funky names like "ACTIOND", "ACTIONU", "ACTIONF" and "ACTIONX". Of course, you can actually use IDs, and call the LoadBitmaps method yourself, but you still have to create those bitmaps.

Do you know how to create a really good-looking 3D edge? It's tricky. It is even more tricky when you have to create one that will work at any resolution. Do you know how to create a focus rectangle that looks good at any resolution? And what if you don't want your buttons to have to resize to the bitmap?

But why bother worrying about any of these issues? Mostly when I do a bitmap button, I want a button that looks like an ordinary button. It has the appropriate edges, the appropriate edge changes on push-down, and a focus rectangle nicely displayed. The only thing I want different is the bitmap. And I'd like to draw only one, please.

The bitmap class described in this article solves all these problems. I've had code floating around for a while, but the number of recent bitmap questions prompted me to clean it up and get it into a publishable form.

CImageButton: A Smart Bitmap Button Class

CImageButton draws a button in a raised or depressed state and draws a focus rectangle around the image when the control has the focus.

This class requires only one bitmap, although you can supply up to three. You don't need the fourth (focus) bitmap because the focus rectangle is automatically drawn.

The bitmaps are specified solely by their resource IDs. No need to use nonstandard naming conventions. And if you want to use different bitmaps for different resolutions, you can do so just by calling LoadBitmaps with the desired bitmap IDs in your OnInitDialog handler.

If you supply only a single bitmap (the ideal situation), then the same bitmap is used for up and down, and will be grayed out with alternate-gray pixels when disabled. If you don't like the gray-out algorithm, you can supply an explicit gray-out image of your own devising for the disabled state.

Similarly, since the edges and focus are provided for you, you usually don't need to supply a special bitmap for the "down" state. The only real trick in doing the "down" state is that the focus rectangle and bitmap image shift right-and-down to preserve a visual illusion of a button push.

What about the problem of "dialog units", that nightmare that haunts everyone who ever tries to do something with a bitmap and dialog? If you don't know what this problem is, Microsoft cleverly decided that a dialog should resize itself based on screen resolution, so a dialog that looks reasonable at 640×480 will look equally reasonable at 1600×1200. Actually, this is a good idea, but its implementation leaves a lot to be desired. The most serious defect is that anything that uses a bitmap is in deep trouble, because bitmaps are always in pixel resolution. So your really nice-looking 16×16 bitmap at 640×480 is nearly invisible at 1600×1200. At 640×480, it is 1/40×1/30 of the screen. At 1600×1200, it is 1/100×1/75 of the screen. It has been reduced in size by a factor of 2.5.

I handle this by a provision to "fill" the button area with the bitmap image. This uses the StretchBlt function to expand the bitmap. For some images, this works well; for others, it produces really ugly effects such as aliasing artifacts. But for a large number of simple images you use for your buttons, it is satisfactory, and saves having to create bitmaps at multiple resolutions.

What if you want an image that doesn't quite go from edge-to-edge in your button, but you want it to resize? Simply create a larger bitmap, and fill the bitmap in with the nominal 3D face color, which is RGB(192, 192, 192), "gray". I load the bitmap with LR_LOADMAP3DCOLORS, so instances of dark gray, gray, and light gray will all be replaced with the user's current display scheme settings. I use the COLOR_3DFACE to "gray out" the image if you haven't supplied a grayed-out image of your own, so the color scheme the user selects will be followed.

If you have chosen to not use the "fill" feature, this class honors the various button styles, such as BS_CENTER, BS_LEFT, and BS_RIGHT for horizontal alignment and BS_VCENTER, BS_TOP, and BS_BOTTOM for vertical alignment.

Actually, the only really tricky part of all this code was handling all the weird cases, such as what if the bitmap is larger than the button and the caller has specified a right-justified image? (Answer: The image is truncated on the left). You can read the code to discover all the other strange cases.

To create an image button, you create a button in the dialog editor, and mark it as owner-draw. Any caption you supply will be ignored. You then go into the Class Wizard and create a control variable for it, of type CImageButton. Note that you may have to rebuild the .clw file after adding CImageButton to your project. Delete the .clw file and invoke ClassWizard, then tell it to reconstruct the file from the existing project files.

CImageButton Methods

What I provide in my CImageBitmap class is a simple set of methods that extended the basic CButton class.

C++
void CImageBitmap::LoadBitmaps(UINT up, UINT down = 0, UINT disabled = 0)

You call this method to tell the button what images to use. Only the up image is required. The rest are optional, and are supplied implicitly at drawing time according to the table below:

Bitmaps provided

Bitmaps used

-- LoadBitmaps parameters--

-- Button state --

Up Down Disabled Up Down Disabled
up 0 0 up up grayed(up)
up down 0 up down grayed(up)
up 0 disabled up up disabled
up down disabled up down disabled
C++
void CImageBitmap::GetBitmaps(UINT &up, 
                              UINT &down, 
                              UINT &disabled)

This can be used to retrieve the resource IDs of the bitmaps set by the last LoadBitmaps call.

  • DWORD CImageButton::SetVPos(DWORD style)

    This can be used to set the vertical position of the image. It can be one of BS_TOP, BS_BOTTOM, or BS_VCENTER. It returns the previous vertical style.

  • DWORD CImageButton::SetHPos(DWORD style)

    This can be used to set the horizontal position of the image. It can be one of BS_LEFT, BS_RIGHT, or BS_CENTER. It returns the previous horizontal style.

  • BOOL CImageButton::m_fill;

    This value is set to FALSE by the constructor. You can set it explicitly to TRUE if you want image-filling to occur.

    Note that if you change the value of this variable after the OnInitDialog has completed, you should call InvaldiateRect on the CImageButton object to force it to redraw.

    (Note: You may have read my diatribes about the silly m_ notation being used gratuitously; I've even seen people so misled by it that they declare local variables on the stack using this naming convention! But the one place I use it is to name member variables that are used to communicate information into a class instance from outside the class. This is one such instance.)

CToggleButton: A Toggle Button Class

Just because there were several requests for how to make a button that "toggles", I've created a toggle bitmap class, which also downloads with this project. Look for the CToggleButton class in ToggleButton.cpp and ToggleButton.h. To create a toggle button, you create a button in the dialog editor, add a caption, and mark it as owner-draw. You then go into the Class Wizard and create a control variable for it, of type CToggleButton. Note that you may have to rebuild the .clw file after adding CToggleButton to your project. Delete the .clw file and invoke ClassWizard, then tell it to reconstruct the file from the existing project files.

CToggleButton Methods

  • BOOL CToggleButton::GetState()

    This returns the current button-state, TRUE if the button is toggled on (image is depressed) and FALSE if the button is toggled off (image is not depressed).

  • BOOL CToggleButton::SetState(BOOL newState)

    This sets the state. If newState is TRUE, the state is "on" (depressed) and if newState is FALSE, the state is "off" (not depressed). This returns the previous state of the button.

  • DWORD CToggleButton::SetVPos(DWORD style)

    This can be used to set the vertical position of the text. It can be one of BS_TOP, BS_BOTTOM, or BS_VCENTER. It returns the previous vertical style.

  • DWORD CToggleButton::SetHPos(DWORD style)

    This can be used to set the horizontal position of the text. It can be one of BS_LEFT, BS_RIGHT, or BS_CENTER. It returns the previous horizontal style.

The source file for these classes, and a project that I used for testing them, can be downloaded directly by clicking the link at the top of the page.

Updates by Jeff Malett

  1. The CImageButton class was extended to support toggling, so now you can have an image button that toggles. Basically, I did this by merging code from your CToggleButton class into your CImageButton class, calling the result CImageToggleButton. Whether or not the button toggles is controlled by a new class member variable called m_toggle, which can be changed at any time. Merging the two classes was a requested feature from somebody on the CodeProject message board.
  2. I changed both CImageToggleButton and CToggleButton so that when they are toggled, their backgrounds are drawn with the currently set button highlight color. This is the more standard behavior for toggle buttons.
  3. I extended the dialog demo to show two image buttons, one with toggling and one without.
  4. I extended the dialog demo to show an MFC text toggle button (you can do this by making a checkbox and giving it the "Push-like" property) side-by-side with the CToggleButton. Note that they behave slightly differently, e.g., when you click on a depressed toggle button, it is fully released on mouse-down in your version and on mouse-up in MFCs. I kind of prefer the UI of the MFC version, but CToggleButton is superior in that the text can be justified in different ways (not sure why you'd want to do that though.)

The views expressed in these essays are those of the author, and in no way represent, nor are they endorsed by, Microsoft.

You can leave comments below with questions or comments about this article.
Copyright © 1999. All Rights Reserved
www.flounder.com/mvp_tips.htm

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
Retired
United States United States
PhD, Computer Science, Carnegie Mellon University, 1975
Certificate in Forensic Science and the Law, Duquesne University, 2008

Co-Author, [i]Win32 Programming[/i]

Comments and Discussions

 
GeneralButton colour Pin
Nnamdi Onyeyiri12-Oct-01 7:07
Nnamdi Onyeyiri12-Oct-01 7:07 
GeneralRe: Button colour Pin
Joseph M. Newcomer12-Oct-01 17:08
Joseph M. Newcomer12-Oct-01 17:08 
Generalgood job Pin
Remi Morin19-Sep-01 3:16
Remi Morin19-Sep-01 3:16 
GeneralBug for multi-ImageButton Pin
28-Aug-01 4:26
suss28-Aug-01 4:26 
Generalchange bitmaps without clicking Pin
15-Jun-01 1:35
suss15-Jun-01 1:35 
GeneralRe: change bitmaps without clicking Pin
Joseph M. Newcomer15-Jun-01 4:26
Joseph M. Newcomer15-Jun-01 4:26 
GeneralRe: change bitmaps without clicking Pin
18-Jun-01 0:09
suss18-Jun-01 0:09 
GeneralWhy not making one control Pin
27-May-01 9:23
suss27-May-01 9:23 
GeneralRe: Why not making one control Pin
23-Aug-01 16:25
suss23-Aug-01 16:25 

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.