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

CDialogEx, CPropertySheetEx2 classes with status bar, toolbar and tool tips

Rate me:
Please Sign up or sign in to vote.
4.68/5 (11 votes)
28 Sep 20023 min read 273.7K   5.5K   62   52
CDialogEx and CPropertySheetEx2 are classes derived from CDialog and CPropertySheetEx with support for status bar, toolbar and tool tips

CDialogEx and CPropertySheetEx2

Motivation

When I saw Nish's article with a status bar in dialog window I finally decided to publish my CDialogEx and CPropertySheetEx2 classes with support for status bar, toolbar and tool tips. I had similar problem a while ago, when I needed to develop simple application, but with not too ugly interface.

It is not complicated task to have a status bar or toolbar at the dialog window. It becomes little bit more tricky, when you want to do it right way - show tool tips and corresponding status bar messages to these tool tips - and that's the reason, why there is usually status bar, isn't it?. Fortunately I found some information in MSND and got it working.

There is sample DLGCBR32 with description how to add control bars to CDialog. My classes are based on this sample and are extended to keep usage of its functionality as simple as possible.

Description of solution

CDialog and CPropertySheet do not contain similar function to CFrameWnd where all the processing of messages related to control bars is done. It is necessary duplicated this functionality for windows not derived from CFrameWnd. However, this task is more difficult, if you want support modal and modeless dialog windows, where not all messages are sent as you might expect.

As you can see from following message map:

BEGIN_MESSAGE_MAP(CDialogEx, CDialog)
	//{{AFX_MSG_MAP(CDialogEx)
	ON_WM_ENTERIDLE()
	ON_MESSAGE(WM_POPMESSAGESTRING, OnPopMessageString)
	ON_MESSAGE(WM_SETMESSAGESTRING, OnSetMessageString)
	ON_WM_MENUSELECT()     
	ON_UPDATE_COMMAND_UI(ID_INDICATOR_NUM, OnUpdateKeyIndicator)
	ON_UPDATE_COMMAND_UI(ID_VIEW_STATUS_BAR, OnUpdateStatusBarMenu)
	ON_COMMAND(ID_VIEW_STATUS_BAR, OnStatusBarCheck)  
	ON_COMMAND(ID_VIEW_TOOLBAR, OnToolBarCheck)
	ON_UPDATE_COMMAND_UI(ID_VIEW_TOOLBAR, OnUpdateToolBarMenu) 
	ON_WM_MOUSEMOVE()
	ON_WM_INITMENUPOPUP()
	ON_MESSAGE(WM_KICKIDLE, OnKickIdle)
	ON_UPDATE_COMMAND_UI(ID_INDICATOR_CAPS, OnUpdateKeyIndicator)
	ON_UPDATE_COMMAND_UI(ID_INDICATOR_SCRL, OnUpdateKeyIndicator)
	ON_COMMAND(IDOK, OnOK)
	ON_COMMAND(IDCANCEL, OnCancel)
	//}}AFX_MSG_MAP
	ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTW, 0, 0xFFFF, OnToolTipText)
	ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTA, 0, 0xFFFF, OnToolTipText)
END_MESSAGE_MAP()

there is the handler for WM_ENTERIDLE message, where CFrameWnd process WM_ENTERIDLE to update status bar. The same scenario is working for CDialog only when it is modal and it is not main application window. Workaround for different situations is handling WM_KICKIDLE. Rest of message map is for handling messages for tool tips and updating user interface (menu and status bar).

Usage

Using CDialogEx is as simple as deriving your dialog class from CDialog. You can use class wizard to derive your dialog from CDialog and then just replace all references to CDialog with CDialogEx. You have to implement OnInitDialog() and call function InitDialogEx() from within it.

BOOL InitDialogEx(BOOL btool tips = FALSE, BOOL bStatusBar = FALSE, 
                  UINT *pIndicators = NULL,
                  UINT nIndicators = 0, UINT uiToolBar = 0, 
                  DWORD dwToolBarStyle = TBSTYLE_FLAT | WS_CHILD | 
                                         WS_VISIBLE | CBRS_TOP | 
                                         CBRS_GRIPPER | CBRS_TOOLTIPS | 
                                         CBRS_FLYBY | CBRS_SIZE_DYNAMIC);

Set btool tips to TRUE if you want to use tool tips. Set bStatusBar to TRUE, if you want to show status bar. If you will not specify pIndicators and nIndicators when bStatusBar is TRUE, then CDialogEx will show default status bar with indicators for Num Lock, Caps Lock and Scroll Lock. Otherwise you can provide definition for you own status bar in these parameters. Parameter uiToolBar is resource ID of your toolbar with styles specified in dwToolBarStyle.

Last thing to do is to add string AFX_IDS_IDLEMESSAGE to your resources. Its ID has to be 57345. This string is shown in the status bar when application is in idle state, usually you can use string like 'Ready'.

The same setup applies for using CPropertySheetEx2. Only function to call from InitDialogEx() has name InitPropertySheetEx2() and one parameter more for resource ID of menu to show. And, off course, you have to derive your pages from CPropertyPageEx2 class.

Demo programs

Demo program CDialogExDemo and CPropertySheetEx2Demo demonstrate using CDialogEx in the different scenarios, as a modal or modeless main application window, or as a child window.

History

  • 24 Sep 2002 - couple of bugs removed, new demo program for CPropertySheetEx2 - credits to Cyril Boutamine and Jonathan de Halleux

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

Comments and Discussions

 
Questionneed MFC42U.lib?? Pin
Anonymous30-Oct-02 21:52
Anonymous30-Oct-02 21:52 
AnswerRe: need MFC42U.lib?? Pin
Martin Ziacek30-Oct-02 22:58
Martin Ziacek30-Oct-02 22:58 
GeneralRe: need MFC42U.lib?? Pin
Anonymous24-Jan-03 1:18
Anonymous24-Jan-03 1:18 
GeneralRe: need MFC42U.lib?? Pin
Anonymous24-Jan-03 3:15
Anonymous24-Jan-03 3:15 
GeneralRe: need MFC42U.lib?? Pin
suntree5-Jun-03 21:02
suntree5-Jun-03 21:02 
GeneralNeed bitmapped dialog Pin
Anonymous18-Oct-02 7:45
Anonymous18-Oct-02 7:45 
GeneralRe: Need bitmapped dialog Pin
Martin Ziacek18-Oct-02 11:31
Martin Ziacek18-Oct-02 11:31 
QuestionHow to assign accelerator keys to menu items? Pin
CBock28-Oct-02 0:02
sussCBock28-Oct-02 0:02 
Now I'm quite familiar with CDialog Ex, but I'm not able to assign an accelerator key to a menu item.
I did the following:
- create acclerator using the same ID like in the menu
- associated the resource with MainDlg

What is wrong/missing?

Regards
Christoph
AnswerRe: How to assign accelerator keys to menu items? Pin
Martin Ziacek8-Oct-02 9:10
Martin Ziacek8-Oct-02 9:10 
GeneralPb with CPropertySheetEx2 Pin
Cyril Boutamine11-Sep-02 21:27
Cyril Boutamine11-Sep-02 21:27 
GeneralRe: Pb with CPropertySheetEx2 Pin
Martin Ziacek12-Sep-02 8:17
Martin Ziacek12-Sep-02 8:17 
GeneralRe: Pb with CPropertySheetEx2 Pin
Cyril Boutamine16-Sep-02 5:11
Cyril Boutamine16-Sep-02 5:11 
GeneralRe: Pb with CPropertySheetEx2 Pin
Martin Ziacek16-Sep-02 9:16
Martin Ziacek16-Sep-02 9:16 
GeneralRe: Pb with CPropertySheetEx2 Pin
Cyril Boutamine16-Sep-02 20:36
Cyril Boutamine16-Sep-02 20:36 
GeneralRe: Pb with CPropertySheetEx2 Pin
Martin Ziacek16-Sep-02 20:46
Martin Ziacek16-Sep-02 20:46 
GeneralRe: Pb with CPropertySheetEx2 Pin
Anonymous16-Sep-02 21:19
Anonymous16-Sep-02 21:19 
GeneralRe: Pb with CPropertySheetEx2 Pin
Cyril Boutamine17-Sep-02 5:13
Cyril Boutamine17-Sep-02 5:13 
GeneralRe: Pb with CPropertySheetEx2 Pin
Martin Ziacek17-Sep-02 9:42
Martin Ziacek17-Sep-02 9:42 
GeneralProbs with this example Pin
31-Aug-02 3:03
suss31-Aug-02 3:03 
GeneralRe: Probs with this example Pin
Martin Ziacek31-Aug-02 19:54
Martin Ziacek31-Aug-02 19:54 
GeneralIt's cool !! Pin
3-Jun-02 13:30
suss3-Jun-02 13:30 
GeneralRe: It's cool !! Pin
Martin Ziacek5-Jun-02 0:33
Martin Ziacek5-Jun-02 0:33 
GeneralResizing and getting real client dimensions... Pin
Jonathan de Halleux30-May-02 5:12
Jonathan de Halleux30-May-02 5:12 
GeneralRe: Resizing and getting real client dimensions... Pin
Martin Ziacek30-May-02 5:36
Martin Ziacek30-May-02 5:36 
GeneralRe: Resizing and getting real client dimensions... Pin
Jonathan de Halleux30-May-02 5:53
Jonathan de Halleux30-May-02 5: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.