mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
32 lines
558 B
C++
32 lines
558 B
C++
#pragma once
|
|
|
|
#include "../GuiComponent.h"
|
|
#include "GuiBox.h"
|
|
|
|
class Font;
|
|
|
|
class TextEditComponent : public GuiComponent
|
|
{
|
|
public:
|
|
TextEditComponent(Window* window);
|
|
|
|
void textInput(const char* text) override;
|
|
void render(const Eigen::Affine3f& parentTrans) override;
|
|
|
|
void onFocusGained() override;
|
|
void onFocusLost() override;
|
|
|
|
void onSizeChanged() override;
|
|
|
|
void setValue(const std::string& val) override;
|
|
std::string getValue() const override;
|
|
|
|
private:
|
|
std::string mText;
|
|
bool mFocused;
|
|
|
|
std::shared_ptr<Font> getFont();
|
|
|
|
GuiBox mBox;
|
|
};
|