Click here to Skip to main content
Licence CPOL
First Posted 29 Jun 2003
Views 207,182
Bookmarked 62 times

XTipComboBox - Display tooltips for combobox

By | 1 Jul 2003 | Article
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)

About the Author

Hans Dietrich

Software Developer (Senior)
Hans Dietrich Software
United States United States

Member

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.







Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembermanoj kumar choubey23:29 4 Apr '12  
GeneralMy vote of 5 PinmemberMember 85172490:53 11 Jan '12  
Generaltooltip flicker Pinmemberdeshmukhshivkumar23:43 9 May '11  
GeneralTip window is hidden PinmemberAndrew Phillips21:05 12 Jan '11  
GeneralCXTipComboBox does not seem to work for me -- with VS2005 Pinmemberderejem1:23 13 Apr '10  
GeneralTop most window problem PinmemberElsie21:54 9 Nov '09  
GeneralTooltip flickers on vista machine Pinmembersandeep sumbe23:38 20 Oct '09  
GeneralRe: Tooltip flickers on vista machine Pinmembersandeep sumbe22:46 1 Nov '09  
GeneralCXTipComboBox derived from CComboBoxEx PinmemberMd Saleem Navalur5:13 27 May '09  
QuestionWhy it is not working in ATL Composte control ? PinmemberJagdish Vasani0:46 18 Oct '07  
QuestionUsing this one without a manifest Pinmemberracmax0:56 13 Sep '07  
AnswerRe: Using this one without a manifest Pinmemberracmax1:07 17 Sep '07  
GeneralRe: Using this one without a manifest PinmemberJagdish Vasani3:50 18 Oct '07  
QuestionCan this feature work in ASP. Pinmemberrachellim16:19 9 Aug '06  
General.Net 2005 usage Pinmembermikeh11:50 10 May '06  
GeneralRe: .Net 2005 usage PinmemberHumanTargetJoe9:23 8 Aug '06  
GeneralVisual Basic PinsussAnonymous3:55 24 Aug '05  
GeneralIt does not work with "owner draw" boxes PinmemberMichael Sternberg2:36 25 Apr '05  
GeneralRe: It does not work with "owner draw" boxes PinmemberGilles066003:26 8 May '06  
GeneralRe: It does not work with "owner draw" boxes Pinmembermicrodus12:03 13 Feb '07  
GeneralCompile error Pinmemberreiser21:51 4 Oct '04  
GeneralSlightly off-topic question: combo drop-down arrow PinmemberDavid Pritchard6:56 22 Sep '04  
GeneralBug and Fix PinmemberAndrew13:06 15 Aug '04  
GeneralMouse wheel Pinmemberhalloandy3:00 15 Jan '04  
GeneralXTipComboBox in Toolbar Pinmembersimonpp15:04 18 Sep '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 2 Jul 2003
Article Copyright 2003 by Hans Dietrich
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid