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

41 lines
859 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;
sol::object mLayout;
std::string mLayer;
3 years ago
bool mUpdate;
bool mDestroy;
void create();
void update();
void destroy();
friend void clearUserInterface();
private:
Element(sol::table layout);
sol::table layout() { return LuaUtil::cast<sol::table>(mLayout); }
static std::map<Element*, std::shared_ptr<Element>> sAllElements;
3 years ago
};
}
#endif // !OPENMW_LUAUI_ELEMENT