mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 00:55:39 +00:00
33 lines
645 B
C++
33 lines
645 B
C++
#pragma once
|
|
|
|
#include "../GuiComponent.h"
|
|
#include "../resources/TextureResource.h"
|
|
|
|
class RatingComponent : public GuiComponent
|
|
{
|
|
public:
|
|
RatingComponent(Window* window);
|
|
|
|
std::string getValue() const override;
|
|
void setValue(const std::string& value) override;
|
|
|
|
bool input(InputConfig* config, Input input) override;
|
|
void render(const Eigen::Affine3f& parentTrans);
|
|
|
|
void onSizeChanged() override;
|
|
private:
|
|
void updateVertices();
|
|
|
|
float mValue;
|
|
|
|
struct Vertex
|
|
{
|
|
Eigen::Vector2f pos;
|
|
Eigen::Vector2f tex;
|
|
} mVertices[12];
|
|
|
|
std::shared_ptr<TextureResource> mFilledTexture;
|
|
std::shared_ptr<TextureResource> mUnfilledTexture;
|
|
};
|
|
|