/**
* @constructor
*/
function XUIDoubleModingSIMDRingProgressBar() {
}

XUIDoubleModingSIMDRingProgressBar.prototype = {

    //接口
    /**
    * 数据
    * @param {Array} arrData 数据
    */
    SetData:function (arrData) {
    },

    /**
    * 模式
    * @param {Boolean} bModule false多彩,true统一变色
    * @property {Boolean} Module false
    */
    SetModule:function (bModule) {
    },

    /**
    * 环的宽度
    * @param {Number} nWidth 宽度
    * @property {Number} RingSize 15
    */
    SetRingSize:function (nWidth) {
    },

    /**
    * 内环大小
    * @param {Number} nInnerSize 内环大小
    * @property {Number} InnerRingSize 75
    */
    SetInnerRingSize:function (nInnerSize) {
    },

    /**
    * 环间距
    * @param {Number} nSpace 环间距
    * @property {Number} RingSpaceBetween 1
    */
    SetRingSpaceBetween:function (nSpace) {
    },

    /**
    * 统一变色模式颜色
    * @param {Color} strStartColor 起始颜色
    * @param {Color} strEndColor 结束颜色
    * @property {Collection} DataRingColor ["0xffff0000","0xff0000ff"]
    */
    SetDataRingColor:function (strStartColor,strEndColor) {
    },

    /**
    * 多彩模式颜色库
    * @param {Array} arrcolor 颜色,至少存入与最大数据量相等数量的颜色
    * @property {Array} Colourful ["0xff00ff00","0xff0000ff","0xffff0000","0xffff00ff","0xff00ffff","0xffffff00"]
    */
    SetColourful:function (arrcolor) {
    },

    /**
    * 背景颜色
    * @param {String} strColor 颜色
    * @property {Color} BgColor "0x00000000"
    */
    SetBgColor:function (strColor) {
    },

    /**
    * 背景图
    * @param {ImageProp} strImg 图片
    * @property {ImageProp} BgImg ""
    */
    SetBgImg:function (strImg) {
    },

    /**
    * 背景图绘制模式
    * @param {String} strMode 绘制模式
    * @property {Combo} BgImgRepeat ["repeat","no-repeat","repeat-x","repeat-y"]
    */
    SetBgImgRepeat:function (strMode) {
    },

    /**
    * 获得数据
    * @return {Array} 数据
    */
    GetData:function () {
    },

    /**
    * 获得模式
    * @return {Boolean} 模式
    */
    GetModule:function () {
    },

    /**
    * 获得环的宽度
    * @return {Number} 环的宽度
    */
    GetRingSize:function () {
    },

    /**
    * 获得内环大小
    * @return {Number} 内环大小
    */
    GetInnerRingSize:function () {
    },

    /**
    * 获得环间距
    * @return {Number} 环间距
    */
    GetRingSpaceBetween:function () {
    },

    /**
    * 获得统一变色模式颜色
    * @return {Array} 颜色
    */
    GetDataRingColor:function () {
    },

    /**
    * 获得多彩模式颜色库
    * @return {Array} 多彩模式颜色库
    */
    GetColourful:function () {
    },

    /**
    * 是否绘制图标背景色
    * @param {Boolean} bDraw true背景色,false背景图
    * @property {Boolean} DrawBgColor true
    */
    SetDrawBgColor:function (bDraw) {
    },

    /**
    * 获取是否绘制图标背景色
    * @return {Boolean} 是否绘制图标背景色
    */
    IsDrawBgColor:function () {
    },

    /**
    * 获取背景颜色
    * @return {String} 背景颜色
    */
    GetBgColor:function () {
    },

    /**
    * 获取背景图
    * @return {String} 背景图
    */
    GetBgImg:function () {
    },

    /**
    * 获取背景图绘制模式
    * @return {String} 绘制模式
    */
    GetBgImgRepeat:function () {
    },

}