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

XUIOverlayCarousel.prototype = {

    //接口
    /**
     * 是否轮播
     * @param {Boolean} bAutoPlay 颜色
     * @property {Boolean} AutoPlay true
     */
    SetAutoPlay:function (bAutoPlay) {
    },

    /**
     * 轮播速度(ms)
     * @param {Number} nSpeed 颜色
     * @property {Number} RunSpeed 2000
     */
    SetRunSpeed:function (nSpeed) {
    },

    /**
     * 清空所有数据
     */
    ClearAll:function () {
    },

    /**
     * 添加一项
     * @param {String} strName 项名称
     */
    AppendItem:function (strName) {
    },

    /**
     * 通过序号删除一项
     * @param {Number} nIndex 项名称
     */
    DeleteItemByIndex:function (nIndex) {
    },

    /**
     * 通过序号修改文本
     * @param {Number} nIndex 项名称
     * @param {String} strName 项名称
     */
    SetItemNameByIndex:function (nIndex,strName) {
    },

    /**
     * 设置当前文本颜色
     * @param {String} strColor 颜色
     * @property {Color} FirstTextColor "0xffffffff"
     */
    SetFirstTextColor:function (strColor) {
    },

    /**
     * 设置非当前文本颜色
     * @param {String} strColor 颜色
     * @property {Color} BgTextColor "0xff5f6d92"
     */
    SetBgTextColor:function (strColor) {
    },

    /**
     * 设置当前文本背景
     * @param {ImageProp} strImg 背景图片
     * @property {ImageProp} FirstBgImg "bgwz/XUIOverlayCarousel/images/btn_dxhdbz_tab1.png"
     */
    SetFirstBgImg:function (strImg) {
    },

    /**
     * 设置非当前文本背景
     * @param {ImageProp} strImg 背景图片
     * @property {ImageProp} OtherBgImg "bgwz/XUIOverlayCarousel/images/btn_dxhdbz_tab2.png"
     */
    SetOtherBgImg:function (strImg) {
    },

    /**
     * 设置模板数据
     * @param {Array} itemArr 项数组
     */
    SetItemArrData:function (itemArr) {
    },

    /**
     * 通过序号获取项名
     * @param {Number} nIndex 序号
     * @return {String} 项名
     */
    GetNameByIndex:function (nIndex) {
    },

    /**
     * 获取选中项名称
     * @return {String} 选中区域名称
     */
    GetCheckedName:function () {
    },

}