Files
eepp/include/eepp/graphics/rectangledrawable.hpp
Martín Lucas Golini 54d520dba6 UITreeView improvements.
Added Drawable::getPixelsSize.
Improved UIPushButton.
2020-07-23 01:40:14 -03:00

69 lines
1.4 KiB
C++

#ifndef EE_GRAPHICS_RECTANGLEDRAWABLE
#define EE_GRAPHICS_RECTANGLEDRAWABLE
#include <eepp/graphics/primitivedrawable.hpp>
#include <eepp/math/rect.hpp>
namespace EE { namespace Graphics {
class EE_API RectangleDrawable : public PrimitiveDrawable {
public:
static RectangleDrawable* New();
static RectangleDrawable* New( const Vector2f& position, const Sizef& size );
RectangleDrawable();
RectangleDrawable( const Vector2f& position, const Sizef& size );
virtual Sizef getSize();
virtual Sizef getPixelsSize();
virtual void draw();
virtual void draw( const Vector2f& position );
virtual void draw( const Vector2f& position, const Sizef& size );
virtual bool isStateful() { return false; }
Float getRotation() const;
void setRotation( const Float& rotation );
Vector2f getScale() const;
void setScale( const Vector2f& scale );
void setSize( const Sizef& size );
Uint32 getCorners() const;
void setCorners( const Uint32& corners );
RectColors getRectColors() const;
void setRectColors( const RectColors& rectColors );
protected:
Sizef mSize;
Float mRotation;
Vector2f mScale;
Uint32 mCorners;
RectColors mRectColors;
bool mUsingRectColors;
void drawRectangle( const Rectf& R, const Color& TopLeft, const Color& BottomLeft,
const Color& BottomRight, const Color& TopRight, const Float& Angle,
const Vector2f& Scale );
void updateVertex();
virtual void onColorFilterChange();
};
}} // namespace EE::Graphics
#endif