1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 09:23:54 +00:00
openmw/components/lua_ui/textedit.hpp

20 lines
392 B
C++
Raw Normal View History

2021-11-18 15:19:54 +00:00
#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)
2021-11-19 15:21:17 +00:00
protected:
bool setPropertyRaw(std::string_view name, sol::object value) override;
2021-11-18 15:19:54 +00:00
};
}
#endif // OPENMW_LUAUI_TEXTEDIT