1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-05 15:55:45 +00:00
OpenMW/components/lua_ui/textedit.hpp
2021-11-19 18:05:43 +01:00

20 lines
392 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