Tooltips in modal dialog boxes
Posted
by Henk Devos
on January 25th, 1999
BOOL CToolTipDialog::PreTranslateMessage(MSG *pMsg)
{
if (c_bShowToolTips &&
pMsg->message >= WM_MOUSEFIRST &&
pMsg->message <= WM_MOUSELAST)
{
MSG msg;
::CopyMemory(&msg, pMsg, sizeof(MSG));
HWND hWndParent = ::GetParent(msg.hwnd);
while (hWndParent && hWndParent != m_hWnd)
{
msg.hwnd = hWndParent;
hWndParent = ::GetParent(hWndParent);
}
if (msg.hwnd)
{
m_wndToolTip.RelayEvent(&msg);
}
}
return CDialog::PreTranslateMessage(pMsg);
}
As pointed out by Richard Collins, it is not enough to just relay the mouse events to the tooltip control. This would not work for controls that have child windwos. A combo box for example has an edit control as a child. When a mouse message is sent to this edit control, hWndParent will be the combo box, not the dialog. The message is adjusted to make the tooltip control believe it was actually sent to the combo box. Of course, the original message is passed on to the base class function.
Code Reuse
The CodeGuru site already contains an article by Dave Bixler that does just the same. However, Dave tells us to write the same code over and over again for every dialog. There are two reasons why you should avoid this:Extending MFC
This sample only contains a very small piece of code. You might wonder if it is worth the effort of making a general base class and deriving from it. However, you can put other stuff in this class later on, and all your dialogs will get the new stuff for free. This is a general principle that should be adhered to. When deriving a class from an MFC class, you should always create a middle class like this one. Everything that is general goes in the base class, everything that is application specific goes in the derived one. The result: When you are finished creating an application, you will have your own extension library to MFC. All functionality is there to be used in a new application.Putting strings in the resource file
This may not be clear to Americans, but Europeans know all about it: you should put all your strings in a resource file. Microsoft has warned us often enough. Why? Because one day or another, people start asking if they can get a French, German,... version of your software. It might happen to you to, once your application is starting to get known all over the world.Making thing go automatically
The spirit of MFC is making things go automatically. All kinds of terrible macros are invented to make the framework usable by wizards and all kinds of resources are loaded without you knowing it. As an example, tool tips for toolbars ae automatically loaded. This does not always enhance the readability of the MFC source, but it does make life easier for programmers. When extending MFC (or simply using it), you should follow the same principles. This is why the resource strings have the same ID as the controls. You should always try to find tricks like this. It can even sometimes be useful to create new macros that fit in the message maps or other maps.Last updated: January 25, 1999

Comments
tooltips
Posted by Legacy on 05/14/2003 12:00amOriginally posted by: jotham
msdn of april 2000 has a sample program called drawcl
Replyhow does one create tooltips for the polygons or shapes drawn
Automatic Tooltips for any control
Posted by Legacy on 05/14/2002 12:00amOriginally posted by: Jaz
ReplyComboBoxEx
Posted by Legacy on 04/16/1999 12:00amOriginally posted by: Philip Lee
The latest code works with standard combo boxes but not combo box ex. Any ideas?
Reply