1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*!
@file
@author Generate utility by Albert Semenov
@date 01/2009
@module
*/
#pragma once
#include "MyGUI_Managed_Widget.h"
namespace MyGUI
{
namespace Managed
{
public ref class ImageBox : public Widget
{
private:
typedef MyGUI::ImageBox ThisType;
public:
ImageBox() : Widget() { }
internal:
ImageBox( MyGUI::ImageBox* _native ) : Widget(_native) { }
ImageBox( BaseWidget^ _parent, MyGUI::WidgetStyle _style, const std::string& _skin, const MyGUI::IntCoord& _coord, MyGUI::Align _align, const std::string& _layer, const std::string& _name )
{
CreateWidget(_parent, _style, _skin, _coord, _align, _layer, _name);
}
virtual const std::string& getClassTypeName() override { return ThisType::getClassTypeName(); }
static BaseWidget^ WidgetCreator(BaseWidget^ _parent, MyGUI::WidgetStyle _style, const std::string& _skin, const MyGUI::IntCoord& _coord, MyGUI::Align _align, const std::string& _layer, const std::string& _name)
{
return gcnew ImageBox(_parent, _style, _skin, _coord, _align, _layer, _name);
}
//InsertPoint
public:
void SetItemName(
Convert<const std::string &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItemName(
Convert<const std::string &>::From(_value) );
}
public:
void SetItemGroup(
Convert<const std::string &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItemGroup(
Convert<const std::string &>::From(_value) );
}
public:
Convert<bool>::Type SetItemResource(
Convert<const std::string &>::Type _name )
{
MMYGUI_CHECK_NATIVE(mNative);
return Convert<bool>::To(
static_cast<ThisType*>(mNative)->setItemResource(
Convert<const std::string &>::From(_name) ) );
}
public:
Convert<float>::Type GetItemFrameRate(
Convert<size_t>::Type _index )
{
MMYGUI_CHECK_NATIVE(mNative);
return Convert<float>::To(
static_cast<ThisType*>(mNative)->getItemFrameRate(
Convert<size_t>::From(_index) ) );
}
public:
void SetItemFrameRate(
Convert<size_t>::Type _index ,
Convert<float>::Type _rate )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItemFrameRate(
Convert<size_t>::From(_index) ,
Convert<float>::From(_rate) );
}
public:
void DeleteAllItemFrames(
Convert<size_t>::Type _index )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->deleteAllItemFrames(
Convert<size_t>::From(_index) );
}
public:
void DeleteItemFrame(
Convert<size_t>::Type _index ,
Convert<size_t>::Type _indexFrame )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->deleteItemFrame(
Convert<size_t>::From(_index) ,
Convert<size_t>::From(_indexFrame) );
}
public:
void SetItemFrame(
Convert<size_t>::Type _index ,
Convert<size_t>::Type _indexFrame ,
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItemFrame(
Convert<size_t>::From(_index) ,
Convert<size_t>::From(_indexFrame) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void InsertItemFrameDublicate(
Convert<size_t>::Type _index ,
Convert<size_t>::Type _indexFrame ,
Convert<size_t>::Type _indexSourceFrame )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->insertItemFrameDublicate(
Convert<size_t>::From(_index) ,
Convert<size_t>::From(_indexFrame) ,
Convert<size_t>::From(_indexSourceFrame) );
}
public:
void AddItemFrameDublicate(
Convert<size_t>::Type _index ,
Convert<size_t>::Type _indexSourceFrame )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->addItemFrameDublicate(
Convert<size_t>::From(_index) ,
Convert<size_t>::From(_indexSourceFrame) );
}
public:
void InsertItemFrame(
Convert<size_t>::Type _index ,
Convert<size_t>::Type _indexFrame ,
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->insertItemFrame(
Convert<size_t>::From(_index) ,
Convert<size_t>::From(_indexFrame) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void AddItemFrame(
Convert<size_t>::Type _index ,
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->addItemFrame(
Convert<size_t>::From(_index) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void DeleteAllItems( )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->deleteAllItems( );
}
public:
void DeleteItem(
Convert<size_t>::Type _index )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->deleteItem(
Convert<size_t>::From(_index) );
}
public:
void SetItem(
Convert<size_t>::Type _index ,
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItem(
Convert<size_t>::From(_index) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void AddItem(
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->addItem(
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void InsertItem(
Convert<size_t>::Type _index ,
Convert<const MyGUI::types::TCoord < int > &>::Type _item )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->insertItem(
Convert<size_t>::From(_index) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_item) );
}
public:
void ResetItemSelect( )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->resetItemSelect( );
}
public:
void SetImageTile(
Convert<const MyGUI::types::TSize < int > &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageTile(
Convert<const MyGUI::types::TSize < int > &>::From(_value) );
}
public:
void SetImageCoord(
Convert<const MyGUI::types::TCoord < int > &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageCoord(
Convert<const MyGUI::types::TCoord < int > &>::From(_value) );
}
public:
void SetImageRect(
Convert<const MyGUI::types::TRect < int > &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageRect(
Convert<const MyGUI::types::TRect < int > &>::From(_value) );
}
public:
void SetImageTexture(
Convert<const std::string &>::Type _value )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageTexture(
Convert<const std::string &>::From(_value) );
}
public:
void SetImageInfo(
Convert<const std::string &>::Type _texture ,
Convert<const MyGUI::types::TCoord < int > &>::Type _coord ,
Convert<const MyGUI::types::TSize < int > &>::Type _tile )
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageInfo(
Convert<const std::string &>::From(_texture) ,
Convert<const MyGUI::types::TCoord < int > &>::From(_coord) ,
Convert<const MyGUI::types::TSize < int > &>::From(_tile) );
}
public:
property Convert<size_t>::Type ItemSelect
{
Convert<size_t>::Type get( )
{
MMYGUI_CHECK_NATIVE(mNative);
return Convert<size_t>::To( static_cast<ThisType*>(mNative)->getItemSelect() );
}
void set(Convert<size_t>::Type _value)
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setItemSelect( Convert<size_t>::From(_value) );
}
}
public:
property Convert<size_t>::Type ItemCount
{
Convert<size_t>::Type get( )
{
MMYGUI_CHECK_NATIVE(mNative);
return Convert<size_t>::To( static_cast<ThisType*>(mNative)->getItemCount() );
}
}
public:
property Convert<size_t>::Type ImageIndex
{
Convert<size_t>::Type get( )
{
MMYGUI_CHECK_NATIVE(mNative);
return Convert<size_t>::To( static_cast<ThisType*>(mNative)->getImageIndex() );
}
void set(Convert<size_t>::Type _value)
{
MMYGUI_CHECK_NATIVE(mNative);
static_cast<ThisType*>(mNative)->setImageIndex( Convert<size_t>::From(_value) );
}
}
};
} // namespace Managed
} // namespace MyGUI
|