12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef CHECK_BOX_H
- #define CHECK_BOX_H
- #include "scene/gui/button.h"
- class CheckBox : public Button {
- GDCLASS(CheckBox, Button);
- protected:
- Size2 get_icon_size() const;
- Size2 get_minimum_size() const;
- void _notification(int p_what);
- bool is_radio();
- public:
- CheckBox(const String &p_text = String());
- ~CheckBox();
- };
- #endif
|