diff options
Diffstat (limited to 'scene/gui/texture_button.h')
-rw-r--r-- | scene/gui/texture_button.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/scene/gui/texture_button.h b/scene/gui/texture_button.h index 64103860bf..fc5079dbf9 100644 --- a/scene/gui/texture_button.h +++ b/scene/gui/texture_button.h @@ -33,7 +33,7 @@ #include "scene/resources/bit_mask.h" class TextureButton : public BaseButton { - GDCLASS( TextureButton, BaseButton ); + GDCLASS(TextureButton, BaseButton); public: enum StretchMode { @@ -57,20 +57,18 @@ private: StretchMode stretch_mode; protected: - virtual Size2 get_minimum_size() const; - virtual bool has_point(const Point2& p_point) const; + virtual bool has_point(const Point2 &p_point) const; void _notification(int p_what); static void _bind_methods(); public: - - void set_normal_texture(const Ref<Texture>& p_normal); - void set_pressed_texture(const Ref<Texture>& p_pressed); - void set_hover_texture(const Ref<Texture>& p_hover); - void set_disabled_texture(const Ref<Texture>& p_disabled); - void set_focused_texture(const Ref<Texture>& p_focused); - void set_click_mask(const Ref<BitMap>& p_image); + void set_normal_texture(const Ref<Texture> &p_normal); + void set_pressed_texture(const Ref<Texture> &p_pressed); + void set_hover_texture(const Ref<Texture> &p_hover); + void set_disabled_texture(const Ref<Texture> &p_disabled); + void set_focused_texture(const Ref<Texture> &p_focused); + void set_click_mask(const Ref<BitMap> &p_image); Ref<Texture> get_normal_texture() const; Ref<Texture> get_pressed_texture() const; @@ -88,6 +86,5 @@ public: TextureButton(); }; - -VARIANT_ENUM_CAST( TextureButton::StretchMode ); +VARIANT_ENUM_CAST(TextureButton::StretchMode); #endif // TEXTURE_BUTTON_H |