SCV  4.2.1
Simple Components for Visual
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CheckBox.h
Go to the documentation of this file.
1 
7 #ifndef __SCV_CHECKBOX_H__
8 #define __SCV_CHECKBOX_H__
9 
10 #include "StateButton.h"
11 #include "Label.h"
12 
13 namespace scv {
14 
15 class CheckBox : public StateButton, public Label {
16 public:
17  CheckBox(const scv::Point &p1, bool state, const std::string &str);
18 
19  virtual void onValueChange(void) {}
20 
21  void setString(const std::string& str);
22 
23  void processMouse(const scv::MouseEvent &evt);
24 
25  virtual void display(void);
26 
27 private:
28  void createTexture(void);
29 };
30 
31 } // namespace scv
32 
33 #endif // __SCV_CHECKBOX_H__