00001 00002 00003 00004 #ifndef CHECKBOX_H 00005 #define CHECKBOX_H 00006 00007 #include "StateButton.h" 00008 00009 namespace wkgl { 00010 00025 class CheckBox : public StateButton 00026 { 00027 public: 00031 CheckBox( const char *label, int x, int y, 00032 int type = BS_AUTOCHECKBOX, int width = AUTOSIZE, 00033 int height = AUTOSIZE ); 00034 }; 00035 00036 } 00037 #endif
1.2.18