Link to: header | tables
directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
Comments
CChecklistMemberTable
This class manages checklist tables for the Goldenseal
estimating software,
small business management software, construction
project management software and
construction estimating software.
It's a table which shows a checklist, and is a member of a db class. This table overrides
some drawing methods, since it looks different than a regular spreadsheet table.
The checklist management is buit into CSpreadsheetTable, so there's no need
for any of that here
SUPERCLASS = CMemberTable
Constructor
/*********************************************************************************
constructor
*********************************************************************************/
CChecklistMemberTable::CChecklistMemberTable(const SPaneInfo &inPaneInfo,
const SViewInfo &inViewInfo)
: CMemberTable(inPaneInfo, inViewInfo)
{
SetDrawGrid(false); // we don't want gridlines
SetRowHeight(14); // we want narrower spacing
}
|