Click here to Skip to main content
15,884,298 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.9K   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

 
Generalnot grouped under Windows XP Pin
ERLN24-Feb-09 6:47
ERLN24-Feb-09 6:47 
GeneralRe: not grouped under Windows XP Pin
Rolf Kristensen24-Feb-09 9:14
Rolf Kristensen24-Feb-09 9:14 
GeneralRe: not grouped under Windows XP Pin
ERLN25-Feb-09 6:52
ERLN25-Feb-09 6:52 
GeneralRe: not grouped under Windows XP Pin
Rolf Kristensen26-Feb-09 4:27
Rolf Kristensen26-Feb-09 4:27 
GeneralRe: not grouped under Windows XP Pin
ERLN26-Feb-09 6:42
ERLN26-Feb-09 6:42 
GeneralRe: not grouped under Windows XP Pin
cgott23-Sep-09 23:47
cgott23-Sep-09 23:47 
GeneralRe: not grouped under Windows XP Pin
ERLN24-Sep-09 8:13
ERLN24-Sep-09 8:13 
GeneralRe: not grouped under Windows XP [modified] Pin
Rolf Kristensen24-Sep-09 9:47
Rolf Kristensen24-Sep-09 9:47 
GeneralRe: not grouped under Windows XP Pin
cgott24-Sep-09 11:25
cgott24-Sep-09 11:25 
GeneralRe: not grouped under Windows XP Pin
Member 6080864-Feb-10 5:59
Member 6080864-Feb-10 5:59 
GeneralRe: not grouped under Windows XP Pin
Thierry Maurel7-Sep-11 4:48
Thierry Maurel7-Sep-11 4:48 
Questionitems are not grouped.. in vista Pin
VC++Maniac30-Sep-08 23:11
VC++Maniac30-Sep-08 23:11 
AnswerRe: items are not grouped.. in vista Pin
Rolf Kristensen30-Sep-08 23:39
Rolf Kristensen30-Sep-08 23: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.