mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-30 22:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*!
 | |
| 	@file
 | |
| 	@author		Albert Semenov
 | |
| 	@date		11/2007
 | |
| 	@module
 | |
| */
 | |
| /*
 | |
| 	This file is part of MyGUI.
 | |
| 
 | |
| 	MyGUI is free software: you can redistribute it and/or modify
 | |
| 	it under the terms of the GNU Lesser General Public License as published by
 | |
| 	the Free Software Foundation, either version 3 of the License, or
 | |
| 	(at your option) any later version.
 | |
| 
 | |
| 	MyGUI is distributed in the hope that it will be useful,
 | |
| 	but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| 	GNU Lesser General Public License for more details.
 | |
| 
 | |
| 	You should have received a copy of the GNU Lesser General Public License
 | |
| 	along with MyGUI.  If not, see <http://www.gnu.org/licenses/>.
 | |
| */
 | |
| #ifndef __MYGUI_LAYOUT_MANAGER_H__
 | |
| #define __MYGUI_LAYOUT_MANAGER_H__
 | |
| 
 | |
| #include "MyGUI_Prerequest.h"
 | |
| #include "MyGUI_Instance.h"
 | |
| #include "MyGUI_XmlDocument.h"
 | |
| #include "MyGUI_WidgetDefines.h"
 | |
| #include "MyGUI_Gui.h"
 | |
| 
 | |
| namespace MyGUI
 | |
| {
 | |
| 
 | |
| 	class MYGUI_EXPORT LayoutManager
 | |
| 	{
 | |
| 		MYGUI_INSTANCE_HEADER( LayoutManager )
 | |
| 
 | |
| 	public:
 | |
| 		void initialise();
 | |
| 		void shutdown();
 | |
| 
 | |
| 		/** Load layout file
 | |
| 			@param _file name of layout
 | |
| 			@return Return vector of pointers of loaded root widgets (root == without parents)
 | |
| 		*/
 | |
| 		VectorWidgetPtr& load(const std::string& _file);
 | |
| 		void _load(xml::ElementPtr _node, const std::string& _file, Version _version);
 | |
| 
 | |
| 		/** Load layout file
 | |
| 			@param _file name of layout
 | |
| 			@param _prefix will be added to all loaded widgets names
 | |
| 			@param _parent widget to load on
 | |
| 			@return Return vector of pointers of loaded root widgets (root == without parents)
 | |
| 		*/
 | |
| 		VectorWidgetPtr& loadLayout(const std::string& _file, const std::string& _prefix = "", Widget* _parent = nullptr);
 | |
| 
 | |
| 		/** Unload layout file */
 | |
| 		void unloadLayout(VectorWidgetPtr& _widgets);
 | |
| 
 | |
| 	private:
 | |
| 		void parseLayout(VectorWidgetPtr& _widgets, xml::ElementPtr _root);
 | |
| 		void parseWidget(VectorWidgetPtr& _widgets, xml::ElementEnumerator& _widget, Widget* _parent);
 | |
| 
 | |
| 	private:
 | |
| 		// для возврата последней загрузки
 | |
| 		VectorWidgetPtr mVectorWidgetPtr;
 | |
| 
 | |
| 		// префикс при загрузке лейаута
 | |
| 		std::string layoutPrefix;
 | |
| 		// префикс при загрузке лейаута
 | |
| 		Widget* layoutParent;
 | |
| 
 | |
| 	};
 | |
| 
 | |
| } // namespace MyGUI
 | |
| 
 | |
| #endif // __MYGUI_LAYOUT_MANAGER_H__
 |