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

XTipComboBox - Display tooltips for combobox

Rate me:
Please Sign up or sign in to vote.
4.47/5 (28 votes)
1 Jul 2003CPOL3 min read 306K   4.5K   75   56
XTipComboBox implements a combobox with tooltips for the data items (both in the list box and in the edit box)

Introduction

XTipComboBox displays tooltips for a combobox, just like tooltips are displayed for a tree control whose items are too long to fit in tree control's client area. When a listbox item in combobox is too long to fit in the listbox, a tooltip will be displayed that allows viewing of complete text. Similarly, a tooltip is displayed when text in combo's edit box is too wide for edit box.

Here is how the tooltips look - note that the tooltip colors will match what is being tooltipped:

        screenshot


        screenshot


        screenshot


Implementation Notes

CXTipComboBox is derived from CComboBox, and implements one virtual function and four message handlers:
  • PreSubclassWindow() - this virtual function allows us to create tooltip window, add combobox as its tool, and perform other initialization. Note use of TTF_TRANSPARENT. This flag tells tooltip control to forward mouse messages (including mouse clicks) to the parent window. In the case of the listbox, this will prevent two CBN_SELENDOK messages from being sent to the parent dialog.

  • OnCtlColor() - This is not what you think. According to MSDN article HOWTO: Subclass CListBox and CEdit Inside of CComboBox (Q174667), this is actually recommended way of subclassing listbox of a combobox. We use this to subclass listbox only - for edit box, it is simpler to handle inside CXTipComboBox.

  • OnMouseMove() - This message handler catches mouse moves, and when mouse is inside combo client rect, tooltip will be activated.

  • OnTimer() - A timer is used only when a tooltip is being displayed. When code in OnTimer() detects that mouse is no longer inside client rect, tooltip is removed.

  • OnDestroy() - Unsubclasses the listbox.

Note that nearly identical code is implemented for first four functions in XTipComboBox.cpp and XTipListBox.cpp.

Tooltip Notes

As mentioned above, tooltip is created in PreSubclassWindow():
// create tooltip
m_hWndToolTip = ::CreateWindowEx(WS_EX_TOPMOST,
                          TOOLTIPS_CLASS,
                          NULL,
                          TTS_NOPREFIX | TTS_ALWAYSTIP,
                          CW_USEDEFAULT,
                          CW_USEDEFAULT,
                          CW_USEDEFAULT,
                          CW_USEDEFAULT,
                          m_hWnd,
                          NULL,
                          NULL,
                          NULL);
ASSERT(m_hWndToolTip);

// initialize toolinfo struct
memset(&m_ToolInfo, 0, sizeof(m_ToolInfo));
m_ToolInfo.cbSize = sizeof(m_ToolInfo);
m_ToolInfo.uFlags = TTF_TRACK | TTF_TRANSPARENT;
m_ToolInfo.hwnd = m_hWnd;

// add combo box
::SendMessage(m_hWndToolTip, TTM_SETMAXTIPWIDTH, 0, SHRT_MAX);
::SendMessage(m_hWndToolTip, TTM_ADDTOOL, 0,
                                      (LPARAM) (LPTOOLINFO) &m_ToolInfo);
::SendMessage(m_hWndToolTip, TTM_SETTIPBKCOLOR,
                                      ::GetSysColor(COLOR_HIGHLIGHT), 0);
::SendMessage(m_hWndToolTip, TTM_SETTIPTEXTCOLOR,
                                  ::GetSysColor(COLOR_HIGHLIGHTTEXT), 0);

// reduce top & bottom margins
CRect rectMargins(0,-1,0,-1);
::SendMessage(m_hWndToolTip, TTM_SETMARGIN, 0, (LPARAM)&rectMargins);

// set font
CFont *pFont = GetFont();
::SendMessage(m_hWndToolTip, WM_SETFONT, (WPARAM)(HFONT)*pFont, FALSE);
In typical dialog box situations, you would need to use RelayEvent() along with LPSTR_TEXTCALLBACK to pass tooltip text to tooltip control. Since we are dealing with two separate controls (edit box and list box) wrapped in one combobox control, it is easier to intercept mouse moves and position the tooltip ourselves. Inside OnMouseMove(), we determine position of the mouse, get text underneath, and calculate whether text will fit inside client rect. If it won't fit, we display tooltip, using TTM_TRACKACTIVATE message. Here we also set text and background colors for tooltip, depending on what is being tooltipped. Finally, a timer is used to keep track of when mouse moves outside client rect, so that tooltip will be removed.

How To Use

To integrate CXTipComboBox into your app, you first need to add following files to your project:

  • XTipComboBox.cpp
  • XTipComboBox.h
  • XTipListBox.cpp
  • XTipListBox.h

Next, include header file XTipComboBox.h in appropriate project files (usually, dialog header files). Now you are ready to start using CXTipComboBox. If you already have a dialog box with combobox controls, just replace CComboBox with CXTipComboBox in the dialog header file. There is no extra initialization you need to do.

Demo App

The XTipComboBoxTest.exe demo shows how to use CXTipComboBox.

Revision History

Version 1.0 - 2003 June 30

  • Initial public release.

Usage

This software is released into the public domain. You are free to use it in any way you like. If you modify it or extend it, please to consider posting new code here for everyone to share. This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.



License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Hans Dietrich Software
United States United States
I attended St. Michael's College of the University of Toronto, with the intention of becoming a priest. A friend in the University's Computer Science Department got me interested in programming, and I have been hooked ever since.

Recently, I have moved to Los Angeles where I am doing consulting and development work.

For consulting and custom software development, please see www.hdsoft.org.






Comments and Discussions

 
GeneralCompile error Pin
reiser4-Oct-04 21:51
reiser4-Oct-04 21:51 
GeneralSlightly off-topic question: combo drop-down arrow Pin
David Pritchard22-Sep-04 6:56
David Pritchard22-Sep-04 6:56 
GeneralBug and Fix Pin
Andrew115-Aug-04 3:06
Andrew115-Aug-04 3:06 
GeneralMouse wheel Pin
halloandy15-Jan-04 3:00
halloandy15-Jan-04 3:00 
GeneralXTipComboBox in Toolbar Pin
simonpp18-Sep-03 15:04
simonpp18-Sep-03 15:04 
GeneralRe: XTipComboBox in Toolbar Pin
srisahana27-May-04 21:53
srisahana27-May-04 21:53 
GeneralRe: XTipComboBox in Toolbar Pin
srisahana27-May-04 21:53
srisahana27-May-04 21:53 
GeneralDoesnt work with VC++ 7.0 Pin
Umair Ahmad11-Sep-03 23:12
Umair Ahmad11-Sep-03 23:12 
I compiled your test project on VC7 and it doesnt work. I compiled the same code in VC6 on the same machine, and it works. Debugging the code reveals that its working exactly like its supposed to in both the builds, but somehow the tooltips dont show up in VC7. I'm totally confused here. Please help.
GeneralRe: Doesnt work with VC++ 7.0 Pin
Gemini_II1-Nov-04 22:04
Gemini_II1-Nov-04 22:04 
GeneralRe: Doesnt work with VC++ 7.0 Pin
Umair Ahmad2-Nov-04 3:58
Umair Ahmad2-Nov-04 3:58 
QuestionHow to create this XTipComboBox dynamically? Pin
edison3-Sep-03 4:34
edison3-Sep-03 4:34 
AnswerRe: How to create this XTipComboBox dynamically? Pin
gangadhar npk17-Nov-03 1:17
gangadhar npk17-Nov-03 1:17 
GeneralRe: How to create this XTipComboBox dynamically? Pin
nismael16-Jun-05 11:45
nismael16-Jun-05 11:45 
GeneralRe: How to create this XTipComboBox dynamically? Pin
qsc555@163.com2-Jul-07 23:41
qsc555@163.com2-Jul-07 23:41 
GeneralWhat's about CComboBoxEx Pin
OCV6-Aug-03 2:21
OCV6-Aug-03 2:21 
GeneralRe: What's about CComboBoxEx Pin
Cool19768-Jun-04 20:41
Cool19768-Jun-04 20:41 
GeneralRe: What's about CComboBoxEx Pin
Tim D11-Mar-08 14:09
Tim D11-Mar-08 14:09 
GeneralEliminate flickering in CXTipListBox and solve the bug regarding the tooltips being displayed 'behind' the ScrollBar Pin
Liviu Birjega17-Jul-03 9:03
Liviu Birjega17-Jul-03 9:03 
GeneralRe: Eliminate flickering in CXTipListBox and solve the bug regarding the tooltips being displayed 'behind' the ScrollBar Pin
Premek20-Jul-03 23:19
Premek20-Jul-03 23:19 
GeneralRe: Eliminate flickering in CXTipListBox and solve the bug regarding the tooltips being displayed 'behind' the ScrollBar Pin
Jacques Cooper14-Dec-03 0:14
Jacques Cooper14-Dec-03 0:14 
QuestionPossible ScrollBar bug? Pin
Premek16-Jul-03 2:59
Premek16-Jul-03 2:59 
AnswerRe: Possible ScrollBar bug? Pin
Liviu Birjega17-Jul-03 8:07
Liviu Birjega17-Jul-03 8:07 
GeneralRe: Possible ScrollBar bug? Pin
Gemini_II3-Nov-04 21:03
Gemini_II3-Nov-04 21:03 
GeneralRe: Possible ScrollBar bug? Pin
John Ritzenthaler18-Jan-05 5:52
John Ritzenthaler18-Jan-05 5:52 
GeneralRe: Possible ScrollBar bug? Pin
Anonymous7-Apr-05 2:30
Anonymous7-Apr-05 2:30 

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.