|
|
|
/**
|
|
|
|
* Created by GUY on 2015/6/26.
|
|
|
|
*/
|
|
|
|
|
|
|
|
BI.Label = BI.inherit(BI.Single, {
|
|
|
|
_defaultConfig: function () {
|
|
|
|
var conf = BI.Label.superclass._defaultConfig.apply(this, arguments);
|
|
|
|
return BI.extend(conf, {
|
|
|
|
baseCls: (conf.baseCls || "") + " bi-label",
|
|
|
|
textAlign: "center",
|
|
|
|
whiteSpace: "nowrap", // normal or nowrap
|
|
|
|
forceCenter: false, // 是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效
|
|
|
|
textWidth: null,
|
|
|
|
textHeight: null,
|
|
|
|
hgap: 0,
|
|
|
|
vgap: 0,
|
|
|
|
lgap: 0,
|
|
|
|
rgap: 0,
|
|
|
|
tgap: 0,
|
|
|
|
bgap: 0,
|
|
|
|
text: "",
|
|
|
|
py: "",
|
|
|
|
keyword: ""
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_createJson: function () {
|
|
|
|
var o = this.options;
|
|
|
|
return {
|
|
|
|
type: "bi.text",
|
|
|
|
textAlign: o.textAlign,
|
|
|
|
whiteSpace: o.whiteSpace,
|
|
|
|
lineHeight: o.textHeight,
|
|
|
|
text: o.text,
|
|
|
|
value: o.value,
|
|
|
|
py: o.py,
|
|
|
|
keyword: o.keyword
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
_init: function () {
|
|
|
|
BI.Label.superclass._init.apply(this, arguments);
|
|
|
|
|
|
|
|
if (this.options.textAlign === "center") {
|
|
|
|
this._createCenterEl();
|
|
|
|
} else {
|
|
|
|
this._createNotCenterEl();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_createCenterEl: function () {
|
|
|
|
var o = this.options;
|
|
|
|
var json = this._createJson();
|
|
|
|
json.textAlign = "left";
|
|
|
|
if (BI.isNumber(o.width) && o.width > 0) {
|
|
|
|
if (BI.isNumber(o.textWidth) && o.textWidth > 0) {
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
var gap = (o.width - o.textWidth) / 2;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.adaptive",
|
|
|
|
height: o.height,
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: gap + o.hgap + o.lgap,
|
|
|
|
right: gap + o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
this.element.css({"line-height": o.height + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
json.width = o.textWidth;
|
|
|
|
json.textAlign = o.textAlign;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (o.whiteSpace == "normal") {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.absolute",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: o.hgap + o.lgap,
|
|
|
|
right: o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
json.width = o.width - 2 * o.hgap;
|
|
|
|
json.textAlign = o.textAlign;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.textWidth) && o.textWidth > 0) {
|
|
|
|
json.width = o.textWidth;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (o.whiteSpace == "normal") {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
if (BI.isNumber(o.textHeight) && o.textHeight > 0) {
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.adaptive",
|
|
|
|
height: o.height,
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: o.hgap + o.lgap,
|
|
|
|
right: o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BI.extend(json, {
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap
|
|
|
|
});
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
// 能走到这边,说明这个text不需要换行,并且不会做任何布局包装,那么这时候就该是什么align是什么align
|
|
|
|
json.textAlign = o.textAlign;
|
|
|
|
this.text = BI.createWidget(BI.extend(json, {
|
|
|
|
element: this
|
|
|
|
}));
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.layout",
|
|
|
|
element: this.text,
|
|
|
|
scrollable: o.whiteSpace === "normal"
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BI.extend(json, {
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap
|
|
|
|
});
|
|
|
|
if (o.forceCenter) {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.center_adapt",
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 能走到这边,说明这个text不需要换行,并且不会做任何布局包装,那么这时候就该是什么align是什么align
|
|
|
|
json.textAlign = o.textAlign;
|
|
|
|
this.text = BI.createWidget(BI.extend(json, {
|
|
|
|
element: this
|
|
|
|
}));
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.layout",
|
|
|
|
element: this.text,
|
|
|
|
scrollable: o.whiteSpace === "normal"
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_createNotCenterEl: function () {
|
|
|
|
var o = this.options;
|
|
|
|
var json = this._createJson();
|
|
|
|
if (BI.isNumber(o.width) && o.width > 0) {
|
|
|
|
if (BI.isNumber(o.textWidth) && o.textWidth > 0) {
|
|
|
|
json.width = o.textWidth;
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.adaptive",
|
|
|
|
height: o.height,
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: o.hgap + o.lgap,
|
|
|
|
right: o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
this.element.css({"line-height": o.height + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (o.whiteSpace == "normal") {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.absolute",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: o.hgap + o.lgap,
|
|
|
|
right: o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
json.width = o.width - 2 * o.hgap - o.lgap - o.rgap;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.textWidth) && o.textWidth > 0) {
|
|
|
|
json.width = o.textWidth;
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: (this.text = BI.createWidget(json))
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (o.whiteSpace == "normal") {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap,
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
// 父亲有line-height,而当前label是inline-block,那么他的行高一定是父亲的lineHeight,就算text上设置了line-height
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (BI.isNumber(o.height) && o.height > 0) {
|
|
|
|
if (BI.isNumber(o.textHeight) && o.textHeight > 0) {
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.adaptive",
|
|
|
|
height: o.height,
|
|
|
|
scrollable: o.whiteSpace === "normal",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: (this.text = BI.createWidget(json)),
|
|
|
|
left: o.hgap + o.lgap,
|
|
|
|
right: o.hgap + o.rgap,
|
|
|
|
top: o.vgap + o.tgap,
|
|
|
|
bottom: o.vgap + o.bgap
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BI.extend(json, {
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap
|
|
|
|
});
|
|
|
|
this.element.css({
|
|
|
|
"line-height": o.height + "px"
|
|
|
|
});
|
|
|
|
this.text = BI.createWidget(BI.extend(json, {
|
|
|
|
element: this
|
|
|
|
}));
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.layout",
|
|
|
|
element: this.text,
|
|
|
|
scrollable: o.whiteSpace === "normal"
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BI.extend(json, {
|
|
|
|
hgap: o.hgap,
|
|
|
|
vgap: o.vgap,
|
|
|
|
lgap: o.lgap,
|
|
|
|
rgap: o.rgap,
|
|
|
|
tgap: o.tgap,
|
|
|
|
bgap: o.bgap
|
|
|
|
});
|
|
|
|
if (o.forceCenter) {
|
|
|
|
this.text = BI.createWidget(json);
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vertical_adapt",
|
|
|
|
element: this,
|
|
|
|
items: [this.text]
|
|
|
|
});
|
|
|
|
o.textHeight && this.element.css({"line-height": o.textHeight + "px"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.text = BI.createWidget(BI.extend(json, {
|
|
|
|
element: this
|
|
|
|
}));
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.layout",
|
|
|
|
element: this.text,
|
|
|
|
scrollable: o.whiteSpace === "normal"
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_setEnable: function (enable) {
|
|
|
|
BI.Label.superclass._setEnable.apply(this, arguments);
|
|
|
|
if (enable === true) {
|
|
|
|
this.element.removeClass("base-disabled disabled");
|
|
|
|
} else if (enable === false) {
|
|
|
|
this.element.addClass("base-disabled disabled");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
doRedMark: function () {
|
|
|
|
this.text.doRedMark.apply(this.text, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
unRedMark: function () {
|
|
|
|
this.text.unRedMark.apply(this.text, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
doHighLight: function () {
|
|
|
|
this.text.doHighLight.apply(this.text, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
unHighLight: function () {
|
|
|
|
this.text.unHighLight.apply(this.text, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
setText: function (v) {
|
|
|
|
this.options.text = v;
|
|
|
|
this.text.setText(v);
|
|
|
|
},
|
|
|
|
|
|
|
|
getText: function () {
|
|
|
|
return this.options.text;
|
|
|
|
},
|
|
|
|
|
|
|
|
setStyle: function (css) {
|
|
|
|
this.text.setStyle(css);
|
|
|
|
},
|
|
|
|
|
|
|
|
setValue: function (v) {
|
|
|
|
BI.Label.superclass.setValue.apply(this, arguments);
|
|
|
|
if (!this.isReadOnly()) {
|
|
|
|
this.text.setValue(v);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
populate: function () {
|
|
|
|
BI.Label.superclass.populate.apply(this, arguments);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
BI.shortcut("bi.label", BI.Label);
|