/**
* @constructor
*/
function XUIRBands() {
}
XUIRBands.prototype = {
//接口
/**
* 图片大小
* @param {Number} nWidth 宽度
* @param {Number} nHeight 高度
* @property {Collection} ImageSize [120,170]
*/
SetImageSize:function (nWidth,nHeight) {
},
/**
* 旋转速度
* @param {Number} nSleep
* @property {Number} RotatingSleep 60
*/
SetRotatingSleep:function (nSleep) {
},
/**
* 是否正转
* @param {Boolean} bForward
* @property {Boolean} RotatingDirection true
*/
SetRotatingDirection:function (bForward) {
},
/**
* 间距大小
* @param {Number} nGap 间距
* @property {Number} ModSpacing 180
*/
SetImageGap:function (nGap) {
},
/**
* 文本半径
* @param {Number} nRadius
* @property {Number} Radius 180
*/
SetRadius:function (nRadius) {
},
/**
* 半径的最大值
* @param {Number} nMax
* @property {Number} MaxRadius 450
*/
SetMaxRadius:function (nMax) {
},
/**
* 底部文字内容
* @param {String} strContent 文字内容
* @property {String} LaterContent "UIPower—界面设计"
*/
SetLaterContent:function (strContent) {
},
/**
* 底部文字样式
* @param {String} strColor 16进制颜色值
* @param {Number} nFontSize 字体大小
* @property {Collection} LaterStyle ["0xffff0000",15]
*/
SetLaterStyle:function (strColor,nFontSize) {
},
/**
* 底部文字是否可见
* @param {Boolean} bVisible true为显示 false为隐藏
* @property {Boolean} LaterDisplay true
*/
SetLaterVisible:function (bVisible) {
},
/**
* 添加一张图片
* @param {ImageProp} strPath 图片路径
*/
AddPicture:function (strPath) {
},
/**
* 获取其中一个图片修改样式
* @param {Number} nIndex 索引
* @param {Number} nWidth 宽度
* @param {Number} nHeight 高度
* @property {Collection} FewDrawStyleByIndex [2,150,180]
*/
SetImageSizeByIndex:function (nIndex,nWidth,nHeight) {
},
/**
* 修改其中一个图片路径
* @param {Number} nIndex 索引
* @param {String} strPath 图片路径
* @property {Collection} DrewPathByIndex [3,"common_3d/XUIRbands/images/case1.png"]
*/
SetImagePathByIndex:function (nIndex,strPath) {
},
/**
* 删除一个图片
* @param {Number} nIndex 索引
* @property {Number} ByIndex 5
*/
DeleteImageByIndex:function (nIndex) {
},
/**
* 设置所有图片形状为圆形
*/
SetImgsShape:function () {
},
/**
* 设置其中一个图片形状为圆形
* @param {Number} nIndex 索引
*/
SetImgShapeByIndex:function (nIndex) {
},
/**
* 背景颜色
* @param {String} strColor 16进制颜色值
* @property {Color} BgColor "0xfff11111"
*/
SetBgColor:function (strColor) {
},
/**
* 背景图片
* @param {ImageProp} strPath 图片地址
* @property {ImageProp} BgImage "common_3d/XUIRBands/img/case1.png"
*/
SetBgImage:function (strPath) {
},
/**
* 图片边框颜色
* @param {String} strColor 16进制颜色值
* @property {Color} ImgsBorderColor "0xffffffff"
*/
SetImgsBorderColor:function (strColor) {
},
/**
* 修改某一个图片的边框颜色
* @param {Number} nIndex 索引
* @param {String} strColor 16进制颜色值
* @property {Collection} ImgBorderColorByIndex [2,"0xffffffff"]
*/
SetImgBorderColorByIndex:function (nIndex,strColor) {
},
/**
* 修改某一个图片的阴影颜色
* @param {Number} nIndex 索引
* @param {String} strColor 16进制颜色值
* @property {Collection} ImgShadowByIndex [1,"0xffffffff"]
*/
SetImgShadowByIndex:function (nIndex,strColor) {
},
/**
* 图片的阴影颜色
* @param {String} strColor 16进制颜色值
* @property {Color} PicsShadow "0xffffffff"
*/
SetPicsShadow:function (strColor) {
},
/**
* 动画是否播放
* @param {Boolean} bPlay
* @property {Boolean} Play true
*/
SetPlay:function (bPlay) {
},
/**
* 底部背景颜色
* @param {String} strColor 16进制颜色值
* @property {Color} GroundBgColor "0xff333333"
*/
SetGroundBgColor:function (strColor) {
},
/**
* 底部背景图片
* @param {String} strPath 图片地址
*/
SetGroundBgImage:function (strPath) {
},
/**
* 底部大小
* @param {Number} nWidth 宽度
* @param {Number} nHeight 高度
* @property {Collection} GroundBgSize [1,1]
*/
SetGroundBgSize:function (nWidth,nHeight) {
},
/**
* 设置底部样式形状为圆
*/
SetGroundBgShape:function () {
},
/**
* 是否可拖拽
* @param bDrag
* @property {Boolean} bDrag true
*/
SetIsDrag:function (bDrag) {
},
/**
* 是否有滚动事件
* @param {Boolean} bScroll
* @property {Boolean} bScroll true
*/
SetIsScroll:function (bScroll) {
},
}