mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
20 lines
384 B
C++
20 lines
384 B
C++
|
#ifndef OPENMW_LUAUI_TEXTEDIT
|
||
|
#define OPENMW_LUAUI_TEXTEDIT
|
||
|
|
||
|
#include <MyGUI_EditBox.h>
|
||
|
|
||
|
#include "widget.hpp"
|
||
|
|
||
|
namespace LuaUi
|
||
|
{
|
||
|
class LuaTextEdit : public MyGUI::EditBox, public WidgetExtension
|
||
|
{
|
||
|
MYGUI_RTTI_DERIVED(LuaTextEdit)
|
||
|
|
||
|
protected:
|
||
|
bool setPropertyRaw(std::string_view name, sol::object value) override;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // OPENMW_LUAUI_TEXTEDIT
|