MyGUI  3.2.1
MyGUI_SubWidgetBinding.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_SUB_WIDGET_BINDING_H__
8 #define __MYGUI_SUB_WIDGET_BINDING_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_ISubWidget.h"
12 
13 namespace MyGUI
14 {
15 
16  // вспомогательный класс для инициализации сабскинов
18  {
19  // для доступа к внутренним членам
20  friend class ResourceSkin;
21 
22  public:
24  SubWidgetBinding(const IntCoord& _coord, Align _aligin, const std::string& _type);
25 
26  void create(const IntCoord& _coord, Align _aligin, const std::string& _type);
27 
28  void clear();
29 
30  void add(const std::string& _name, IStateInfo* _data, const std::string& _skin);
31 
32  private:
33  IntCoord mOffset;
34  Align mAlign;
35  std::string mType;
36  MapStateInfo mStates;
37  };
38 
39 } // namespace MyGUI
40 
41 
42 #endif // __MYGUI_SUB_WIDGET_BINDING_H__