mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
19 lines
339 B
C++
19 lines
339 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)
|
|
|
|
virtual void updateProperties() override;
|
|
};
|
|
}
|
|
|
|
#endif // OPENMW_LUAUI_TEXTEDIT
|