Click here to Skip to main content
15,880,469 members
Articles / Desktop Programming / MFC
Article

Super Combo Box - combo-box with columns, colors and more

Rate me:
Please Sign up or sign in to vote.
4.73/5 (31 votes)
12 Apr 20042 min read 244.5K   7.1K   81   58
A CComboBox derived class that contains colors, columns, bold fonts, and images.

Sample Image - SuperComboBox.jpg

Motivation

I was looking around for a CComboBox derived class that would combine some features I needed - multiple columns, colors, icons and more.

Some of these features are found in other controls, but not under one roof, so I've decided to put them all together, in a simple way that will also have room for future growth.

Introduction

This class is a CComboBox derived class that enhances its functionalities:

  1. Multi-columns, when each column's width is controllable.
  2. An optional image-list can be supplied and an image can be set to the left of each row.
  3. Color of each row can be set.
  4. Each row can be bolded.

The code is based on Alex Hazanov's ComboBox Bold, just took it a bit further... thanks Alex.

Implementation

The WIN32/MFC implementation of a CComboBox provides DWORD element - Item Data, accessed via the SetItemData() and GetItemData() for storing extra information for each item of the combo-box. I used this member to store all the extra data I need to know of each row. This data is stored in the nested ItemData structure which is constructed for each element in the combo-box:

struct ItemData
{
    ItemData() : crTextColor(RGB(0,0,0)),nImageIndex(-1),bBold(FALSE),dwItemData(0){}
    COLORREF crTextColor;                // Row's color.
    int nImageIndex;                     // Index of the image in the image-list.
    std::map<int,CString> mapStrings;    // Map of string of all columns.
    BOOL bBold;                          // TRUE if the row is bolded.
    DWORD dwItemData;                    // Giving back the Item Data to the user...
};

All the new interface functions are added for setting the extra attributes of the combo-box by modifying the ItemData structure, and invalidating the combo-box.

For not loosing the original functionality of the CComboBox's SetItemData() and GetItemData(), the ItemData contains a DWORD member as well, that is accessed via the CComboBoxSuper.

A vector of all columns' width stores the width of all columns, and the size of this vector is also the number of columns in the combo-box.

Most of the job is done in the DrawItem function. This function is called for each item's drawing, and reads its item data, and draw the item accordingly.

Another function implemented is the virtual OnDeleteItem, which is called each time an element is removed from the combo-box, and deletes the ItemData of the element deleted from the combo-box, including ResetContent().

Usage

To use in a dialog - add a normal combo to the dialog, and replace the class from CComboBox to CComboBoxSuper.

Make sure to change the combo style to Owner Drawn Fixed and Has String in the resource editor, or by code.

To create on the fly - call create of the CComboBoxSuper object, and don't forget the styles.

Note: I always used the combo as a drop-list, in dropdown you get the first column's text only for editing.

During init function or all around the code, the following functions can be called:

  1. Setting to column number, and column width:

    void SetColumnCount(int nColumnCount); 
    /** Sets the number of columns to use - 
    new columns are inserted at default width. */
    
    void SetColumnWidth(int nColumnIndex, int nWidth); 
    /** Sets the width of a specific column. */
    m_ctrlSuperCombo.SetColumnCount(5);
    
    m_ctrlSuperCombo.SetColumnWidth(0, 100);
  2. Adding rows the combo (normal CComboBox function):

    m_ctrlSuperCombo.AddString("Row 1");
    m_ctrlSuperCombo.AddString("Row 2");
  3. Adding sub-item strings:

    void SetItemText(int nItemIndex, int nColumn, CString str); 
    /** Sets an item or sub-item text. */
    m_ctrlSuperCombo.SetItemText(1,1,"Yes");
    
    m_ctrlSuperCombo.SetItemText(2,1,"No");
  4. Setting a row color:

    void SetItemColor(int nItemIndex, COLORREF rcTextColor); 
    /** Sets a row's color. */
    m_ctrlSuperCombo.SetItemColor(1, RGB(255,0,0));
    
    m_ctrlSuperCombo.SetItemColor(2, RGB(0,128,0));
  5. Setting a row to bold (default is not bolded for all added rows):

    void SetItemBold(int nItemIndex, BOOL bBold = TRUE); 
    /** Set a specific row to bold. */
    m_ctrlSuperCombo.SetItemBold(2);
    
    m_ctrlSuperCombo.SetItemBold(1, FALSE);
  6. Setting images:

    void SetImageList(CImageList* pImageList); 
    /** Sets the image list to use - will be show 
    only if SetUseImage is called. */
    
    void SetItemImage(int nItemIndex, int nImageIndex); 
    /** Sets a row's image index. */
    
    void SetUseImage(BOOL bUseImage=TRUE) 
    /** Sets to TRUE for using the image list, 
    of FALSE to disable the use of the image-list. */
    m_ctrlSuperCombo.SetImageList(&m_ImageList);
    
    m_ctrlSuperCombo.SetUseImage();
    
    m_ctrlSuperCombo.SetItemImage(1, 1);

History

  • 20-03-2004 : Version 1.0 - First release.
  • 03-04-2004 : Change in documentations according to readers' requests.

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


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
BugDoes not display text with ampersand e.g. "Draw&Text" correctly because of missing DT_NOPREFIX flag in call DrawText Pin
User 2694230-Jun-16 22:11
professionalUser 2694230-Jun-16 22:11 
GeneralIt works (here is a method to auto adjust the column sizes and the dropdown width) Pin
g_d15-Sep-14 11:44
g_d15-Sep-14 11:44 
QuestionGood, It is my favorite Pin
maplewang2-Aug-12 0:23
maplewang2-Aug-12 0:23 
SuggestionCode : Auto Size Implementation Pin
RAJKUMARV23-Mar-12 3:13
RAJKUMARV23-Mar-12 3:13 
SuggestionAuto Sizing - Columns Pin
RAJKUMARV15-Mar-12 21:04
RAJKUMARV15-Mar-12 21:04 
QuestionWhat finally made this work for me. Pin
bramoin9-Mar-12 11:48
bramoin9-Mar-12 11:48 
QuestionLicense? Pin
cmconti13-Jul-11 8:22
cmconti13-Jul-11 8:22 
QuestionCombo-box's dropdown button color? Pin
ddas-edEn23-Jul-08 23:36
ddas-edEn23-Jul-08 23:36 
QuestionDoes it work in a DLL? Pin
Victor Monteverde9-Nov-07 9:18
Victor Monteverde9-Nov-07 9:18 
AnswerNevermind - WM_DRAWITEM Pin
Victor Monteverde12-Nov-07 7:02
Victor Monteverde12-Nov-07 7:02 
GeneralDon't work in Vs 2005 Pin
FilippoCSM6-Nov-07 2:31
FilippoCSM6-Nov-07 2:31 
QuestionGetOrCreateItemData Bug [modified] Pin
forkit29-Oct-07 14:52
forkit29-Oct-07 14:52 
I have some question for using "super combo box".
While I was programing, I found that "GetOrCreateItemData" had a bug.
In "GetOrCreateItemData" function, error happened when I used below program coding.
m_cmbDatePicker.AddString("A0088");<br />
m_cmbDatePicker.SetItemText(i++,1,"itkim");<br />
m_cmbDatePicker.AddString("A0032");<br />
m_cmbDatePicker.SetItemText(i++,1,"nisung");<br />
m_cmbDatePicker.AddString("A0053");<br />
m_cmbDatePicker.SetItemText(i++,1,"kskim");


However following codings works.
m_cmbDatePicker.AddString("A01");<br />
m_cmbDatePicker.SetItemText(i++,1,"bwhan");

GeneralErrors compiling with VS2005 Pin
User 269422-May-07 22:44
professionalUser 269422-May-07 22:44 
GeneralRe: Errors compiling with VS2005 Pin
forkit31-Oct-07 4:05
forkit31-Oct-07 4:05 
GeneralRe: Errors compiling with VS2005 Pin
User 2694211-Nov-07 22:03
professionalUser 2694211-Nov-07 22:03 
Question.Net? Pin
CmazSmith24-Jan-07 5:17
CmazSmith24-Jan-07 5:17 
GeneralAdded functionality: disabled items Pin
mg-patrickp16-Jan-07 5:44
mg-patrickp16-Jan-07 5:44 
GeneralRe: Added functionality: disabled items Pin
ronhash29-Jan-07 9:11
ronhash29-Jan-07 9:11 
QuestionBackground color Pin
TheIronFist12-Dec-06 10:33
TheIronFist12-Dec-06 10:33 
AnswerRe: Background color Pin
TheIronFist29-Dec-06 1:15
TheIronFist29-Dec-06 1:15 
GeneralRe: Background color Pin
ronhash29-Jan-07 9:13
ronhash29-Jan-07 9:13 
QuestionDrop-down button color Pin
ddas-edEn23-Jul-08 23:34
ddas-edEn23-Jul-08 23:34 
QuestionCombobox is 3 pixels bigger in height than normal? Pin
Fuzzychaos29-Oct-06 9:23
Fuzzychaos29-Oct-06 9:23 
AnswerRe: Combobox is 3 pixels bigger in height than normal? Pin
ronhash29-Oct-06 15:16
ronhash29-Oct-06 15:16 
AnswerRe: Combobox is 3 pixels bigger in height than normal? Pin
Fuzzychaos30-Oct-06 15:13
Fuzzychaos30-Oct-06 15:13 

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.