MyGUI  3.2.1
MyGUI_ChildSkinInfo.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_CHILD_SKIN_INFO_H__
8 #define __MYGUI_CHILD_SKIN_INFO_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_WidgetStyle.h"
12 
13 namespace MyGUI
14 {
15 
17  {
18  public:
19  ChildSkinInfo();
20  ChildSkinInfo(const std::string& _type, const WidgetStyle& _style, const std::string& _skin, const IntCoord& _coord, const Align& _align, const std::string& _layer, const std::string& _name);
21 
22  void addParam(const std::string& _key, const std::string& _value);
23 
24  public:
25  std::string type, skin, name, layer;
30  };
31 
32  typedef std::vector<ChildSkinInfo> VectorChildSkinInfo;
33 
34 } // namespace MyGUI
35 
36 
37 #endif // __MYGUI_CHILD_SKIN_INFO_H__