Link to: source code | other
interface directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
This class manages group boxes in the
Goldenseal small business accounting software,
project management software, construction
accounting software
and construction software.
class CTCS_GroupBox : public CTCS_Caption
{
public:
enum { class_ID = 'GBOX' };
static void DrawGroupBox(const CTextString &caption, const CTCS_TextInfo &textInfo,
const TCS_Rect &frame, const CTCS_RGBColor &edgeColor);
CTCS_GroupBox(LStream *inStream);
virtual ~CTCS_GroupBox() {};
protected:
CTCS_RGBColor mEdgeColor;
virtual void DrawSelf();
}; |