2016-09-11 16:28:01 +02:00
|
|
|
#ifndef COLORRECT_H
|
|
|
|
#define COLORRECT_H
|
|
|
|
|
|
|
|
#include "scene/gui/control.h"
|
|
|
|
|
|
|
|
class ColorFrame : public Control {
|
2017-01-03 03:03:46 +01:00
|
|
|
GDCLASS(ColorFrame,Control)
|
2016-09-11 16:28:01 +02:00
|
|
|
|
|
|
|
Color color;
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
|
|
|
|
|
|
void set_frame_color(const Color& p_color);
|
|
|
|
Color get_frame_color() const;
|
|
|
|
|
|
|
|
ColorFrame();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COLORRECT_H
|