MyGUI
3.2.1
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
File List
Globals
mygui
MyGUIEngine
include
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
16
struct
MYGUI_EXPORT
ChildSkinInfo
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;
26
WidgetStyle
style
;
27
IntCoord
coord
;
28
Align
align
;
29
MapString
params
;
30
};
31
32
typedef
std::vector<ChildSkinInfo>
VectorChildSkinInfo
;
33
34
}
// namespace MyGUI
35
36
37
#endif // __MYGUI_CHILD_SKIN_INFO_H__
Generated on Wed Aug 20 2014 00:03:32 for MyGUI by
1.8.3.1