mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
26 lines
639 B
C++
26 lines
639 B
C++
|
#ifndef OPENMW_LUAUI_SCRIPTSETTINGS
|
||
|
#define OPENMW_LUAUI_SCRIPTSETTINGS
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
|
||
|
#include <MyGUI_Widget.h>
|
||
|
|
||
|
namespace LuaUi
|
||
|
{
|
||
|
class Element;
|
||
|
struct ScriptSettings
|
||
|
{
|
||
|
std::string mName;
|
||
|
std::string mSearchHints;
|
||
|
Element* mElement; // TODO: figure out if this can lead to use after free
|
||
|
};
|
||
|
const std::vector<ScriptSettings>& scriptSettings();
|
||
|
void registerSettings(const ScriptSettings& script);
|
||
|
void clearSettings();
|
||
|
void attachToWidget(const ScriptSettings& script, MyGUI::Widget* widget);
|
||
|
}
|
||
|
|
||
|
#endif // !OPENMW_LUAUI_SCRIPTSETTINGS
|