mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
47 lines
876 B
C++
47 lines
876 B
C++
|
#include "TextEditComponent.h"
|
||
|
#include "../Log.h"
|
||
|
|
||
|
TextEditComponent::TextEditComponent(Window* window) : GuiComponent(window),
|
||
|
mBox(window, 0, 0, 0, 0)
|
||
|
{
|
||
|
addChild(&mBox);
|
||
|
|
||
|
onFocusLost();
|
||
|
|
||
|
setSize(48, 22);
|
||
|
}
|
||
|
|
||
|
void TextEditComponent::onFocusGained()
|
||
|
{
|
||
|
mBox.setHorizontalImage(":/glow_hor.png");
|
||
|
mBox.setVerticalImage(":/glow_vert.png");
|
||
|
mBox.setBorderColor(0x51CCFFFF);
|
||
|
}
|
||
|
|
||
|
void TextEditComponent::onFocusLost()
|
||
|
{
|
||
|
mBox.setHorizontalImage(":/glow_off_hor.png");
|
||
|
mBox.setVerticalImage(":/glow_off_vert.png");
|
||
|
mBox.setBorderColor(0xFFFFFFFF);
|
||
|
}
|
||
|
|
||
|
void TextEditComponent::onSizeChanged()
|
||
|
{
|
||
|
mBox.setSize(mSize);
|
||
|
}
|
||
|
|
||
|
void TextEditComponent::setValue(const std::string& val)
|
||
|
{
|
||
|
mText = val;
|
||
|
}
|
||
|
|
||
|
std::string TextEditComponent::getValue() const
|
||
|
{
|
||
|
return mText;
|
||
|
}
|
||
|
|
||
|
bool TextEditComponent::input(InputConfig* config, Input input)
|
||
|
{
|
||
|
return GuiComponent::input(config, input);
|
||
|
}
|