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/element.hpp

45 lines
951 B
C++

3 years ago
#ifndef OPENMW_LUAUI_ELEMENT
#define OPENMW_LUAUI_ELEMENT
#include "widget.hpp"
namespace LuaUi
{
struct Element
{
static std::shared_ptr<Element> make(sol::table layout);
3 years ago
template<class Callback>
static void forEach(Callback callback)
{
for(auto& [e, _] : sAllElements)
callback(e);
}
WidgetExtension* mRoot;
WidgetExtension* mAttachedTo;
3 years ago
sol::table mLayout;
std::string mLayer;
3 years ago
bool mUpdate;
bool mDestroy;
void create();
void update();
void destroy();
friend void clearUserInterface();
void attachToWidget(WidgetExtension* w);
void detachFromWidget();
private:
Element(sol::table layout);
static std::map<Element*, std::shared_ptr<Element>> sAllElements;
void updateAttachment();
3 years ago
};
}
#endif // !OPENMW_LUAUI_ELEMENT