mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
806 B
C++
35 lines
806 B
C++
#ifndef OPENMW_LUAUI_TEXTEDIT
|
|
#define OPENMW_LUAUI_TEXTEDIT
|
|
|
|
#include <MyGUI_EditBox.h>
|
|
|
|
#include "widget.hpp"
|
|
|
|
namespace LuaUi
|
|
{
|
|
class LuaTextEdit : public MyGUI::Widget, public WidgetExtension
|
|
{
|
|
MYGUI_RTTI_DERIVED(LuaTextEdit)
|
|
|
|
public:
|
|
bool isTextInput() override { return mEditBox->getEditStatic(); }
|
|
|
|
protected:
|
|
void initialize() override;
|
|
void deinitialize() override;
|
|
void updateProperties() override;
|
|
void updateCoord() override;
|
|
void updateChildren() override;
|
|
MyGUI::IntSize calculateSize() const override;
|
|
|
|
private:
|
|
void textChange(MyGUI::EditBox*);
|
|
|
|
MyGUI::EditBox* mEditBox = nullptr;
|
|
bool mMultiline{ false };
|
|
bool mAutoSize{ false };
|
|
};
|
|
}
|
|
|
|
#endif // OPENMW_LUAUI_TEXTEDIT
|