MyGUI 3.4.3
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:
22 std::string_view _type,
23 const WidgetStyle& _style,
24 std::string_view _skin,
25 const IntCoord& _coord,
26 const Align& _align,
27 std::string_view _layer,
28 std::string_view _name);
29
30 void addParam(std::string_view _key, std::string_view _value);
31
32 public:
33 std::string type, skin, name, layer;
38 };
39
40 using VectorChildSkinInfo = std::vector<ChildSkinInfo>;
41
42} // namespace MyGUI
43
44
45#endif // MYGUI_CHILD_SKIN_INFO_H_
#define MYGUI_EXPORT
std::map< std::string, std::string, std::less<> > MapString
Definition MyGUI_Types.h:40
types::TCoord< int > IntCoord
Definition MyGUI_Types.h:36
std::vector< ChildSkinInfo > VectorChildSkinInfo
void addParam(std::string_view _key, std::string_view _value)