| 1234567891011121314151617 |
- $#include "CheckBox.h"
- class CheckBox : public BorderImage
- {
- CheckBox(Context* context);
- virtual ~CheckBox();
-
- void SetChecked(bool enable);
- void SetCheckedOffset(const IntVector2& rect);
- void SetCheckedOffset(int x, int y);
-
- bool IsChecked() const;
- const IntVector2& GetCheckedOffset() const;
-
- tolua_property__is_set bool checked;
- tolua_property__get_set IntVector2& checkedOffset;
- };
|