mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
25 lines
441 B
C++
25 lines
441 B
C++
#ifndef CHECK_BUTTON_H
|
|
#define CHECK_BUTTON_H
|
|
|
|
/* check_button.h */
|
|
|
|
|
|
#include "scene/gui/button.h"
|
|
/**
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
*/
|
|
class CheckButton : public Button {
|
|
GDCLASS(CheckButton, Button);
|
|
|
|
protected:
|
|
Size2 get_icon_size() const;
|
|
virtual Size2 get_minimum_size() const;
|
|
void _notification(int p_what);
|
|
|
|
public:
|
|
CheckButton();
|
|
~CheckButton();
|
|
};
|
|
|
|
#endif
|