90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
|
// ChkLstCt.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "certmap.h"
|
||
|
#include "ListRow.h"
|
||
|
#include "ChkLstCt.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CCheckListCtrl
|
||
|
|
||
|
//-----------------------------------------------------------------------------------
|
||
|
CCheckListCtrl::CCheckListCtrl()
|
||
|
{
|
||
|
// set the correct start drawing column
|
||
|
m_StartDrawingCol = 1;
|
||
|
}
|
||
|
|
||
|
//-----------------------------------------------------------------------------------
|
||
|
CCheckListCtrl::~CCheckListCtrl()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------------
|
||
|
BEGIN_MESSAGE_MAP(CCheckListCtrl, CListSelRowCtrl)
|
||
|
//{{AFX_MSG_MAP(CCheckListCtrl)
|
||
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CCheckListCtrl message handlers
|
||
|
|
||
|
//-----------------------------------------------------------------------------------
|
||
|
void CCheckListCtrl::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
|
||
|
{
|
||
|
CRect rcItem = lpDrawItemStruct->rcItem;
|
||
|
CRect rcSection;
|
||
|
UINT itemID = lpDrawItemStruct->itemID;
|
||
|
BOOL f;
|
||
|
CString sz;
|
||
|
LV_COLUMN colData;
|
||
|
|
||
|
// setup the CDC object
|
||
|
CDC cdc;
|
||
|
cdc.Attach( lpDrawItemStruct->hDC );
|
||
|
|
||
|
// clear the columnd buffer
|
||
|
ZeroMemory( &colData, sizeof(colData) );
|
||
|
colData.mask = LVCF_WIDTH;
|
||
|
|
||
|
|
||
|
// get the checkmark bitmap
|
||
|
// f = m_bitmapCheck.LoadBitmap( IDB_CHECK );
|
||
|
|
||
|
|
||
|
// First, we draw the "enabled" column Get the data
|
||
|
// for it first. If there is none, then we can skip it.
|
||
|
sz = GetItemText( itemID, 0 );
|
||
|
f = GetColumn( 0, &colData );
|
||
|
|
||
|
if ( !sz.IsEmpty() )
|
||
|
{
|
||
|
// figure out the sectional rect
|
||
|
rcSection = rcItem;
|
||
|
rcSection.left += 4;
|
||
|
rcSection.top += 3;
|
||
|
|
||
|
rcSection.right = rcSection.left + 9;
|
||
|
rcSection.bottom = rcSection.top + 9;
|
||
|
|
||
|
// draw the circle
|
||
|
cdc.Ellipse( &rcSection );
|
||
|
rcSection.DeflateRect(1, 1);
|
||
|
cdc.Ellipse( &rcSection );
|
||
|
}
|
||
|
|
||
|
cdc.Detach();
|
||
|
|
||
|
// draw the rest of it
|
||
|
CListSelRowCtrl::DrawItem( lpDrawItemStruct );
|
||
|
}
|