Click here to Skip to main content
15,885,278 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 306.2K   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

 
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 
GeneralRe: Possible ScrollBar bug? Pin
nismael17-Jun-05 2:14
nismael17-Jun-05 2:14 
QuestionVC++ 6.0, or VC++ 7.0 ? Pin
WREY8-Jul-03 10:09
WREY8-Jul-03 10:09 
AnswerRe: VC++ 6.0, or VC++ 7.0 ? Pin
Hans Dietrich9-Jul-03 0:26
mentorHans Dietrich9-Jul-03 0:26 
At line 1909 of commctrl.h, I see
#define TTF_TRANSPARENT   0x0100

Did you try compiling, or did you just assume MSDN was accurate?

Best wishes,
Hans

p.s. I am using VC 6 with SP5 - I don't know if that makes a difference.
GeneralRe: VC++ 6.0, or VC++ 7.0 ? Pin
WREY9-Jul-03 7:25
WREY9-Jul-03 7:25 
GeneralRe: VC++ 6.0, or VC++ 7.0 ? Pin
Hans Dietrich10-Jul-03 13:10
mentorHans Dietrich10-Jul-03 13:10 
GeneralRe: VC++ 6.0, or VC++ 7.0 ? Pin
WREY10-Jul-03 18:38
WREY10-Jul-03 18:38 
GeneralNice Pin
Jean-Michel LE FOL30-Jun-03 22:13
Jean-Michel LE FOL30-Jun-03 22:13 
GeneralRe: Nice Pin
Hans Dietrich1-Jul-03 0:27
mentorHans Dietrich1-Jul-03 0:27 
GeneralRe: Nice Pin
Chunyun13-Aug-04 16:47
Chunyun13-Aug-04 16:47 

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.