Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / MFC
Article

CExtStatusControlBar - Managing status bar's panes is getting easier

Rate me:
Please Sign up or sign in to vote.
4.91/5 (63 votes)
15 Jan 20043 min read 235K   11K   185   67
An enhanced status bar which allows you to easily add/remove almost any controls to/from its panes, on-the-fly.

Sample Image - statuspanes.gif

Introduction

The article introduces an enhanced version of the standard MFC status bar control. The new class should enable you to easily add/remove panes to/from the application's status bar, on-the-fly. The status bar's panes may contain almost any control you need: buttons, edits, animations, progress bars, and etc.

The class is partially based on the status bar presented in the freeware version of the Prof-UIS library available here.

How to use it

The CExtStatusControlBar class is simple to use. To add it to your project, please follow the steps below:

  1. Put its source files (CExtStatusControlBar.cpp and CExtStatusControlBar.h) into the proper folder and add their file names to your Visual Studio project.
  2. Include its header to the appropriate header file. If you plan to use CExtStatusControlBar in several places of your application, it's reasonable to add it to your stdafx.h file.
    #include "CExtStatusControlBar.h"
  3. If you used CStatusBar, you should replace it with CExtStatusControlBar everywhere in the project.
    CExtStatusControlBar  m_wndStatusBar;

Sample

The StatusPanes sample project shows how to use the class in practice (including how to place controls into the control bar's panes).

List of methods

  • BOOL AddPane(UINT nID, int nIndex)

    Inserts a new pane into the status bar.

    Parameters
    nID
    ID of the pane to be added.
    nIndex
    The index of the newly created pane.
    Return Value
    Nonzero if successful.

  • BOOL RemovePane(UINT nID)

    Deletes a pane from the status bar.

    Parameters
    nID
    ID of the pane to be deleted.
    Return Value
    Nonzero if successful.

  • BOOL AddPaneControl(CWnd* pWnd, UINT nID, BOOL bAutoDestroy)

    Inserts a control into a specified pane.

    Parameters
    pWnd
    Pointer to the control to be added.
    nID
    ID of the target pane.
    bAutoDestroy
    Specifies whether the control should be destroyed when the pane is removed.
    Return Value
    Nonzero if successful; otherwise zero.

  • BOOL AddPaneControl(HWND hWnd, UINT nID, BOOL bAutoDestroy)

    Inserts a control into a specified pane.

    Parameters
    hWnd
    Handle to the control to be added.
    nID
    ID of the target pane.
    bAutoDestroy
    Specifies whether the control should be destroyed when the pane is removed.
    Return Value
    Nonzero if successful.

  • void DisableControl( int nIndex, BOOL bDisable=TRUE)

    Disables the control at a specified pane.

    Parameters
    nIndex
    Index of the pane.
    bDisable
    Flag specifying that the control is enabled if it is set to TRUE.
     

  • int GetPanesCount() const

    Retrieves the current number of panes in the status bar.


  • void SetPaneWidth(int nIndex, int nWidth)

    Sets a width in pixels for a specified pane.

    Parameters
    nIndex
    Index of the pane.
    nStyle
    Width to be set.


  • void SetPaneInfo(int nIndex, UINT nID, UINT nStyle, int cxWidth)

    Sets the specified pane to a new ID, style and width.

    Parameters
    nIndex
    Index of the pane whose style is to be set.
    nID
    New ID for the pane.
    nStyle
    New style for the pane.
    cxWidth
    New width for the pane.

  • void SetPaneStyle(int nIndex, UINT nStyle)

    Sets the style of a status bar's pane. A pane's style determines how the pane appears.

    Parameters
    nIndex
    Index of the pane whose style is to be set.
    nStyle
    Style of the pane whose style is to be set.

Copyright

You can use these sources for absolutely free.

Reporting bugs

Your questions, suggestions and bug reports may be posted either to the forum below or to the forum at the Prof-UIS website.

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
Software Developer (Senior)
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Setting Background Image for Status Bar Pin
Dmitriy Yakovlev22-Jun-07 2:46
Dmitriy Yakovlev22-Jun-07 2:46 
GeneralRe: Setting Background Image for Status Bar Pin
mnupadhya22-Jun-07 22:57
mnupadhya22-Jun-07 22:57 
GeneralRe: Setting Background Image for Status Bar Pin
Dmitriy Yakovlev26-Jun-07 1:25
Dmitriy Yakovlev26-Jun-07 1:25 
GeneralRe: Setting Background Image for Status Bar Pin
mnupadhya26-Jun-07 3:08
mnupadhya26-Jun-07 3:08 
QuestionCan I use this class also for DialogBox? Pin
Ingenious0019-Jan-07 2:45
Ingenious0019-Jan-07 2:45 
AnswerRe: Can I use this class also for DialogBox? Pin
Dmitriy Yakovlev9-Jan-07 3:03
Dmitriy Yakovlev9-Jan-07 3:03 
GeneralRe: Can I use this class also for DialogBox? Pin
Ingenious0019-Jan-07 4:31
Ingenious0019-Jan-07 4:31 
GeneralI want to pop a dialog, when click on progress bar.... Pin
liuty20067-Sep-06 7:48
liuty20067-Sep-06 7:48 
GeneralRe: I want to pop a dialog, when click on progress bar.... Pin
Dmitriy Yakovlev1-Oct-06 23:53
Dmitriy Yakovlev1-Oct-06 23:53 
Generalyou are unbelievebly responsive Pin
spelger20-Jan-06 20:21
spelger20-Jan-06 20:21 
GeneralRe: you are unbelievebly responsive Pin
Dmitriy Yakovlev27-Jan-06 4:30
Dmitriy Yakovlev27-Jan-06 4:30 
QuestionHow to show a Icon and a string in a single pane? Pin
Tcpip200530-Oct-05 16:27
Tcpip200530-Oct-05 16:27 
AnswerRe: How to show a Icon and a string in a single pane? Pin
Dmitriy Yakovlev31-Oct-05 7:24
Dmitriy Yakovlev31-Oct-05 7:24 
QuestionHow to add a Combobox in the status bar? Pin
DayDayDayu17-Dec-04 2:02
DayDayDayu17-Dec-04 2:02 
AnswerRe: How to add a Combobox in the status bar? Pin
Dmitriy Yakovlev17-Dec-04 2:32
Dmitriy Yakovlev17-Dec-04 2:32 
General2 buttons in one pane Pin
stevy8214-Dec-04 1:44
stevy8214-Dec-04 1:44 
GeneralRe: 2 buttons in one pane Pin
Dmitriy Yakovlev15-Dec-04 19:11
Dmitriy Yakovlev15-Dec-04 19:11 
Generalanother question on buttons Pin
stevy8216-Dec-04 1:10
stevy8216-Dec-04 1:10 
GeneralRe: another question on buttons Pin
Dmitriy Yakovlev16-Dec-04 4:11
Dmitriy Yakovlev16-Dec-04 4:11 
QuestionMay I use the code free in my commercial software? Pin
DayDayDayu12-Dec-04 13:14
DayDayDayu12-Dec-04 13:14 
AnswerRe: May I use the code free in my commercial software? Pin
Dmitriy Yakovlev12-Dec-04 21:56
Dmitriy Yakovlev12-Dec-04 21:56 
QuestionHow To Fatten It Up Pin
Swinefeaster11-Mar-04 15:12
Swinefeaster11-Mar-04 15:12 
AnswerRe: How To Fatten It Up Pin
Dmitriy Yakovlev14-Mar-04 21:09
Dmitriy Yakovlev14-Mar-04 21:09 
GeneralCExtStatusControlBar complil error Pin
voisin1323-Feb-04 21:07
voisin1323-Feb-04 21:07 
GeneralRe: CExtStatusControlBar complil error Pin
Dmitriy Yakovlev23-Feb-04 21:53
Dmitriy Yakovlev23-Feb-04 21:53 

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.