Click here to Skip to main content
15,883,705 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.8K   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

 
QuestionStatus Bar on bottom like in IE? Pin
aquawicket30-Oct-06 12:35
aquawicket30-Oct-06 12:35 
QuestionDoes not work if statically linking DLL! Pin
misterredtape18-Jul-06 6:50
misterredtape18-Jul-06 6:50 
GeneralProblem with dialog menu Pin
one_eddie27-Dec-04 3:20
one_eddie27-Dec-04 3:20 
GeneralCombo boxes & CDialogEx Pin
bigkim4-Jan-04 13:33
bigkim4-Jan-04 13:33 
GeneralI know its a basic doubt...but still Pin
dendude18-Dec-03 0:31
dendude18-Dec-03 0:31 
GeneralStep by step explanation will be useful Pin
bahu bali16-Sep-03 22:33
sussbahu bali16-Sep-03 22:33 
GeneralA bit offtopic. Problems with property sheets and tabs Pin
Bartek Bosowiec8-Jul-03 2:42
sussBartek Bosowiec8-Jul-03 2:42 
Generaluseful! just what i want Pin
Zhuofei Wang7-Jun-03 15:20
Zhuofei Wang7-Jun-03 15:20 
GeneralStatusBar Pin
Brian Delahunty14-Apr-03 4:01
Brian Delahunty14-Apr-03 4:01 
GeneralCool .. plus one question Pin
HMaxF13-Apr-03 18:58
HMaxF13-Apr-03 18:58 
Generalis excelent! but... Pin
musaddiq16-Feb-03 2:11
musaddiq16-Feb-03 2:11 
Generalmor information: Pin
musaddiq16-Feb-03 2:29
musaddiq16-Feb-03 2:29 
GeneralRe: mor information: Pin
musaddiq17-Feb-03 18:12
musaddiq17-Feb-03 18:12 
GeneralRe: mor information: Pin
musaddiq17-Feb-03 18:15
musaddiq17-Feb-03 18:15 
Generalis excelent! but... Pin
musaddiq16-Feb-03 2:11
musaddiq16-Feb-03 2:11 
GeneralDialog in a DLL Pin
User 4041124-Jan-03 0:58
User 4041124-Jan-03 0:58 
GeneralToolbar position Pin
Christian Reichenbach2-Dec-02 13:47
Christian Reichenbach2-Dec-02 13:47 
GeneralRe: Toolbar position Pin
tcoder8-Jan-03 17:14
tcoder8-Jan-03 17:14 
QuestionCReBar Support ? Pin
Jesper Mandal Hansen20-Nov-02 10:16
Jesper Mandal Hansen20-Nov-02 10:16 
GeneralGood Work Pin
confuzed118-Nov-02 5:12
confuzed118-Nov-02 5:12 
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 

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.