1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/components/lua_ui/adapter.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
624 B
C++
Raw Normal View History

#ifndef OPENMW_LUAUI_ADAPTER
#define OPENMW_LUAUI_ADAPTER
2022-01-29 22:43:08 +00:00
#include <memory>
#include <MyGUI_Widget.h>
namespace LuaUi
{
class LuaContainer;
struct Element;
class LuaAdapter : public MyGUI::Widget
{
MYGUI_RTTI_DERIVED(LuaAdapter)
public:
LuaAdapter();
void attach(const std::shared_ptr<Element>& element);
void detach();
private:
std::shared_ptr<Element> mElement;
2022-01-29 22:43:08 +00:00
LuaContainer* mContainer;
void attachElement();
void detachElement();
2023-11-17 17:02:34 +00:00
void containerChangedCoord(MyGUI::Widget*);
};
}
#endif // !OPENMW_LUAUI_ADAPTER