mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-31 20:45:39 +00:00
28 lines
637 B
C++
28 lines
637 B
C++
#pragma once
|
|
|
|
#include "GuiComponent.h"
|
|
#include "components/ImageComponent.h"
|
|
|
|
// A very simple "on/off" switch.
|
|
// Should hopefully be switched to use images instead of text in the future.
|
|
class SwitchComponent : public GuiComponent
|
|
{
|
|
public:
|
|
SwitchComponent(Window* window, bool state = false);
|
|
|
|
bool input(InputConfig* config, Input input) override;
|
|
void render(const Eigen::Affine3f& parentTrans) override;
|
|
void onSizeChanged() override;
|
|
|
|
bool getState() const;
|
|
void setState(bool state);
|
|
|
|
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
|
|
|
private:
|
|
void onStateChanged();
|
|
|
|
ImageComponent mImage;
|
|
bool mState;
|
|
};
|