Go to the documentation of this file.00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __MYGUI_SUB_WIDGET_INFO_H__
00024 #define __MYGUI_SUB_WIDGET_INFO_H__
00025
00026 #include "MyGUI_Prerequest.h"
00027
00028 namespace MyGUI
00029 {
00030
00031
00032 struct SubWidgetInfo
00033 {
00034 SubWidgetInfo(const std::string& _type, const IntCoord& _coord, Align _align) :
00035 coord(_coord),
00036 align(_align),
00037 type(_type)
00038 {
00039 }
00040
00041 IntCoord coord;
00042 Align align;
00043 std::string type;
00044 };
00045
00046 typedef std::vector<SubWidgetInfo> VectorSubWidgetInfo;
00047
00048 }
00049
00050 #endif // __MYGUI_SUB_WIDGET_INFO_H__