MyGUI 3.4.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#include "MyGUI_Types.h"
13
14namespace MyGUI
15{
16
18 {
19 public:
21 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);
22
23 void addParam(const std::string& _key, const std::string& _value);
24
25 public:
26 std::string type, skin, name, layer;
31 };
32
33 typedef std::vector<ChildSkinInfo> VectorChildSkinInfo;
34
35} // namespace MyGUI
36
37
38#endif // MYGUI_CHILD_SKIN_INFO_H_
#define MYGUI_EXPORT
std::map< std::string, std::string > MapString
Definition: MyGUI_Types.h:39
std::vector< ChildSkinInfo > VectorChildSkinInfo