home *** CD-ROM | disk | FTP | other *** search
- //
- // CITButtonGadget include
- //
- // StormC
- //
- // version 2002.01.29
- //
-
- #ifndef CIT_CHECKBOX_H
- #define CIT_CHECKBOX_H TRUE
-
- #ifndef CIT_GADGETS_H
- #include "CITGadget.h"
- #endif
-
- class CITCheckBox:public CITGadget
- {
- public:
- CITCheckBox();
- ~CITCheckBox();
-
- void TextPen(WORD pen);
- void BackgroundPen(WORD pen);
- void TextPlace(WORD pen);
- void Checked(BOOL b);
- BOOL Checked();
-
- protected:
- virtual Object* NewObjectA(TagItem* tags);
-
- private:
- void setTag(int index,ULONG attr,ULONG val);
-
- TagItem* checkBoxTag;
- };
-
- #endif
-