mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 09:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*!
 | |
| 	@file
 | |
| 	@author		Albert Semenov
 | |
| 	@date		02/2008
 | |
| 	@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_I_LAYER_NODE_H__
 | |
| #define __MYGUI_I_LAYER_NODE_H__
 | |
| 
 | |
| #include "MyGUI_Prerequest.h"
 | |
| #include "MyGUI_Enumerator.h"
 | |
| #include "MyGUI_IObject.h"
 | |
| #include "MyGUI_IRenderTarget.h"
 | |
| 
 | |
| namespace MyGUI
 | |
| {
 | |
| 
 | |
| 	class ILayer;
 | |
| 	class ILayerItem;
 | |
| 	class ILayerNode;
 | |
| 
 | |
| 	class RenderItem;
 | |
| 	class ISubWidget;
 | |
| 
 | |
| 	typedef std::vector<ILayerNode*> VectorILayerNode;
 | |
| 	typedef Enumerator<VectorILayerNode> EnumeratorILayerNode;
 | |
| 
 | |
| 	class MYGUI_EXPORT ILayerNode : public IObject
 | |
| 	{
 | |
| 		MYGUI_RTTI_DERIVED( ILayerNode )
 | |
| 
 | |
| 	public:
 | |
| 		virtual ~ILayerNode() { }
 | |
| 
 | |
| 		// ëååð, êîòîðîìó ìû ïðèíàäëåæèì
 | |
| 		virtual ILayer* getLayer() = 0;
 | |
| 
 | |
| 		// âîçâðàùàåò îòöà èëè nullptr
 | |
| 		virtual ILayerNode* getParent() = 0;
 | |
| 
 | |
| 		// ñîçäàåì äî÷åðíèé íîä
 | |
| 		virtual ILayerNode* createChildItemNode() = 0;
 | |
| 		// óäàëÿåì äî÷åðíèé íîä
 | |
| 		virtual void destroyChildItemNode(ILayerNode* _node) = 0;
 | |
| 
 | |
| 		// ïîäíèìàåì äî÷åðíèé íîä
 | |
| 		virtual void upChildItemNode(ILayerNode* _node) = 0;
 | |
| 
 | |
| 		// ñïèñîê äåòåé
 | |
| 		virtual EnumeratorILayerNode getEnumerator() = 0;
 | |
| 
 | |
| 
 | |
| 		// äîáàâëÿåì àéòåì ê íîäó
 | |
| 		virtual void attachLayerItem(ILayerItem* _item) = 0;
 | |
| 		// óäàëÿåì àéòåì èç íîäà
 | |
| 		virtual void detachLayerItem(ILayerItem* _root) = 0;
 | |
| 
 | |
| 		// äîáàâëÿåò ñàá àéòåì è âîçâðàùàåò ðåíäåð àéòåì
 | |
| 		virtual RenderItem* addToRenderItem(ITexture* _texture, ISubWidget* _item) = 0;
 | |
| 		// íåîáõîäèìî îáíîâëåíèå íîäà
 | |
| 		virtual void outOfDate(RenderItem* _item) = 0;
 | |
| 
 | |
| 		// âîçâðàùàåò âèäæåò ïî ïîçèöèè
 | |
| 		virtual ILayerItem* getLayerItemByPoint(int _left, int _top) = 0;
 | |
| 
 | |
| 		// ðèñóåò ëååð
 | |
| 		virtual void renderToTarget(IRenderTarget* _target, bool _update) = 0;
 | |
| 
 | |
| 		virtual void dumpStatisticToLog(size_t _level) { }
 | |
| 
 | |
| 	};
 | |
| 
 | |
| } // namespace MyGUI
 | |
| 
 | |
| #endif // __MYGUI_I_LAYER_NODE_H__
 |