Click here to Skip to main content
Licence 
First Posted 28 May 2000
Views 125,136
Bookmarked 60 times

CWBButton - Resizable Bitmap Button

By | 2 Jun 2000 | Article
CWBButton is a resizable bitmap button like GTK+ or Window Blinds.
  • Download source files - 8 Kb
  • Download demo project - 37 Kb
  • Sample Image - CWBButton.jpg

    Introduction

    CWBButton is a 'WindowBlinds' like resizable image button derived from a CButton. In MFC, You can use the class called CBitmapButton, but that's not enough. The size of button is the size of the bitmap, and you can't put a text by calling the API SetWindowText(). I wanted REAL Bitmap Button like GTK+ or WindowBlinds. So I try to create a REAL Bitmap Button referring WindowBlinds.


    How to Use

    Using CWBButton is simple.

    1. Add Files to your project. WBButton.h, WBButton.cpp, AutoFont.h, AutoFont.cpp
    2. To the Dialog's header file: #include "WBButton.h"
    3. Create a button on your dialog, and make sure you turn on the "Owner Draw" property.
    4. Inside the Dialog class: CButton m_btn1 to CWBButton m_btn1
    5. Initialize the CWBButton in the event handler OnInitDialog() as described below:
      m_btn1.LoadBitmaps
      (
         IDB_BITMAP1,  // Bitmap resource ID
         5,            // Num of Bitmaps
         15,           // TopHeight
         6,            // BottomHeight
         15,           // LeftWidth
         8             // RightWidth
      );
      

    To initialize correctly, you know how to be implemented in the WindowBlinds. Each rectangle lead by LeftWidth, RightWidth, TopHeight, and BottomHeight is static, and not stretched. The others are stretched by the size of button. So you can get natural button images. It may be difficult to set the parameters correctly, but you can refer the Initialize file of WindowBlinds, which name is '*.uis', on the section '[Buttons]'.


    Notes

    1. The bitmap you load should be separate at least four parts. The First is 'Normal' state, the second is 'Select' state, the Third is 'Disable' state, and the fourth is 'Focus' state.
    2. To transparent the button, the bitmap background color should be RGB(255,0,255), also you can change the transparent color by calling the function SetBackColor()

    Problems

    I tested this source on the Japanese version VC6.0 and Windows. Problems may occur on other language environments.

    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

    About the Author

    Shinya Miyaoto



    Japan Japan

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralThanks! PinmemberVincent-Lin19:49 31 Jul '07  
    GeneralWM_ERASEBKGN PinmemberAndrianG9:56 1 Mar '07  
    QuestionWhats the fifth bitmap state for ? PinmemberChrisRibe4:28 12 Dec '06  
    Generaldialog Bk color Pinmembernmg19:42 4 Dec '03  
    Generalhum... Pinmemberkim jyeong hyeon22:20 1 Dec '03  
    Generaldisable/enable Pinmemberyary1:37 19 Dec '02  
    GeneralOwnerDraw PinmemberCosmoS2k21:32 11 Feb '02  
    GeneralAny Other Controls PinmemberMatt Newman8:11 4 Jul '01  
    GeneralComments... PinsussOrlando Llanes6:11 16 Jun '00  
    GeneralRe: Comments... Pinmemberzjufish21:30 15 Nov '00  
    GeneralRe: Comments... PinmemberDavide Calabro7:40 3 May '01  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.5.120517.1 | Last Updated 3 Jun 2000
    Article Copyright 2000 by Shinya Miyaoto
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid