home *** CD-ROM | disk | FTP | other *** search
- /* ==========================================================================
- **
- ** CheckBox.h
- **
- ** Object<GraphicObject<Interactor<Valuator<BoolGadget<CheckBox
- **
- ** A 'CheckBox' is a gadget which toggles a check mark on and off.
- **
- ** ©1991 WILLISoft
- **
- ** ==========================================================================
- */
-
- #ifndef CHECKBOX_H
- #define CHECKBOX_H
-
-
- #include "BoolGadget.h"
-
-
- typedef BoolGadget CheckBox;
-
-
- void CheckBox_Init( CheckBox *self,
- PIXELS LeftEdge,
- PIXELS TopEdge,
- pcg_3DPens Pens,
- char *Label,
- BOOL Selected );
-
- #endif
-