Click here to Skip to main content
15,881,204 members
Articles / Desktop Programming / MFC

CListCtrl and Grouping Rows

Rate me:
Please Sign up or sign in to vote.
4.92/5 (38 votes)
27 Jul 2011CPOL3 min read 240.6K   8.7K   120   64
Example of how to enable categories in the MFC list control

Introduction

Microsoft's CListCtrl has support for displaying data in a grid, but also supports grouping of data. This article will demonstrate how we can activate the grouping functionality of CListCtrl.

The demo application allows you to experience how grouping can be used. Just right-click a column header, to group the data according to that header.

screenshot.png

Background

Microsoft extended the CListCtrl with support for grouping, with the release of Windows XP. The new feature wasn't promoted that much, and was also limited in functionality (no collapsing of groups). The implementation was later extended with more functionality when Windows Vista was released (collapsing, footer, subtitle, and more).

There are already some .NET articles describing how to use grouping in Windows XP:

There is also MSDN - Windows Vista Control Enhancements, which describes some of the new stuff in Windows Vista.

The first time I actually saw a useful application make use of this grouping feature was with TortoiseSVN 1.5.

How To Activate Grouping in CListCtrl

Before grouping can be activated, some things have to be in order:

  • The Operating System must support Common Controls ver. 6 (Windows XP/Vista and newer)
  • The application must enable Common Controls ver. 6 through its manifest
  • The application must be compiled with _WIN32_WINNT set to at least 0x0501

When the above requirements are met, we can create a group like this:

C++
LRESULT CListCtrl_Category_Groups::CreateSingleGroup(int nIndex, 
                  int nGroupId, const CString& strHeader)
{
    EnableGroupView( TRUE );
 
    LVGROUP lg = {0};
    lg.cbSize = sizeof(lg);
    lg.iGroupId = nGroupId;
    lg.state = LVGS_NORMAL;
    lg.mask = LVGF_GROUPID | LVGF_HEADER | LVGF_STATE | LVGF_ALIGN;
    lg.uAlign = LVGA_HEADER_LEFT;
 
    // Header-title must be unicode (Convert if necessary)
    lg.pszHeader = strHeader.GetBuffer();
    lg.cchHeader = strHeader.GetLength();
    nGroupId = InsertGroup(nIndex, &lg );
    if (nGroupId==-1)
        return nGroupId;
 
    // Insert all current items into this group
    for(int nRow = 0; nRow < GetItemCount(); ++nRow)
    {
        LVITEM lvItem = {0};
        lvItem.mask = LVIF_GROUPID;
        lvItem.iItem = nRow;
        lvItem.iSubItem = 0;
        lvItem.iGroupId = nGroupID;
        SetItem( &lvItem );
    }
}

The above example code creates a new group with the following properties:

  • The group will be inserted at nIndex in the CListCtrl internal list of groups.
  • The group will get the external identifier nGroupId.
  • The group headline will become the text-string strHeader.

Limitations in Windows XP

When working with groups on Windows XP, we will discover the following are missing:

  • It is not possible to ask how many groups there are in the CListCtrl internal list of groups. Instead, it is recommended to keep track of the created groups ourselves.
  • It is not possible to iterate over the groups in the CListCtrl internal list of groups. Instead, it is recommended to keep track of the created groups ourselves.
  • It is not possible to ask the CListCtrl if the mouse cursor is currently over a group. Instead, we have to do a lot of guessing.
  • It is not possible to change the group state, so it becomes collapsed.

These limitations have been solved with Windows Vista, and at the same time, the following features have been added:

  • Can attach a task-link to the group
  • Can provide a subtitle-text that is placed just below the header-text
  • Can provide a footer-text to the group

Using the Source Code

The source code provided demonstrates how to activate the different grouping features:

  • InsertGroupHeader() - Creates a new group. Wrapper around CListCtrl::InsertGroup().
  • SetRowGroupId() - Adds a row to an existing group. Wrapper around CListCtrl::SetItem() with LVIF_GROUPID.
  • GroupByColumn(int nCol) - Creates a new group for each unique cell text in the specified column.
  • SortColumn(int nCol) - Sorts the groups generated from the specified column. Wrapper around CListCtrl::SortGroups().
  • GroupHitTest(const CPoint& point) - Attempts to find the group below the given mouse point.
  • CheckEntireGroup() - When having the CListCtrl extended style LVS_EX_CHECKBOXES enabled, this method will change the check box state of an entire group.

It also demonstrates how to use some of the new Windows Vista features:

  • CollapseAllGroups() - Loops through all the groups and makes them collapse. Wrapper around CListCtrl::SetGroupInfo() with LVGS_STATE.
  • SetGroupTask() - Changes the task-link of a group. When the user clicks the task link, it will generate a LVN_LINKCLICK message.
  • SetGroupSubtitle() - Changes the subtitle of a group.
  • SetGroupFooter() - Changes the footer of a group.

History

  • 2008-09-16 - First release of the article
  • 2009-09-28 - Backport of bug-fixes from CGridListCtrlEx, and at startup it now groups the rows by the 3rd column
  • 2011-07-27 - Fixed bug in GroupHitTest() when used on Vista\Win7 and compiled with _WIN32_WINNT >= 0x0600

License

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


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

Comments and Discussions

 
QuestionHow to get number of item in a group? Pin
Member 1064177919-Oct-16 18:59
Member 1064177919-Oct-16 18:59 
AnswerRe: How to get number of item in a group? Pin
Rolf Kristensen19-Oct-16 19:45
Rolf Kristensen19-Oct-16 19:45 
QuestionCustom Draw: borders are drawn between items Pin
Gregory Nisnevich19-Oct-14 12:29
Gregory Nisnevich19-Oct-14 12:29 
QuestionHow to get items from Group? Pin
Omar.Pessoa27-Aug-14 7:00
Omar.Pessoa27-Aug-14 7:00 
AnswerRe: How to get items from Group? Pin
Rolf Kristensen3-Sep-14 22:12
Rolf Kristensen3-Sep-14 22:12 
Questionhow can i group column Pin
yixuan17830-Jul-14 16:40
yixuan17830-Jul-14 16:40 
AnswerRe: how can i group column Pin
Rolf Kristensen30-Jul-14 20:20
Rolf Kristensen30-Jul-14 20:20 
GeneralRe: how can i group column Pin
yixuan1781-Aug-14 4:43
yixuan1781-Aug-14 4:43 
QuestionHow to change the style of Collapse Button? Pin
handsome0317-Aug-13 21:32
handsome0317-Aug-13 21:32 
QuestionHow to change the header text color ? Pin
Mike Kuna21-Jun-13 2:58
Mike Kuna21-Jun-13 2:58 
AnswerRe: How to change the header text color ? Pin
Rolf Kristensen22-Jun-13 0:04
Rolf Kristensen22-Jun-13 0:04 
GeneralRe: How to change the header text color ? Pin
Mike Kuna25-Jun-13 3:18
Mike Kuna25-Jun-13 3:18 
GeneralMy vote of 5 Pin
Ștefan-Mihai MOGA10-May-13 18:41
professionalȘtefan-Mihai MOGA10-May-13 18:41 
GeneralMy vote of 5 Pin
RiqiTang23-Feb-13 6:24
RiqiTang23-Feb-13 6:24 
GeneralMy vote of 5 Pin
JJMatthews17-Jul-12 23:57
JJMatthews17-Jul-12 23:57 
QuestionSort by Numbers Pin
jens_weller31-May-12 23:32
jens_weller31-May-12 23:32 
AnswerRe: Sort by Numbers Pin
Rolf Kristensen2-Jun-12 2:31
Rolf Kristensen2-Jun-12 2:31 
QuestionGrouping and WM_SETFONT Pin
Davide Zaccanti19-May-12 23:28
Davide Zaccanti19-May-12 23:28 
QuestionIcon view problem Pin
Rohit Dubey from Hyderabad28-Feb-12 5:27
Rohit Dubey from Hyderabad28-Feb-12 5:27 
GeneralGreat article. Pin
Richard Hunn16-Nov-11 3:49
Richard Hunn16-Nov-11 3:49 
GeneralMy vote of 5 Pin
ZhuJinYong21-Jul-11 23:09
ZhuJinYong21-Jul-11 23:09 
GeneralRe: My vote of 5 Pin
Rolf Kristensen26-Jul-11 10:10
Rolf Kristensen26-Jul-11 10:10 
GeneralRe: My vote of 5 [modified] Pin
ZhuJinYong26-Jul-11 15:30
ZhuJinYong26-Jul-11 15:30 
GeneralRe: My vote of 5 Pin
Rolf Kristensen27-Jul-11 4:24
Rolf Kristensen27-Jul-11 4:24 
GeneralRe: My vote of 5 [modified] Pin
ZhuJinYong27-Jul-11 4:39
ZhuJinYong27-Jul-11 4:39 

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.