/**
* @constructor
*/
function XUITimeComboBox() {
}
XUITimeComboBox.prototype = {
//接口
/**
* 时间制
* @param {Boolean} bState true24小时,false12小时
* @property {Boolean} TimeFomatter true
*/
SetTimeFomatter:function (bState) {
},
/**
* 时间
* @param {String} strHour
* @param {String} strMinute
*/
SetTime:function (strHour,strMinute) {
},
/**
* 选项高度
* @param {Number} nHeight 高度
* @property {Number} OptionHeight 20
*/
SetOptionHeight:function (nHeight) {
},
/**
* 文字颜色
* @param {String} strColor 颜色
* @property {Color} TextColor "0xff000000"
*/
SetTextColor:function (strColor) {
},
/**
* 文字大小
* @param {Number} nSize 文字大小
* @property {Number} TextSize 16
*/
SetTextSize:function (nSize) {
},
/**
* 文字偏移量
* @param {Number} nOffsetLeft 左偏移量
* @param {Number} nOffsetRight 右偏移量
* @property {Number} TextOffset [0,20]
*/
SetTextOffset:function (nOffsetLeft,nOffsetRight) {
},
/**
* 文字位置
* @param {String} StrTextPosition 位置
* @property {Combo} TextPosition ["left","center","right"]
*/
SetTextPosition:function (StrTextPosition) {
},
/**
* item背景色
* @param {String} strColor 背景色
* @property {Color} ItemBgColor "0xff172443"
*/
SetItemBgColor:function (strColor) {
},
/**
* 下拉框背景色
* @param {String} strColor 背景色
* @property {Color} DropDownBgColor "0xff172443"
*/
SetDropDownBgColor:function (strColor) {
},
/**
* 容器背景色
* @param {String} strColor 背景色
* @property {Color} ContainerBgColor "0xff213361"
*/
SetContainerBgColor:function (strColor) {
},
/**
* 容器边框色
* @param {String} strColor 背景色
* @property {Color} ContainerBorderColor "0xff297BCA"
*/
SetContainerBorderColor:function (strColor) {
},
/**
* 箭头颜色
* @param {String} strColor 颜色
* @property {Color} ArrowsColor "0xff2A80D1"
*/
SetArrowsColor:function (strColor) {
},
/**
* 鼠标经过时的颜色
* @param {String} strColor 颜色
* @property {Color} MouseHoverColor "0xff000000"
*/
SetMouseHoverColor:function (strColor) {
},
/**
* 边框颜色
* @param {String} strColor 颜色
* @property {Color} BorderColor "0xffff0000"
*/
SetBorderColor:function (strColor) {
},
/**
* 滚动条样式
* @param {Number} nWidth 滚动条宽度
* @param {Number} nTrackR 轨道圆角
* @param {Number} nThumbR 滑块圆角
* @param {Number} nButtonH 按钮高度
* @param {Number} nButtonR 按钮圆角
* @property {Collection} ScrollBarFacade [8,10,10,0,0]
*/
SetScrollBarFacade:function (nWidth,nTrackR,nThumbR,nButtonH,nButtonR) {
},
/**
* 滚动条颜色
* @param {String} bgColor 背景色
* @param {String} trackColor 轨道颜色
* @param {String} ThumbColor 滑块颜色
* @param {String} ButtonColor 按钮颜色
* @property {Collection} SetScrollBarColor ["0x0000ff00","0x0000ff00","0xff1e4952","0x0000ff00"]
*/
SetScrollBarColor:function (bgColor,trackColor,ThumbColor,ButtonColor) {
},
/**
* 是否绘制图标背景色
* @param {Boolean} bDraw true背景色,false背景图
* @property {Boolean} DrawBgColor true
*/
SetDrawBgColor:function (bDraw) {
},
/**
* 背景颜色
* @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 {String}
*/
GetTime:function () {
},
/**
* 获得时间制
* @return {Boolean}
*/
IsTimeFomatter:function () {
},
/**
* 获得容器边框色
* @return {String}
*/
GetContainerBorderColor:function () {
},
/**
* 获得选项高度
* @return {Number}
*/
GetOptionHeight:function () {
},
/**
* 获得文字颜色
* @return {String}
*/
GetTextColor:function () {
},
/**
* 获得文字大小
* @return {Number}
*/
GetTextSize:function () {
},
/**
* 获得文字偏移量
* @return {Array}
*/
GetTextOffset:function () {
},
/**
* 获得文字位置
* @return {String}
*/
GetTextPosition:function () {
},
/**
* 获得item背景色
* @return {String}
*/
GetItemBgColor:function () {
},
/**
* 获得下拉框背景色
* @return {String}
*/
GetDropDownBgColor:function () {
},
/**
* 获得容器背景色
* @return {String}
*/
GetContainerBgColor:function () {
},
/**
* 获得箭头颜色
* @return {String}
*/
GetArrowsColor:function () {
},
/**
* 鼠标经过时的颜色
* @return {String}
*/
GetMouseHoverColor:function () {
},
/**
* 获取滚动条样式
* @return {Array}
*/
GetScrollBarFacade:function () {
},
/**
* 获取滚动条颜色
* @return {Array}
*/
GetScrollBarColor:function () {
},
/**
* 获取是否绘制图标背景色
* @return {Boolean}
*/
IsDrawBgColor:function () {
},
/**
* 获取背景颜色
* @return {String}
*/
GetBgColor:function () {
},
/**
* 获取背景图
* @return {String}
*/
GetBgImg:function () {
},
/**
* 获得文字内容
* @return {String}
*/
GetText:function () {
},
/**
* 获取背景图绘制模式
* @return {String}
*/
GetBgImgRepeat:function () {
},
}