Contribute some useful custom control: XListCtrl

本文介绍了一种基于MFC的增强型列表控件XListCtrl的使用方法,该控件由Hans Dietrich开发,具备丰富的特性如复选框、进度条等。作者对其进行了改进,包括增加确认取消按钮及字体样式调整等功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

In my VC MFC develop expericence, I always find that it is really poor of the Ctrls that microsoft provided, but we have no much project budget to bug a beautiful third-ctrl. So sometimes we need do some work to modify the standard Control. For the purpose of reuse, I have my library database, though lots of them come from internet, and I just did little work. but I still very pleasure to share with your guys. Click here to download.
 

At first, I want introduce XListCtrl to you.
This control was developed by Hans Dietrich , you can click here to view his web page. You can find this beautiful and powerful feature list, before that, let's have a look this beautiful picture:

  1. First column is specified with checkboxes
  2. The second column shows subitem with bold text
  3. The second column shows subitem with different background color
  4. The third column contains progress bar in row 2
  5. The fourth column also contains checkboxes
  6. The fifth column shows subitem with different background color
  7. The sixth column shows subitem with different text and background colors
  8. The second column shows combobox
  9. The sixth row is disabled
  10. The fifth column shows edit control
What I do?
At first, Let me show picture.


Keep all features from hans' xlistctrl.
1, Modify the edit feature, add OK, Cancel button, It will be more friendly to user.
2, Add change the font's style: italic

How to Use:
  • Initial List:
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --> CRect rect;
    xlist.GetWindowRect(
& rect);

    
int  w  =  rect.Width()  -   2 ;
    
int  colwidths[ 6 =  {  3 26 8 19 6 15  };     //  sixty-fourths
     int  cols  =   0 ;
    TCHAR 
*     lpszHeaders[]  =  { _T( "" ),
                              _T(
" File Name " ),
                              _T(
" Speed(kb/s) " ),
                              _T(
" Progress " ),
                              _T(
" Time Left " ),
                              NULL };
    
int  i;
    
int  total_cx  =   0 ;
    LV_COLUMN lvcolumn;
    memset(
& lvcolumn,  0 sizeof (lvcolumn));

    
//  add columns
     for  (i  =   0 ; ; i ++ )
    {
        
if  (lpszHeaders[i]  ==  NULL)
            
break ;

        lvcolumn.mask 
=  LVCF_FMT  |  LVCF_SUBITEM  |  LVCF_TEXT  |  LVCF_WIDTH;
        lvcolumn.fmt 
=  (i  ==   1   ||  i  ==   5 ?  LVCFMT_LEFT : LVCFMT_CENTER;
        lvcolumn.pszText 
=  lpszHeaders[i];
        lvcolumn.iSubItem 
=  i;
        lvcolumn.cx 
=  (lpszHeaders[i + 1 ==  NULL)  ?  w  -  total_cx  -   2  : (w  *  colwidths[i])  /   64 ;
        total_cx 
+=  lvcolumn.cx;
        xlist.InsertColumn(i, 
& lvcolumn);
    }
    cols 
=  i;  // total columns
    
    
//  iterate through header items and attach the image list
    HDITEM hditem;

    
for  (i  =   0 ; i  <  xlist.m_HeaderCtrl.GetItemCount(); i ++ )
    {
        hditem.mask 
=  HDI_IMAGE  |  HDI_FORMAT;
        xlist.m_HeaderCtrl.GetItem(i, 
& hditem);
        hditem.fmt 
|=   HDF_IMAGE;
        
if  (i  ==   0
        {
            hditem.iImage 
=  XHEADERCTRL_UNCHECKED_IMAGE;
            hditem.fmt 
=  HDF_CENTER;
        }
        
else
            hditem.iImage 
=  XHEADERCTRL_NO_IMAGE;

        xlist.m_HeaderCtrl.SetItem(i, 
& hditem);
    }
    // add edit button picture
    HBITMAP hBitmapOK 
=  LoadBitmap(AfxGetInstanceHandle(),  MAKEINTRESOURCE(IDB_EDIT_BTNOK));  
    HBITMAP hBitmapCancel 
=  LoadBitmap(AfxGetInstanceHandle(),  MAKEINTRESOURCE(IDB_EDIT_BTNCANCEL));  
    m_xlist.SetEditBtnIcon(hBitmapOK, hBitmapCancel);
  • Add a new line:
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->             LVITEM itemData;
            itemData.iSubItem 
=   0 ;
            itemData.iItem 
=   0 ;
            itemData.mask 
=  LVIF_TEXT;
            itemData.pszText 
=  _T( "" );
            itemData.lParam 
=  (LPARAM)pJob;
            CString szTmp;
            nItem 
=  m_xlist.InsertItem( & itemData);
            m_xlist.SetCheckbox( nItem, 
0 , FALSE );
            m_xlist.SetItemText( nItem, 
1 , pJob -> m_szNewDocName.GetLength()  ==   0   ?  pJob -> m_szFileName : pJob -> m_szNewDocName);         // doc name
            m_xlist.SetEditButton( nItem,  1 );
            m_xlist.SetItemText( nItem, 
3 , _T( "" ));                     // progress bar
            pJob -> GetLeftTimeString(szTmp);
            m_xlist.SetItemText( nItem, 
4 , szTmp );                     // time left estimate
            szTmp.Format(  " %.2lf " , pJob -> CountSpeed() / 1024  ); 
            m_xlist.SetItemText( nItem, 
2 , szTmp );                     // transfer speed average

  • Edit:

    ON_REGISTERED_MESSAGE(WM_XLISTCTRL_EDIT_BTNOK_CLICKED, OnRenameClicked)
    ON_REGISTERED_MESSAGE(WM_XLISTCTRL_EDIT_BTNEDIT_CLICKED, OnRenameEditClicked)
    ON_REGISTERED_MESSAGE(WM_XLISTCTRL_HEADER_CHECKBOX_CLICKED, OnHeaderChecked)
Implement these message function.

That' OK.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值