![]() |
Public API Reference |
00001 /* 00002 Crystal Space Windowing System: check box button class 00003 Copyright (C) 1998,1999 by Andrew Zabolotny <bit@eltech.ru> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public 00016 License along with this library; if not, write to the Free 00017 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00018 */ 00019 00020 #ifndef __CS_CSCHKBOX_H__ 00021 #define __CS_CSCHKBOX_H__ 00022 00031 #include "cscomp.h" 00032 #include "csbutton.h" 00033 00037 00038 #define CSBS_CBTYPEMASK 0x00010000 00039 00040 #define CSBS_CB2STATE 0x00000000 00041 00042 #define CSBS_CB3STATE 0x00010000 00043 00044 #define CSBS_CBAUTO 0x00020000 00045 00046 #define CSBS_DEFAULTCHECKBOX \ 00047 (CSBS_SELECTABLE | CSBS_CB2STATE | CSBS_CBAUTO) 00048 00050 00051 enum 00052 { 00059 cscmdCheckBoxSet = 0x00000800, 00066 cscmdCheckBoxQuery, 00073 cscmdCheckBoxSwitched 00074 }; 00075 00077 enum csCheckBoxState 00078 { 00080 cscbsNonChecked, 00082 cscbsChecked, 00084 cscbsIndefinite 00085 }; 00086 00092 class csCheckBox : public csButton 00093 { 00095 csCheckBoxState CheckBoxState; 00096 public: 00098 csCheckBox (csComponent *iParent, int iButtonID, int iButtonStyle = 00099 CSBS_DEFAULTCHECKBOX); 00100 00102 virtual bool HandleEvent (iEvent &Event); 00103 00104 protected: 00106 virtual void Press (); 00108 void SetButtBitmap (char *id_n, char *id_p); 00110 void SetCheckBoxState (csCheckBoxState iNewState); 00111 }; 00112 00115 #endif // __CS_CSCHKBOX_H__