Status Bars: Updating the Text of a Status-Bar Pane

OverviewHow Do I

This article explains how to change the text that appears in an MFC status bar pane. A status bar — a window object of class — contains several “panes.” Each pane is a rectangular area of the status bar that you can use to display information. For example, many applications display the status of the CAPS LOCK, NUM LOCK, and other keys in the rightmost panes. Applications also often display informative text in the leftmost pane (pane 0), sometimes called the “message pane.” For example, the default MFC status bar uses the message pane to display a string explaining the currently selected menu item or toolbar button. The figure in Status Bars shows a status bar from an AppWizard-created MFC application.

By default, MFC does not enable a CStatusBar pane when it creates the pane. To activate a pane, you must use the ON_UPDATE_COMMAND_UI macro for each pane on the status bar and update the panes. Because panes do not send WM_COMMAND messages (they aren’t like toolbar buttons), you can’t use ClassWizard to create an update handler to activate a pane; you must type the code manually.

For example, suppose one pane has ID_INDICATOR_PAGE as its command identifier and that it contains the current page number in a document. The following procedure describes how to create a new pane in the status bar.

To make a new pane

  1. Define the pane’s command ID.

    Open the ResourceView in the Project Workspace window. Open the Symbol Browser****with the Resource Symbols command on the View menu, and click New. Type a command ID name: for example, ID_INDICATOR_PAGE. Specify a value for the ID, or accept the value suggested by the Symbol Browser. For example, for ID_INDICATOR_PAGE, accept the default value. Close the Symbol Browser.

  2. Define a default string to display in the pane.

    With the ResourceView open, double-click String Table in the window that lists resource types for your application. With the String Table editor open, choose New String from the Insert menu. In the String Properties window, select your pane’s command ID (for example, ID_INDICATOR_PAGE) and type a default string value, such as “Page   ”. Close the string editor. (You need a default string to avoid a compiler error.)

  3. Add the pane to the indicators array.

    In file MAINFRM.CPP, locate the indicators array. This array lists command IDs for all of the status bar’s indicators, in order from left to right. At the appropriate point in the array, enter your pane’s command ID, as shown here for ID_INDICATOR_PAGE:

    static UINT BASED_CODE indicators[] =
    {
        ID_SEPARATOR,           // status line indicator
        ID_INDICATOR_CAPS,
        ID_INDICATOR_NUM,
        ID_INDICATOR_SCRL,
        ID_INDICATOR_PAGE,
    };
    

The recommended way to display text in a pane is to call the SetText member function of class CCmdUI in an update handler function for the pane. For example, you might want to set up an integer variable m_nPage that contains the current page number and use SetText to set the pane’s text to a string version of that number.

Note   The SetText approach is recommended. It is possible to perform this task at a slightly lower level by calling the CStatusBar member function SetPaneText. Even so, you still need an update handler. Without such a handler for the pane, MFC automatically disables the pane, erasing its content.

The following procedure shows how to use an update handler function to display text in a pane.

To make a pane display text

  1. Add a command update handler for the command.

    You can’t use ClassWizard to write a handler for a status bar pane, so manually add a prototype for the handler, as shown here for ID_INDICATOR_PAGE (in MAINFRM.H):

    afx_msg void OnUpdatePage(CCmdUI *pCmdUI);
    

    In the appropriate .CPP file, add the handler’s definition, as shown here for ID_INDICATOR_PAGE (in MAINFRM.CPP):

    void CMainFrame::OnUpdatePage(CCmdUI *pCmdUI)
    {
        pCmdUI->Enable();
    }
    

    In the appropriate message map, add the ON_UPDATE_COMMAND_UI macro (outside the “{{AFX” comments), as shown here for ID_INDICATOR_PAGE (in MAINFRM.CPP):

    ON_UPDATE_COMMAND_UI(ID_INDICATOR_PAGE, OnUpdatePage)
    
  2. Add code to the handler to display your text.

    For ID_INDICATOR_PAGE, expand the OnUpdatePage handler from step 1 above, adding the last three lines:

    void CMainFrame::OnUpdatePage(CCmdUI *pCmdUI)
    {
        pCmdUI->Enable();
        CString strPage;
        strPage.Format( "Page %d", m_nPage );
        pCmdUI->SetText( strPage );
    }
    

Once you define the value of the m_nPage member variable (of class CMainFrame), this technique causes the page number to appear in the pane during idle processing in the same manner that the application updates other indicators. If m_nPage changes, the display changes during the next idle loop.

What do you want to know more about?

See Also