Link to: source code | other
interface directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
This class manages separator lines in the
Goldenseal small business accounting software,
project management software, construction
accounting software
and construction software.
class CTCS_Separator : public CTCS_Pane
{
public :
enum { class_ID = 'SEPB' };
CTCS_Separator (LStream *inStream);
~CTCS_Separator();
static void DrawSeparator (const TCS_Rect & frame, Boolean inGray = true,
const CTCS_RGBColor & inColor = CTCS_RGBColor::GetBlackColor());
protected :
virtual void DrawSelf();
Boolean mGrayscale;
CTCS_RGBColor mColor; // Currently unused if mGrayscale is TRUE
}; |