Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

List Box with ToolTips

0.00/5 (No votes)
20 Feb 2001 1  
A listbox that displays tooltips for items
  • Download source files - 5 Kb
  • Download demo project - 14 Kb
  • Sample Image - TTListBoxDemo.gif

    Introduction

    This tooltip enabled class lets the user display tooltip text for individual items. This class uses the tooltip class that is written by Dhandapani Ammasai.

    A multiline tooltip for an individual item is automatically displayed towards the right of the control and the text is updated as the mouse is moved over the individual items in the list box.

    Follow these steps to add a CTTListBox to a dialog:

    • Add TTListBox.cpp and TTListBox.h to your project.
    • Add tooltip2.cpp and tooltip2.h to your project.
    • Add include "TTListBox.h" to the header file of your dialog class.
    • Add a list box control to your dialog.
    • Use ClassWizard to add a member variable of type CTTListBox for the list box you just added. If CTTListBox is not in the Variable Type list, choose CListBox, and manually change the type to CTTListBox later.
    • In your dialog class, define a static member function which retrieves the the text for individual items. This function must be declared as:
      static CString TextRetriever(int nIndex);

      where nIndex is the index of the list box item that currently is under the mouse cursor and wants to have the text retrieved.

    • Implement the text retriever function the way you want it.
    • In your dialog's class OnInitDialog function include a statment like:
       m_listbox.SetTextRetrieverFcn(TextRetriever);

      where TextRetriever is the name of your text retriever function that you declared earlier.

    I have also implemented the same functionality for a tree control. You can e-mail me if you wish to look at how I implemented it for a tree control.

    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