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.
openmw/components/lua_ui/text.hpp

28 lines
559 B
C++

3 years ago
#ifndef OPENMW_LUAUI_TEXT
#define OPENMW_LUAUI_TEXT
#include <MyGUI_TextBox.h>
#include "widget.hpp"
namespace LuaUi
{
class LuaText : public MyGUI::TextBox, public WidgetExtension
{
MYGUI_RTTI_DERIVED(LuaText)
public:
LuaText();
3 years ago
virtual void updateProperties() override;
void setCaption(const MyGUI::UString& caption) override;
3 years ago
private:
bool mAutoSized;
protected:
virtual MyGUI::IntSize calculateSize() override;
};
}
#endif // OPENMW_LUAUI_TEXT