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

How to place controls on toolbars

Rate me:
Please Sign up or sign in to vote.
4.86/5 (25 votes)
12 Jan 2000 284K   125   55
How to place combo-boxes, edit boxes, progress controls, etc. into toolbars

It is very easy (once you see how it is done) to place combo-boxes, edit boxes, progress controls, etc. into toolbars. Below are two examples of this, in the first a ComboBox is placed on a toolbar, and in the second a cluster of checkboxes is added. In both cases the technique is the same:

Image 1

Image 2

Step 1: Place a button on the toolbar in the spot where you want the control(s) to eventually be. YOU MUST place a seperator on either side of the button!. Give the button an easily remembered resource name such as IDP_PLACEHOLDER2 in the example below.

Image 3

Step 2: Derive a class from CToolBar and give it a member variable for the control you will be creating. For the ComboBox example that class looks like this. No extra methods are required, just a place for the instance of the control to live.

class CMainToolBar : public CToolBar 
{
public:
    CComboBox m_wndSnap;
};

Step 3: In your main frame's .h file replace the instance of the CToolBar with you new class. Be sure to add an include statement for the class definition created in step 1.

protected: // control bar embedded members
    CStatusBar m_wndStatusBar;
    CMainToolBar m_wndToolBar;

Step 4: At the end of your main frame's OnCreate method you replace the placeholder button with your control as follows:

int SMCMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    /////////////////////////////////////////
    //Body of On Create goes here

    #define SNAP_WIDTH 80 //the width of the combo box

    //set up the ComboBox control as a snap mode select box
    //
    //First get the index of the placeholder's position in the toolbar
    index = 0;
    while (m_wndToolBar.GetItemID(index) != IDP_PLACEHOLDER2) index++;

    //next convert that button to a seperator and get its position
    m_wndToolBar.SetButtonInfo(index, IDP_PLACEHOLDER2, TBBS_SEPARATOR,
        SNAP_WIDTH);
    m_wndToolBar.GetItemRect(index, &rect);

    //expand the rectangle to allow the combo box room to drop down
    rect.top+=2;
    rect.bottom += 200;

    // then .Create the combo box and show it
    if (!m_wndToolBar.m_wndSnap.Create(WS_CHILD|WS_VISIBLE|CBS_AUTOHSCROLL| 
                                       CBS_DROPDOWNLIST|CBS_HASSTRINGS,
                                       rect, &m_wndToolBar, IDC_SNAP_COMBO))
    {
        TRACE0("Failed to create combo-box\n");
        return FALSE;
    }
    m_wndToolBar.m_wndSnap.ShowWindow(SW_SHOW);

    //fill the combo box
    m_wndToolBar.m_wndSnap.AddString("SNAP OFF");
    m_wndToolBar.m_wndSnap.AddString("SNAP GRID");
    m_wndToolBar.m_wndSnap.AddString("SNAP RASTER");
    m_wndToolBar.m_wndSnap.AddString("SNAP VERTEX");
    m_wndToolBar.m_wndSnap.AddString("SNAP LINE");
    m_wndToolBar.m_wndSnap.SetCurSel(0);
}

The result looks like this:

Image 4

Here is one that is a little trickier:

Four check boxes are placed in the toolbar. In addition to adding multiple controls in place of a single button this example shows how to change the font of the checkboxes.

Image 5

1. Derive the new toolbar class and add it to the main frame. Also add a CFont called gSmallFont to the Main Frame.

class CCoupleToolBar : public CToolBar
{
public:
    CButton m_wndCenter;
    CButton m_wndEdge;
    CButton m_wndTrack;
    CButton m_wndZoom;
};

2. Place a placeholder button on the toolbar resource MAKING SURE to leave a space on either side. This is done just as in the first example.

3. At the end of OnCreate in the main frame, first set up the font we are going to use, then replace the placeholder button with the new controls.

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    ////////////////////////////////
    // Body of OnCreate here
    
    //set up the small font to use for the button text
    // remember to declare CFont gSmallFont in the .h file
    // font for tool bar use
    CClientDC DC(GetDesktopWindow());
    long logical_pixels = DC.GetDeviceCaps(LOGPIXELSX);
    if(logical_pixels <100)

    {
        gSmallFont.CreatePointFont(67, "DEFAULT", NULL);  
    }    
    else 
    {   
        gSmallFont.CreatePointFont(50, "DEFAULT", NULL); 
    }   
    
    //create the four check boxes  
    #define CHECK_WIDTH 94  
    int index;   
    CRect rect;   
    CRect safe_rect;
    index = 0;  
     
    while (m_wndViewBar.GetItemID(index) != IDP_PLACHOLDER) index++;     
    
    // Create the "CENTER" check box   
    m_wndViewBar.SetButtonInfo(index, IDP_PLACHOLDER, TBBS_SEPARATOR,
        CHECK_WIDTH); 
    m_wndViewBar.GetItemRect(index, &rect); 
    safe_rect=rect;    
    rect.left +=2;   
    rect.right=rect.left + ((CHECK_WIDTH / 2)-4);   
    rect.top=2;

    rect.bottom=rect.top + 10;   
    if (!m_wndViewBar.m_wndCenter.Create("CNTR",
        BS_CHECKBOX|WS_CHILD|WS_VISIBLE, rect, &m_wndViewBar,
        IDM_COUPLE)) 
    { 
        TRACE0("Failed to create CENTER check-box\n");       
        return FALSE;    
    }    
    m_wndViewBar.m_wndCenter.SendMessage(WM_SETFONT,
        (WPARAM)HFONT(gSmallFont),TRUE);  
    rect.top = rect.bottom += 2;   
    rect.bottom = rect.top + 10;    
    if (!m_wndViewBar.m_wndEdge.Create("EDGE",
        BS_CHECKBOX|WS_CHILD|WS_VISIBLE, rect, &m_wndViewBar,
        IDM_COUPLE_EDGE))
    {         
        TRACE0("Failed to create EDGE check-box\n");        
        return FALSE; 
    }    
    m_wndViewBar.m_wndEdge.SendMessage(WM_SETFONT,
        (WPARAM)HFONT(gSmallFont), TRUE);
    rect = safe_rect;
    rect.left += ((CHECK_WIDTH / 2) + 4);   
    rect.top = 2;

    rect.bottom = rect.top + 10; 
    if (!m_wndViewBar.m_wndZoom.Create("ZOOM",
        BS_CHECKBOX|WS_CHILD|WS_VISIBLE, rect, &m_wndViewBar,
        IDM_LOCK_ZOOMS))
    {      
        TRACE0("Failed to create ZOOM check-box\n");    
        return FALSE;   
    }    
    m_wndViewBar.m_wndZoom.SendMessage(WM_SETFONT,
        (WPARAM)HFONT(gSmallFont),TRUE);   
    rect.top = rect.bottom += 2;   
    rect.bottom = rect.top + 10;  
    if (!m_wndViewBar.m_wndTrack.Create("TRKR",
        BS_CHECKBOX|WS_CHILD|WS_VISIBLE, rect, &m_wndViewBar,
        IDM_SHOW_TRACKING))  
    {       
        TRACE0("Failed to create EDGE check-box\n");    
        return FALSE;   
    }   
    m_wndViewBar.m_wndTrack.SendMessage(WM_SETFONT,
        (WPARAM)HFONT(gSmallFont), TRUE); 
} 

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow does this works on a splitter frame toolbar? Pin
fdkhb4-Jan-09 15:20
fdkhb4-Jan-09 15:20 
Questionm_wndToolBar.m_wndSnap.Create(......)? Pin
bonmeepon26-Feb-06 19:29
bonmeepon26-Feb-06 19:29 
GeneralHandling return Pin
hairy_hats3-Oct-05 5:17
hairy_hats3-Oct-05 5:17 
GeneralDraw on Toolbar button Pin
Anything.J24-Mar-05 23:57
Anything.J24-Mar-05 23:57 
GeneralFont In Combobox In Toolbar Pin
Kourosh Nosrati7-Jan-05 22:33
professionalKourosh Nosrati7-Jan-05 22:33 
GeneralHandle to the MENU Pin
Alex Evans16-Nov-04 13:22
Alex Evans16-Nov-04 13:22 
GeneralThat looks familiar... Pin
Anna-Jayne Metcalfe16-Apr-04 3:49
Anna-Jayne Metcalfe16-Apr-04 3:49 
GeneralCatching Messages from CView Pin
Pinhead_Me31-Mar-04 9:38
Pinhead_Me31-Mar-04 9:38 
GeneralRe: Catching Messages from CView Pin
*Dreamz2-Apr-04 2:20
*Dreamz2-Apr-04 2:20 
GeneralRe: Catching Messages from CView Pin
Pinhead_Me2-Apr-04 6:00
Pinhead_Me2-Apr-04 6:00 
Generalthe &quot;little&quot; ComboBox Pin
Cynicannibal29-Oct-03 23:55
Cynicannibal29-Oct-03 23:55 
GeneralCatch Index Pin
thim7-Oct-03 2:41
thim7-Oct-03 2:41 
GeneralRe: Catch Index Pin
Thimpat7-Oct-03 4:06
Thimpat7-Oct-03 4:06 
QuestionWhy can't I place a CStatic on the toolbar? Pin
Highersong5-Jun-03 0:28
Highersong5-Jun-03 0:28 
AnswerRe: Why can't I place a CStatic on the toolbar? Pin
Brendan Tregear6-Aug-03 15:41
Brendan Tregear6-Aug-03 15:41 
GeneralRe: Why can't I place a CStatic on the toolbar? Pin
vikas amin28-Sep-05 23:05
vikas amin28-Sep-05 23:05 
QuestionHow to Catch Event from the VB ActiveX Control from ToolBar ? Pin
DominicOn1-May-03 10:39
DominicOn1-May-03 10:39 
GeneralMenu on toolbar Pin
CSZX3-Apr-02 22:49
CSZX3-Apr-02 22:49 
QuestionHow to use Drop Down Arrow to show a wnd, just as what the arrow by Undo-button does in Visual Studio? Pin
msvcna26-Mar-02 16:46
msvcna26-Mar-02 16:46 
GeneralResizing Embedded Controls Pin
Marcus Carey21-Mar-02 14:06
Marcus Carey21-Mar-02 14:06 
Generalset focus & lost focus Pin
piyer19-Mar-02 21:56
piyer19-Mar-02 21:56 
GeneralCapturing data from ComboBox Pin
Stew2-Jan-02 5:30
Stew2-Jan-02 5:30 
GeneralWondering what I'm doing wrong Pin
Stew1-Jan-02 16:50
Stew1-Jan-02 16:50 
GeneralRe: Wondering what I'm doing wrong Pin
28-Jun-02 14:43
suss28-Jun-02 14:43 
Generalsome code to enable checkboxes Pin
6-Dec-01 3:13
suss6-Dec-01 3:13 
I had to add few codes to make the checkboxes look "enabled" because they looked "DISABLED."

m_wndToolBar.m_wndCenter.SetButtonStyle( BS_AUTOCHECKBOX );
m_wndToolBar.m_wndEdge.SetButtonStyle( BS_AUTOCHECKBOX );
m_wndToolBar.m_wndTrack.SetButtonStyle( BS_AUTOCHECKBOX );
m_wndToolBar.m_wndZoom.SetButtonStyle( BS_AUTOCHECKBOX );

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.