Click here to Skip to main content
6,595,444 members and growing! (19,410 online)
Email Password   helpLost your password?
Desktop Development » List Controls » Custom Draw     Intermediate License: The Code Project Open License (CPOL)

CGridListCtrlEx - Grid Control Based on CListCtrl

By Snakefoot

A custom draw CListCtrl with subitem editing and formatting
C++, Windows, MFC, Dev
Version:5 (See All)
Posted:3 Sep 2008
Updated:16 Sep 2009
Views:68,188
Bookmarked:127 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
31 votes for this article.
Popularity: 7.11 Rating: 4.77 out of 5
1 vote, 3.2%
1

2
1 vote, 3.2%
3
3 votes, 9.7%
4
26 votes, 83.9%
5

Introduction

Microsoft's CListCtrl has support for displaying data in a grid using the report style, but we have to make several changes to implement features like:

This article demonstrates how to use CGridListCtrlEx, which implements all the above features while maintaining the Windows XP/Vista look.

screenshot.png

The Google Code - CGridListCtrlEx can be used if wanting SubVersion access, and there is also Doxygen Documentation.

Background

There are lots of advanced grid controls that extend the CListCtrl, and one of those is the Enhanced List Control (CGfxListCtrl). This wonderful control provides all the above features, but fails to handle Windows XP and Vista. Finding a good replacement for this control is not very easy:

  • MFC Grid Control - Doesn't inherit from CListCtrl so it is not restricted by it, but it will not benefit from any improvements that Microsoft adds to the CListCtrl.
  • Ultimate Grid - Like MFC Grid Control, it doesn't inherit from CListCtrl. Originally one had to buy it, but now it is free to use.
  • CQuickList - Very close to being a perfect replacement, but hard to add new ways to display data, and it requires LVS_OWNERDATA that makes sorting a little harder.
  • XListCtrl - Also a very complete CListCtrl, but hard to add new ways to display data, and it fails to support LVS_OWNERDATA. One now has to buy a license, to get the latest version.
  • Another Report List Control - Simple and easy to use, but lacks other means to edit data besides using CEdit, and also misses subitem navigation.
  • CListCtrlEx - Implements lots of feature and is well documented. Originally required LVS_OWNERDRAWFIXED, and now evolved into using custom draw. The combination of both custom draw and owner draw causes the code to be a little complicated, and it also doesn't support LVS_OWNERDATA.

The CGridListCtrlEx tries to be simple, while still providing the ability to customize how a cell should be displayed and edited. In case Microsoft extends their CListCtrl again, then hopefully, the core of CGridListCtrlEx will continue to function.

How to Use the CGridListCtrlEx

The CGridListCtrlEx tries to stay true to the CListCtrl, and doesn't try to replace anything the CListCtrl already provides. This means we can replace a CListCtrl with CGridListCtrlEx without needing to do anything more.

It is recommended that we don't use the CGridListCtrlEx directly, but create a new class that inherits/derives from CGridListCtrlEx. This will make it easier to migrate any updates there will be to the CGridListCtrlEx class later on.

Editing Cells/Subitems

By default, when inserting columns in the CGridListCtrlEx, they will be configured as read-only, without the ability to be edited. By using CGridListCtrlEx::InsertColumnTrait(), we can provide a CGridColumnTrait class which specifies what type of editor it should use.

CGridColumnTrait* pTrait = new CGridColumnTraitEdit;
m_ListCtrl.InsertColumnTrait(nCol, title.c_str(), LVCFMT_LEFT, 100, nCol, pTrait);

When having edited an item, a standard LVN_ENDLABELEDIT message will be sent to the CListCtrl. When the CGridListCtrlEx receives this message, it will automatically call the virtual method CGridListCtrlEx::OnTraitEditComplete(), allowing a derived class to validate the input and maybe update an underlying data model.

Editing Cells/Subitems with a Combo-box

By using CGridListCtrlEx::InsertColumnTrait(), we can also provide a CGridColumnTrait class which works as a CComboBox.

CGridColumnTraitCombo* pTrait = new CGridColumnTraitCombo;
pTrait->AddItem(0, "Hello");
pTrait->AddItem(1, "Goodbye");
m_ListCtrl.InsertColumnTrait(nCol, title.c_str(), LVCFMT_LEFT, 100, nCol, pTrait);

We can specify the items of the CComboBox when inserting the columns (as shown above). If we want to provide the CComboBox items dynamically, then we can override the CGridListCtrlEx::OnTraitEditBegin(), and then either use dynamic_cast<> or use the CGridColumnTraitVisitor to modify the items in the CComboBox.

Sorting Rows

By default, the GridListCtrlEx will have sorting enabled for all columns, where it will perform a simple text-comparison. If we want a more advanced sorting, then we can override the CGridListCtrlEx::SortColumn() method. Then, it is just a matter of choosing the right way to perform the sorting. See CListCtrl and Sorting Rows.

Showing Tooltip

By default, the CGridListCtrlEx will just display the cell contents as tooltip. If we want to display something different in the tooltip, then we can override the CGridListCtrlEx::OnDisplayCellTooltip() method.

Formatting Cells/Subitems

If we want to change the foreground/background color or the font style (bold, italic, underline), then we can override the methods CGridListCtrlEx::OnDisplayCellColor() and CGridListCtrlEx::OnDisplayCellFont().

Displaying Cell/Subitem Images

The CGridListCtrlEx enables the extended style LVS_EX_SUBITEMIMAGES by default, but one is still required to attach a CImageList using CListCtrl::SetImageList().

After having attached the images, one can bind a cell/subitem with an index in the CImageList. This can be done with CGridListCtrlEx::SetCellImage(), or if using I_IMAGECALLBACK then return the image index by overriding CGridListCtrlEx::OnDisplayCellImage().

The CGridListCtrlEx also enables the extended style LVS_EX_GRIDLINES by default, which can cause subitem images to overlap the grid border. This can be solved by making sure that the image only uses 15 of the 16 pixels (first pixel transparent).

When using subitem images and running the application on Windows XP or using classic style, it will show a white background when a row is selected. This can be fixed by using CGridRowTraitXP:

m_ListCtrl.SetDefaultRowTrait(new CGridRowTraitXP);

Changing Row Height

The CGridListCtrlEx uses customdraw, so there are only these available solutions:

  • Assign a CImageList where the image has the height wanted for the row.
  • Change the font of the grid control, and the row height will follow. CGridListCtrlEx::SetCellMargin() uses this trick to increase the font of the grid control, while keeping the row font intact.

Changing the Empty Markup Text

When the CGridListCtrlEx doesn't contain any items, it will display markup text to indicate the list is empty.

Use CGridListCtrlEx::SetEmptyMarkupText() to change this markup text. If providing empty text, then it will behave like a normal CListCtrl.

If using CGridListCtrlGroups, it will instead react to LVN_GETEMPTYMARKUP if running on Windows Vista.

Load and save column width and position

CGridColumnManagerProfile provides the ability to store the width, position and whether columns are shown. After having added all available columns to the CGridListCtrlEx, assign an instance of CGridColumnManagerProfile using CGridListCtrlEx::SetupColumnConfig() and it will restore the last saved column configuration through CWinApp.

m_ListCtrl.SetupColumnConfig(new CGridColumnManagerProfile("MyList"));

If using CGridListCtrlEx several places in your application, then one should ensure creation of a unique CGridColumnManagerProfile for each place.

OLE Drag and Drop

CGridListCtrlEx can both work as an OLE drag source and an OLE drop target. This allows drag operations between the CGridListCtrlEx and other windows and applications.

CGridListCtrlEx supports reordering of rows when doing internal drag and drop. This is implemented using a special sort operation, so items are not deleted/inserted.

To implement your own special behavior for a drop operation, either override OnDropSelf() or OnDropExternal() depending on what situation you want to handle.

To control what is placed in the drag-source when a drag is initiated, override OnDisplayToDragDrop().

How Does the CGridColumnTrait Work

CGridListCtrlEx tries to keep away from all the nasty details about how to display and edit data. These things are instead handled by the CGridColumnTrait class, and if we want to modify how data is displayed, then it is "just" a matter of creating a new CGridColumnTrait class.

When inserting a column, we can assign a CGridColumnTrait to the column. The CGridListCtrlEx will activate the appropriate CGridColumnTrait when we need to draw a cell in that column, or edit a cell in the column.

The CGridColumnTrait includes some special members known as meta-data. These members can be used by your own class when it derives from CGridListCtrlEx, so we can easily add extra properties to a column.

When inheriting from CGridColumnTrait, we must consider the following:

  • If performing custom drawing, we must also handle the selection and focus coloring.
  • If performing editing, we must ensure that the editor closes when it loses focus, and also sends a LVN_ENDLABELEDIT message when the edit is complete.

How Does the CGridRowTrait Work

It is based on the same idea as CGridColumnTrait but operates at row level instead of column level. This is useful for situations where one has to modify the display behavior of all columns.

Using the Code

The source code includes the following classes:

  • CGridListCtrlEx - The specialized CListCtrl
  • CGridListCtrlGroups - CGridListCtrlEx extended with support for grouping
  • CGridColumnTrait - Specifies the interface of a column-trait
    • CGridColumnTraitText - Implements cell formatting
      • CGridColumnTraitEdit - Implements cell editing with CEdit
      • CGridColumnTraitCombo - Implements cell editing with CComboBox
      • CGridColumnTraitDateTime - Implements cell editing with CDateTimeCtrl
  • CGridRowTrait - Specifies the interface of a row trait
    • CGridRowTraitText - Implements row formatting
    • CGridRowTraitXP - Implements drawing of subitem image background when using classic- or XP-style
  • CGridColumnnManager - Specifies the interface for managing column persistence
    • CGridColumnManagerProfile - Implements the interface for working with multiple column configurations.

Things To Do

The CGridListCtrlEx tries to stay away from performing any drawing itself. This means that the following features/bugs will not get that much attention:

  • Support for checkboxes - Requires a CGridColumnTrait class that draws the entire cell. Maybe consider some misuse of the iImage property of LV_ITEM to store the checkbox state.
  • Support for progress bar - Requires a CGridColumnTrait class that draws the entire cell.

Implementing a CGridColumnTrait class that draws the entire cell could probably be done by stealing/borrowing some code from ListCtrl - A WTL List Control with Windows Vista Style Item Selection.

Contributions to this project are very welcome.

History

  • Version 1.0 (2008-09-04) First release
  • Version 1.1 (2008-09-18)
    • Added support for grouping with CGridListCtrlGroups
    • Added CDateTimeCtrl editor
    • Fixed drawing bugs when using Classic- and XP-style
      • Fixed image background color for selected subitems (no longer white)
      • Fixed grid border disappearing when scrolling right and left
    • Indicate the list is empty when it contains no items
    • Extended CComboBox editor, so it automatically resizes dropdown width to its contents
  • Version 1.2 (2008-09-24)
    • Replaced the CGridListCtrlXP with CGridRowTraitXP
    • Fixed some reported bugs
  • Version 1.3 (2008-10-09)
    • Fixed extended style when used in CView
    • Fixed positioning of context-menu when using keyboard shortcut (SHIFT+F10)
    • Fixed compiler errors that appeared when using Visual Studio 6 (VC6)
  • Version 1.4 (2008-11-07)
    • Added clipboard support for copying the contents of the selected cell / rows
    • Renamed the "Callback"-functions to "OnDisplay", as it resembles the MFC naming convention
    • Fixed some reported bugs
  • Version 1.5 (2009-03-29)
    • Added column manager CGridColumnManager
    • Added support for groups on VC6 with platform SDK
    • Added sample projects for the different versions of Visual Studio
    • Improved documentation through Doxygen comments
  • Version 1.6 (2009-09-13)
    • Added OLE drag and drop support
    • Added support for checkbox style LVS_EX_CHECKBOX when using LVS_OWNERDATA
    • Added better support for keyboard search with LVS_OWNERDATA
    • Fixed several bugs

License

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

About the Author

Snakefoot


Member

Occupation: Software Developer
Location: Denmark Denmark

Other popular List Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 157 (Total in Forum: 157) (Refresh)FirstPrevNext
QuestionWhat is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs2:37 5 Nov '09  
AnswerRe: What is the purpose of the extra (blank) column in the demo code? PinmemberSnakefoot2:59 5 Nov '09  
QuestionRe: What is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs6:38 5 Nov '09  
AnswerRe: What is the purpose of the extra (blank) column in the demo code? PinmemberSnakefoot11:15 5 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs5:09 6 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? PinmemberSnakefoot5:20 6 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs5:35 6 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs2:42 7 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? PinmemberSnakefoot3:09 7 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? Pinmembertsjcs3:22 7 Nov '09  
GeneralRe: What is the purpose of the extra (blank) column in the demo code? PinmemberSnakefoot5:13 7 Nov '09  
GeneralProblem with selection when using ImageList PinmemberJames Duy Trinh (VietDoor)15:02 22 Oct '09  
GeneralRe: Problem with selection when using ImageList PinmemberSnakefoot22:52 22 Oct '09  
GeneralChange text/back color of any row? PinmemberJames Duy Trinh (VietDoor)0:12 22 Oct '09  
GeneralGetting a return key press (VK_RETURN) to edit a cell PinmemberGareth Tye3:26 30 Sep '09  
GeneralRe: Getting a return key press (VK_RETURN) to edit a cell PinmemberSnakefoot12:45 30 Sep '09  
GeneralRe: Getting a return key press (VK_RETURN) to edit a cell PinmemberGareth Tye2:02 1 Oct '09  
QuestionEnding editing in dialog with ESC causing crash? PinmemberVachaun227:09 29 Sep '09  
AnswerRe: Ending editing in dialog with ESC causing crash? PinmemberSnakefoot7:12 29 Sep '09  
AnswerRe: Ending editing in dialog with ESC causing crash? PinmemberSnakefoot10:16 29 Sep '09  
GeneralRe: Ending editing in dialog with ESC causing crash? PinmemberVachaun2210:22 29 Sep '09  
GeneralHow to insert checkbox for gridcolumn? Pinmembergasparzinho4:17 25 Sep '09  
GeneralRe: How to insert checkbox for gridcolumn? PinmemberSnakefoot4:42 25 Sep '09  
GeneralIs there any idea to add Slider as editor to cell? PinmemberBehzad Ebrahimi19:16 18 Sep '09  
GeneralRe: Is there any idea to add Slider as editor to cell? PinmemberSnakefoot0:32 19 Sep '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 16 Sep 2009
Editor: Deeksha Shenoy
Copyright 2008 by Snakefoot
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project