MyGUI  3.0.1
MyGUI_ILayer.h
Go to the documentation of this file.
1 
7 /*
8  This file is part of MyGUI.
9 
10  MyGUI is free software: you can redistribute it and/or modify
11  it under the terms of the GNU Lesser General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  MyGUI is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public License
21  along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
22 */
23 #ifndef __MYGUI_I_LAYER_H__
24 #define __MYGUI_I_LAYER_H__
25 
26 #include "MyGUI_Prerequest.h"
27 #include "MyGUI_Types.h"
28 #include "MyGUI_IRenderTarget.h"
29 #include "MyGUI_ILayerNode.h"
30 #include "MyGUI_ISerializable.h"
31 
32 namespace MyGUI
33 {
34 
35  class ILayerItem;
36 
38  {
40 
41  public:
42  ILayer() { }
43  virtual ~ILayer() { }
44 
45  // имя леера
46  const std::string& getName() const { return mName; }
47 
48  // создаем дочерний нод
49  virtual ILayerNode* createChildItemNode() = 0;
50  // удаляем дочерний нод
51  virtual void destroyChildItemNode(ILayerNode* _node) = 0;
52 
53  // поднимаем дочерний нод
54  virtual void upChildItemNode(ILayerNode* _node) = 0;
55 
56  // список детей
57  virtual EnumeratorILayerNode getEnumerator() = 0;
58 
59  // возвращает виджет по позиции
60  virtual ILayerItem* getLayerItemByPoint(int _left, int _top) = 0;
61 
62  // возвращает позицию в координатах леера
63  virtual IntPoint getPosition(int _left, int _top) const = 0;
64 
65  // возвращает размер леера
66  virtual const IntSize& getSize() const = 0;
67 
68  // рисует леер
69  virtual void renderToTarget(IRenderTarget* _target, bool _update) = 0;
70 
71  virtual void dumpStatisticToLog() { }
72 
73  protected:
74  std::string mName;
75  };
76 
77 } // namespace MyGUI
78 
79 #endif // __MYGUI_I_LAYER_H__