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

XUISignalBase.prototype = {
    //事件
    /**
     * 末节点点击事件
     * @eventname XUI_LASTNODE_CLICK
     * @eventid 0x00001006
     */
    /**
     * 报警灯点击事件
     * @eventname XUI_POLICELIGHT_CLICK
     * @eventid 0x00001007
     */

    //接口
    /**
    * 换肤
    * @param {String} strSkin 颜色
    */
    SetSkin:function (strSkin) {
    },

    /**
    * 所有块文字颜色
    * @param {String} strColor 颜色
    * @property {Color} AllTextColor "0xffffffff"
    */
    SetAllTextColor:function (strColor) {
    },

    /**
    * 所有节点文字颜色
    * @param {String} strColor 颜色
    * @property {Color} AllNodeTextColor "0xffffffff"
    */
    SetAllNodeTextColor:function (strColor) {
    },

    /**
    * 分辨率1920*1048
    */
    Resize_1920:function () {
    },

    /**
    * 是否自动累积报警总数
    * @param {Boolean} bAutomatic 自动累积报警总数
    */
    AutomaticCumulativeAlarmNumber:function (bAutomatic) {
    },

    /**
    * 设置报警总数
    * @param {Number} ndata 报警总数
    */
    SetAlarmTotalNumber:function (ndata) {
    },

    /**
    * 设置警报切换效果
    * @param {Number} nIndex 节点id
    * @param {Boolean} bAdd 增加/解除报警
    */
    SetWarning:function (nIndex,bAdd) {
    },

    /**
    * 显示报警数字框
    * @param {Boolean} bShow 显示/隐藏报警框
    */
    ShowWarnNumber:function (bShow) {
    },

    /** 
    * 849*849
    */
    Resize_849:function () {
    },

    /** 
    * 1920*1080
    */
    Resize_1920_1080:function () {
    },

}