2022-01-25 20:53:00 +00:00
|
|
|
#ifndef OPENMW_LUAUI_SCRIPTSETTINGS
|
|
|
|
#define OPENMW_LUAUI_SCRIPTSETTINGS
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include <MyGUI_Widget.h>
|
|
|
|
|
|
|
|
namespace LuaUi
|
|
|
|
{
|
2022-01-28 20:45:13 +00:00
|
|
|
struct Element;
|
2022-01-29 12:22:08 +00:00
|
|
|
struct ScriptSettingsPage
|
2022-01-25 20:53:00 +00:00
|
|
|
{
|
|
|
|
std::string mName;
|
2022-01-29 15:59:43 +00:00
|
|
|
std::string mDescription;
|
2022-01-25 20:53:00 +00:00
|
|
|
Element* mElement; // TODO: figure out if this can lead to use after free
|
|
|
|
};
|
2022-01-29 12:22:08 +00:00
|
|
|
const std::vector<ScriptSettingsPage>& scriptSettingsPages();
|
|
|
|
void registerSettingsPage(const ScriptSettingsPage& page);
|
2022-01-25 20:53:00 +00:00
|
|
|
void clearSettings();
|
2022-01-28 20:35:05 +00:00
|
|
|
void attachToWidget(size_t index, MyGUI::Widget* widget = nullptr);
|
2022-01-25 20:53:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !OPENMW_LUAUI_SCRIPTSETTINGS
|