mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
78 lines
1.8 KiB
C++
78 lines
1.8 KiB
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// TextEditComponent.h
|
|
//
|
|
// Component for editing text fields in menus.
|
|
//
|
|
|
|
#ifndef ES_CORE_COMPONENTS_TEXT_EDIT_COMPONENT_H
|
|
#define ES_CORE_COMPONENTS_TEXT_EDIT_COMPONENT_H
|
|
|
|
#include "GuiComponent.h"
|
|
#include "components/NinePatchComponent.h"
|
|
#include "resources/Font.h"
|
|
|
|
class Font;
|
|
class TextCache;
|
|
|
|
// Used to enter text.
|
|
class TextEditComponent : public GuiComponent
|
|
{
|
|
public:
|
|
TextEditComponent(Window* window);
|
|
|
|
void textInput(const std::string& text) override;
|
|
bool input(InputConfig* config, Input input) override;
|
|
void update(int deltaTime) override;
|
|
void render(const glm::mat4& parentTrans) override;
|
|
|
|
void onFocusGained() override;
|
|
void onFocusLost() override;
|
|
|
|
void onSizeChanged() override;
|
|
|
|
void setValue(const std::string& val) override;
|
|
std::string getValue() const override;
|
|
|
|
void startEditing();
|
|
void stopEditing();
|
|
|
|
bool isEditing() const { return mEditing; }
|
|
std::shared_ptr<Font> getFont() const override { return mFont; }
|
|
|
|
void setCursor(size_t pos);
|
|
|
|
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
|
|
|
private:
|
|
void onTextChanged();
|
|
void onCursorChanged();
|
|
|
|
void updateCursorRepeat(int deltaTime);
|
|
void moveCursor(int amt);
|
|
|
|
bool isMultiline() { return (getSize().y > mFont->getHeight() * 1.25f); }
|
|
glm::vec2 getTextAreaPos() const;
|
|
glm::vec2 getTextAreaSize() const;
|
|
|
|
std::string mText;
|
|
std::string mTextOrig;
|
|
bool mFocused;
|
|
bool mEditing;
|
|
int mCursor; // Cursor position in characters.
|
|
int mBlinkTime;
|
|
|
|
int mCursorRepeatTimer;
|
|
int mCursorRepeatDir;
|
|
|
|
glm::vec2 mScrollOffset;
|
|
|
|
NinePatchComponent mBox;
|
|
|
|
std::shared_ptr<Font> mFont;
|
|
std::unique_ptr<TextCache> mTextCache;
|
|
};
|
|
|
|
#endif // ES_CORE_COMPONENTS_TEXT_EDIT_COMPONENT_H
|