MyGUI  3.2.1
MyGUI_ILayer.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef __MYGUI_I_LAYER_H__
8 #define __MYGUI_I_LAYER_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_Types.h"
12 #include "MyGUI_IRenderTarget.h"
13 #include "MyGUI_ILayerNode.h"
14 #include "MyGUI_ISerializable.h"
15 
16 namespace MyGUI
17 {
18 
19  class ILayerItem;
20 
22  public ISerializable
23  {
25 
26  public:
27  ILayer() { }
28  virtual ~ILayer() { }
29 
30  // имя леера
31  const std::string& getName() const
32  {
33  return mName;
34  }
35 
36  // создаем дочерний нод
37  virtual ILayerNode* createChildItemNode() = 0;
38  // удаляем дочерний нод
39  virtual void destroyChildItemNode(ILayerNode* _node) = 0;
40 
41  // поднимаем дочерний нод
42  virtual void upChildItemNode(ILayerNode* _node) = 0;
43 
44  // список детей
45  virtual EnumeratorILayerNode getEnumerator() const = 0;
46 
47  virtual size_t getLayerNodeCount() const = 0;
48 
49  virtual ILayerNode* getLayerNodeAt(size_t _index) const = 0;
50 
51  // возвращает виджет по позиции
52  virtual ILayerItem* getLayerItemByPoint(int _left, int _top) const = 0;
53 
54  // возвращает позицию в координатах леера
55  virtual IntPoint getPosition(int _left, int _top) const = 0;
56 
57  // возвращает размер леера
58  virtual const IntSize& getSize() const = 0;
59 
60  // рисует леер
61  virtual void renderToTarget(IRenderTarget* _target, bool _update) = 0;
62 
63  virtual void resizeView(const IntSize& _viewSize) = 0;
64 
65  protected:
66  std::string mName;
67  };
68 
69 } // namespace MyGUI
70 
71 #endif // __MYGUI_I_LAYER_H__