CrystalSpace

Public API Reference

Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

cschkbox.h

Go to the documentation of this file.
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 "csextern.h"
00032  
00033 #include "cscomp.h"
00034 #include "csbutton.h"
00035 
00039 
00040 #define CSBS_CBTYPEMASK         0x00010000
00041 
00042 #define CSBS_CB2STATE           0x00000000
00043 
00044 #define CSBS_CB3STATE           0x00010000
00045 
00046 #define CSBS_CBAUTO             0x00020000
00047 
00048 #define CSBS_DEFAULTCHECKBOX    \
00049         (CSBS_SELECTABLE | CSBS_CB2STATE | CSBS_CBAUTO)
00050 
00052 
00053 enum
00054 {
00061   cscmdCheckBoxSet = 0x00000800,
00068   cscmdCheckBoxQuery,
00075   cscmdCheckBoxSwitched
00076 };
00077 
00079 enum csCheckBoxState
00080 {
00082   cscbsNonChecked,
00084   cscbsChecked,
00086   cscbsIndefinite
00087 };
00088 
00094 class CS_CSWS_EXPORT csCheckBox : public csButton
00095 {
00097   csCheckBoxState CheckBoxState;
00098 public:
00100   csCheckBox (csComponent *iParent, int iButtonID, int iButtonStyle =
00101     CSBS_DEFAULTCHECKBOX);
00102 
00104   virtual bool HandleEvent (iEvent &Event);
00105 
00106 protected:
00108   virtual void Press ();
00110   void SetButtBitmap (char *id_n, char *id_p);
00112   void SetCheckBoxState (csCheckBoxState iNewState);
00113 };
00114 
00117 #endif // __CS_CSCHKBOX_H__

Generated for Crystal Space by doxygen 1.3.9.1