mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 01:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			564 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			564 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_LUAUI_SCRIPTSETTINGS
 | 
						|
#define OPENMW_LUAUI_SCRIPTSETTINGS
 | 
						|
 | 
						|
#include <string>
 | 
						|
#include <string_view>
 | 
						|
#include <memory>
 | 
						|
 | 
						|
#include <MyGUI_Widget.h>
 | 
						|
 | 
						|
namespace LuaUi
 | 
						|
{
 | 
						|
    class LuaAdapter;
 | 
						|
    struct Element;
 | 
						|
    struct ScriptSettingsPage
 | 
						|
    {
 | 
						|
        std::string mName;
 | 
						|
        std::string mSearchHints;
 | 
						|
        std::shared_ptr<Element> mElement;
 | 
						|
    };
 | 
						|
    size_t scriptSettingsPageCount();
 | 
						|
    ScriptSettingsPage scriptSettingsPageAt(size_t index);
 | 
						|
    void attachPageAt(size_t index, LuaAdapter* adapter);
 | 
						|
}
 | 
						|
 | 
						|
#endif // !OPENMW_LUAUI_SCRIPTSETTINGS
 |