Click here to Skip to main content
15,861,125 members
Articles / Desktop Programming / WTL
Article

ListCtrl - A WTL list control with Windows Vista style item selection

Rate me:
Please Sign up or sign in to vote.
4.91/5 (107 votes)
18 Apr 2006CPOL9 min read 513.7K   11.7K   259   146
A flexible WTL list control that supports Windows Vista style selection and cell editing.

Sample image

Introduction

Coming from an MFC background, I thought it was about time I embarked upon a new technological journey and learn how to develop fancy .NET applications, and impress everyone with my new found knowledge in C#. I've since made a great deal of progress on the trendy new platform, from learning about the internals of the CLR to the C# language syntax. However, I have one small niggling problem that won't go away. It doesn't excite me. Why it doesn't excite me is puzzling, since everyone I speak to and pretty much everything I read seems to regard the .NET framework as the best thing since someone had the bright idea of saving everyone the bother of slicing their own bread - maybe it's a control thing, or maybe I need to "let go".

Anyway, this rambling really belongs in another article; however, it serves as a good introduction into how I came into discovering WTL, and why I can't seem to kick the C++ habit in favour of fame and fortune in the world that is .NET. By the way, I should also point out that I love C++, and WTL does excite me.

Background

Whilst learning to use WTL, I decided I would begin by porting a list control I wrote a while ago using MFC and improve it along the way. This article is the fruit of my efforts - yet another list control that supports many features, but no doubt doesn't quite do everything you're looking for. But where's the fun in that!

Features

  • Vista style item selection.
  • Themed or classic UI support.
  • Item or subitem selection.
  • Subitem editing, combobox, and date/time.
  • Hyperlinks, check boxes (normal and 3-state), and progress bars (themed and solid).
  • Header column drag-drop re-ordering.
  • Built-in support for column sorting.
  • Groovy looking alpha-blending group select box.
  • Double-buffered flicker free drawing (comes free with WTL).
  • Smooth scrolling (with deceleration).
  • Titletips (not to be confused with tooltips, but that's supported also).
  • Everything looks jolly nice (not really a feature, but I thought I'd mention it).
  • Embedded data structure or class support (I'll talk about this later).
  • Data source overriding (I'll talk about this later too).

Additional

You may be interested to know that I also have a tree control that compliments the drawing style used in CListCtrl: TreeCtrl - A WTL tree control with Windows Vista style item selection.

How to use CListCtrl

First of all, I think it would be a good idea to explain subitem and column formats / flags that can be used to control how text is displayed and edited in the list control. An item format may be set at column-level, meaning all subitems under that column share the same formatting, or at an individual subitem-level that will override the column format. An example of column/subitem formatting can be found in the demo where "Column 5" has a column-level format of ITEM_FORMAT_PROGRESS, however it's been overridden for individual subitems to demonstrate other formats.

I'd encourage you to play around with the demo; however, this being CodeProject, I'm guessing you've probably already done this. For those who would like a little more detail, here are the basic functions required to get you going using the generic CListCtrl:

void SetImageList( 
    CImageList& ilItemImages
)

Description:

Assigns an image list for list control items.

Parameters:

  • ilItemImages - Reference to image list.
void AddColumn(
    CListColumn& listColumn
)

void AddColumn( 
    LPCTSTR lpszText, 
    int nWidth = 0, 
    int nImage = ITEM_IMAGE_NONE, 
    BOOL bFixed = FALSE, 
    UINT nFormat = ITEM_FORMAT_NONE, 
    UINT nFlags = ITEM_FLAGS_NONE
)

Description:

Adds a column to the list control.

Parameters:

  • listColumn - Reference to a structure describing column details.
  • lpszText - Column header title string.
  • nWidth - Width of column in pixels.
  • nImage - Index to imagelist to display in the column header.
  • bFixed - TRUE for fixed column width.
  • nFormat - Describes the format of all subitems in the column:
    • ITEM_FORMAT_NONE - Default, read-only subitem.
    • ITEM_FORMAT_EDIT - Editable subitem.
    • ITEM_FORMAT_DATETIME - Date/time subitem.
    • ITEM_FORMAT_COMBO - Combobox subitem.
    • ITEM_FORMAT_CHECKBOX - 2-state checkbox subitem.
    • ITEM_FORMAT_CHECKBOX_3STATE - 3-state checkbox subitem.
    • ITEM_FORMAT_HYPERLINK - Hyperlink (clickable) subitem.
    • ITEM_FORMAT_PROGRESS - Progress indicator subitem.
    • ITEM_FORMAT_CUSTOM - Custom subitem.
  • nFlags - Bit mask that describes the type of column format:
    • ITEM_FLAGS_NONE - No format flags (default).
    • ITEM_FLAGS_LEFT - Left justify column header and subitems text.
    • ITEM_FLAGS_RIGHT - Right justify column header and subitems text.
    • ITEM_FLAGS_CENTRE - Centre column header and subitems text.
    • ITEM_FLAGS_READ_ONLY - Subitems in column are read only (useful for ITEM_FORMAT_CHECKBOX[_3STATE] or ITEM_FORMAT_DATETIME).
    • ITEM_FLAGS_EDIT_UPPER - Edit text is forced to uppercase (ITEM_FORMAT_EDIT or ITEM_FORMAT_COMBO + ITEM_FLAGS_COMBO_EDIT).
    • ITEM_FLAGS_EDIT_NUMBER - Edit text is numerical (ITEM_FORMAT_EDIT or ITEM_FORMAT_COMBO + ITEM_FLAGS_COMBO_EDIT).
    • ITEM_FLAGS_EDIT_FLOAT - Edit text is floating-point (ITEM_FORMAT_EDIT or ITEM_FORMAT_COMBO + ITEM_FLAGS_COMBO_EDIT).
    • ITEM_FLAGS_EDIT_NEGATIVE - Edit text allows negative numbers (ITEM_FLAGS_EDIT_NUMBER or ITEM_FLAGS_EDIT_FLOAT).
    • ITEM_FLAGS_EDIT_OPERATOR - Numeric text can be preceded by ">", "<=", etc. (ITEM_FLAGS_EDIT_NUMBER or ITEM_FLAGS_EDIT_FLOAT).
    • ITEM_FLAGS_COMBO_EDIT - Combobox contains edit control (ITEM_FORMAT_COMBO).
    • ITEM_FLAGS_DATE_ONLY - Only date is shown or editable (ITEM_FORMAT_DATETIME).
    • ITEM_FLAGS_TIME_ONLY - Only time is shown or editable (ITEM_FORMAT_DATETIME).
    • ITEM_FLAGS_DATETIME_NONE - Allow "None" in date/time date picker (ITEM_FORMAT_DATETIME).
    • ITEM_FLAGS_PROGRESS_SOLID - Progress bar is drawn in solid style (ITEM_FORMAT_PROGRESS).
int AddItem(
    CListItem< TData >& listItem
)

int AddItem( 
    LPCTSTR lpszText,
    int nImage = ITEM_IMAGE_NONE,
    UINT nFormat = ITEM_FORMAT_NONE,
    UINT nFlags = ITEM_FLAGS_NONE
)

Description:

Adds an item to the list control.

Parameters:

  • listItem - Reference to a structure describing all item details.
  • lpszText - First subitem text.
  • nImage - Index to imagelist to display in first subitem (see SetImageList).
  • nFormat - Describes format of first subitem (see AddColumn for description).
  • nFlags - Bit mask that describes the type of subitem format (see AddColumn for description).
BOOL SetItemText( 
    int nItem, 
    int nSubItem, 
    LPCTSTR lpszText
)

Description:

Set subitem text.

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • lpszText - Subitem text.
BOOL SetItemDate( 
    int nItem, 
    int nSubItem, 
    SYSTEMTIME& stItemDate
)

Description:

Set subitem date (for ITEM_FORMAT_DATETIME subitems).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • stItemDate - Reference to SYSTEMTIME structure.
BOOL SetItemComboIndex( 
    int nItem, 
    int nSubItem, 
    int nIndex
)

Description:

Set subitem combobox item selection (for ITEM_FORMAT_COMBO subitems).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • nIndex - Index to combobox list to set.
BOOL SetItemCheck( 
    int nItem, 
    int nSubItem, 
    int nCheckValue
)

Description:

Set subitem checkbox state (for ITEM_FORMAT_CHECKBOX and ITEM_FORMAT_CHECKBOX_3STATE subitems).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • nCheckValue - Number representing checkbox state:
    • 0 - Unchecked (or undefined for 3-state).
    • 1 - Checked (or "tick" for 3-state).
    • -1 - "cross" for 3-state (not applicable for 2-state checkboxes).
BOOL SetItemImage(
    int nItem, 
    int nSubItem, 
    int nImage
)

Description:

Set subitem image.

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • nImage - Index to imagelist to display in subitem (see SetImageList).
BOOL SetItemFormat(
    int nItem,
    int nSubItem,
    UINT nFormat,
    UINT nFlags = ITEM_FLAGS_NONE
)

BOOL SetItemFormat( 
    int nItem,
    int nSubItem,
    UINT nFormat,
    UINT nFlags,
    CListArray < CString >& aComboList 
)

Description:

Set subitem format (overrides column format).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • nFormat - Describes the format of subitem (see AddColumn for description).
  • nFlags - Bit mask that describes the type of subitem format (see AddColumn for description).
  • CListArray < CString >& aComboList - Array of strings that are used to populate combobox (for ITEM_FORMAT_COMBO).
BOOL SetItemFont( 
    int nItem, 
    int nSubItem, 
    HFONT hFont
)

Description:

Set subitem font (overrides standard font).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • hFont - Handle to GDI font.
BOOL SetItemColours(
    int nItem,
    int nSubItem,
    COLORREF rgbBackground,
    COLORREF rgbText
)

Description:

Set subitem background and text colours (overrides standard colours).

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).
  • rgbBackground - RGB value for subitem background.
  • rgbText - RGB value for subitem text.
void ShowThemed( 
    BOOL bShowThemed = TRUE
)

Description:

Override default header and selection drawing (applies to XP+).

Parameters:

  • bShowThemed - TRUE = draw themed header and selection; FALSE = classic mode.
void SetSmoothScroll(
    BOOL bSmoothScroll = TRUE
)

Description:

Smooth scroll list when paging or line scrolling.

Parameters:

  • bSmoothScroll - TRUE = smooth scroll; FALSE = normal scroll.
void SetBackgroundImage(
    HBITMAP hBackgroundImage,
    BOOL bTileImage = FALSE
)

Description:

Set background bitmap image.

Parameters:

  • hBackgroundImage - Handle to bitmap to set as background.
  • bTileImage - TRUE = tile image; FALSE - draw image centered.
void ShowHeader( 
    BOOL bShowHeader = TRUE
)

Description:

Show or hide list header.

Parameters:

  • bShowHeader - TRUE = show list header; FALSE = hide list header.
void ShowHeaderSort( 
    BOOL bShowSort = TRUE
)

Description:

Show sort (header) arrow and support column sorting.

Parameters:

  • bShowSort - TRUE = support column sorting; FALSE = hide sort arrow.
void SetSingleSelect( 
    BOOL bSingleSelect = TRUE
)

Description:

Only allow one selection (disable multiple and group selection).

Parameters:

  • bSingleSelect - TRUE = single item selection only; FALSE = support multiple and group selection.
void SetFocusSubItem( 
    BOOL bFocusSubItem = TRUE
)

Description:

Support subitem focus or entire item selection.

Parameters:

  • bFocusSubItem - TRUE = support subitem focus; FALSE = entire item focus.

How to use CListCtrlData< class TData >

CListCtrl supports SetItemData and GetItemData; these set and retrieve DWORD values from list items that can be used for anything you like. However, you might find it more useful to integrate (or embed) your data structures or classes directly into the control. For this, you'll need the template class CListCtrlData (an example of this can be found in the demo application). The following functions can be used to access this data:

BOOL SetItemData( 
    int nItem, 
    TData& tData
)

Description:

Assigns data to an item.

Parameters:

  • nItem - Index to item (zero index).
  • tData - Reference to data structure or class (type defined in the template class declaration).
BOOL GetItemData( 
    int nItem, 
    TData& tData
)

Description:

Retrieves data from an item.

Parameters:

  • nItem - Index to item (zero index).
  • tData - Reference to data structure or class (type defined in template class declaration).

How to use CListImpl

Sometimes, it's not quite enough using the generic control. You may want to:

  1. add new features to the control,
  2. customise drawing, or
  3. take total control over the list data source.

Since there's a clear separation of the interface and the data source built into the design of CListImpl, you can simply derive a class and override the data accessor functions, thereby taking total ownership of the data source including how the data is stored and accessed. In the demo, you'll find CListUserData - this class stores its own array of CUserProfiles (example class) and returns the relevant text or image in GetItemText and GetItemImage. The only mandatory functions required in a derived class are:

int GetItemCount()

Description:

Returns the number of items in the data source.

CString GetItemText( 
    int nItem, 
    int nSubItem
)

Description:

Returns the subitem text.

Parameters:

  • nItem - Index to item (zero index).
  • nSubItem - Index to subitem (zero index).

History

  • 1.0 - (10th March 2006) First release.
  • 1.1 - (13th March 2006) Small bug fix for VS2005 - thanks chengang.
  • 1.2 - (17th March 2006) Corrected "Access violation" when compiled under VS2005, and added ShowThemed.
  • 1.3 - (27th March 2006) Added auto-scrolling when group selecting - thanks for the suggestion, Slaham.
  • 1.4 - (5th April 2006) Added smooth scrolling (SetSmoothScroll) and fixed Windows 2000 issues - thanks ihanz123.
  • 1.5 - (10th April 2006) Added background image support and SetItemComboIndex - thanks for the suggestions, MyRock.

Finally

As wonderful as this list control is, I'm afraid I can't take all the credit, since it utilises all sorts of code garnered from all manners of sources, including articles posted on CodeProject. As you might expect, ideas and code snippets have been stolen and mercilessly twisted into this project, and in the process have adopted my coding style. Apologies to anyone who recognises their work and has not been credited (drop me an e-mail and I'll amend my acknowledgements), but to the following I give thanks for pointing me in the right direction.

Acknowledgements

License

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


Written By
United Kingdom United Kingdom
Alan has been developing applications for a very long time (~10 years), but he's not bitter about this at all. My main area of expertise is C++. He lives in Sweden with his beautiful wife, daughter and son and enjoys climbing mountains and kayaking in his spare time (which isn't much).

Comments and Discussions

 
SuggestionKeyboard operation with the control on a dialog Pin
Dave Lowndes18-Jul-14 4:28
Dave Lowndes18-Jul-14 4:28 
QuestionHave a CListCtrl as an item Pin
Member 1015127111-Jul-13 9:16
Member 1015127111-Jul-13 9:16 
QuestionCImageList class no destructor, gdi leak. [modified] Pin
Member 39817042-Jul-11 19:20
Member 39817042-Jul-11 19:20 
GeneralGDI objects increase of 4 Pin
kent_fu24-Mar-11 19:12
kent_fu24-Mar-11 19:12 
GeneralRe: GDI objects increase of 4 Pin
Member 39817042-Jul-11 20:58
Member 39817042-Jul-11 20:58 
GeneralFind Item Text Pin
cave coder8-Mar-10 15:38
cave coder8-Mar-10 15:38 
Generalmemory errors when exiting the demo app... Pin
__RJH__27-Apr-09 9:45
__RJH__27-Apr-09 9:45 
Generalvery good Pin
ljx6652-Jan-09 2:59
ljx6652-Jan-09 2:59 
GeneralThank you Pin
futurejo16-Nov-08 2:43
futurejo16-Nov-08 2:43 
Generalwonderful Pin
joyjjjz25-Sep-08 22:06
joyjjjz25-Sep-08 22:06 
QuestionA question regarding use in commercial products Pin
johnnybaby25-Sep-08 5:52
johnnybaby25-Sep-08 5:52 
AnswerI see it's released under CPOL Pin
johnnybaby29-Sep-08 6:48
johnnybaby29-Sep-08 6:48 
GeneralMulti-line edit controls Pin
hunkymonkey29-Aug-08 7:35
hunkymonkey29-Aug-08 7:35 
GeneralVery nice Pin
alendarthechef23-May-08 8:34
alendarthechef23-May-08 8:34 
Generallooks very good Pin
Vlasta_16-May-08 5:57
Vlasta_16-May-08 5:57 
General#include <atlapp.h></atlapp.h> Pin
Karsten Schulz16-May-08 3:24
professionalKarsten Schulz16-May-08 3:24 
GeneralAnother bug: custom items drawing Pin
KaSA113-Feb-08 4:22
KaSA113-Feb-08 4:22 
QuestionBug report: OnRButtonUp handler Pin
KaSA127-Jan-08 6:44
KaSA127-Jan-08 6:44 
QuestionHow to reduce row's height? Pin
Quynh Nguyen10-Sep-07 23:13
Quynh Nguyen10-Sep-07 23:13 
AnswerRe: How to reduce row's height? Pin
AlanW10-Sep-07 23:22
AlanW10-Sep-07 23:22 
GeneralRe: How to reduce row's height? Pin
Quynh Nguyen10-Sep-07 23:46
Quynh Nguyen10-Sep-07 23:46 
GeneralDrawItem Questions Pin
kongh11027-Aug-07 19:39
kongh11027-Aug-07 19:39 
Questionabout the ITEM_FORMAT_EDIT and ITEM_FORMAT_PROGRESS Pin
duoluoyidai17-Jul-07 21:05
duoluoyidai17-Jul-07 21:05 
AnswerRe: about the ITEM_FORMAT_EDIT and ITEM_FORMAT_PROGRESS Pin
AlexisAlexis26-Dec-07 23:58
AlexisAlexis26-Dec-07 23:58 
Questionhow to add in front [modified] Pin
sniqaow9-Jul-07 10:48
sniqaow9-Jul-07 10:48 

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.