// // SwitchComponent.h // // Basic switch used in the menus. // #pragma once #ifndef ES_CORE_COMPONENTS_SWITCH_COMPONENT_H #define ES_CORE_COMPONENTS_SWITCH_COMPONENT_H #include "components/ImageComponent.h" #include "GuiComponent.h" // A simple "on/off" switch. class SwitchComponent : public GuiComponent { public: SwitchComponent(Window* window, bool state = false); bool input(InputConfig* config, Input input) override; void render(const Transform4x4f& parentTrans) override; void onSizeChanged() override; bool getState() const; void setState(bool state); std::string getValue() const override; void setValue(const std::string& statestring) override; void setOriginalColor(unsigned int color) override { mColorOriginalValue = color; }; void setChangedColor(unsigned int color) override { mColorChangedValue = color; }; virtual std::vector getHelpPrompts() override; private: void onStateChanged(); ImageComponent mImage; bool mState; bool mOriginalValue; unsigned int mColorOriginalValue; unsigned int mColorChangedValue; }; #endif // ES_CORE_COMPONENTS_SWITCH_COMPONENT_H