You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
76 lines
1.8 KiB
2 years ago
|
BI.Instruction = BI.inherit(BI.Widget, {
|
||
|
_defaultConfig: function () {
|
||
|
var conf = BI.Link.superclass._defaultConfig.apply(this, arguments);
|
||
|
return BI.extend(conf, {
|
||
|
baseCls: (conf.baseCls || "") + " bi-instruction",
|
||
|
height: 20,
|
||
|
level: "error",
|
||
|
textAlign: "left",
|
||
|
whiteSpace: "nowrap"
|
||
|
});
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
var self = this, o = this.options;
|
||
|
|
||
|
return {
|
||
|
type: "bi.label",
|
||
|
ref: function (_ref) {
|
||
|
self.text = _ref;
|
||
|
},
|
||
|
cls: "instruction-" + o.level,
|
||
|
textAlign: o.textAlign,
|
||
|
whiteSpace: o.whiteSpace,
|
||
|
textHeight: o.height,
|
||
|
height: o.height,
|
||
|
hgap: o.hgap,
|
||
|
rgap: o.rgap,
|
||
|
lgap: o.lgap,
|
||
|
vgap: o.vgap,
|
||
|
text: o.text,
|
||
|
keyword: o.keyword,
|
||
|
value: o.value,
|
||
|
py: o.py
|
||
|
};
|
||
|
},
|
||
|
|
||
|
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) {
|
||
|
this.text.setValue(v);
|
||
|
},
|
||
|
|
||
|
getValue: function () {
|
||
|
this.text.getValue();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
BI.shortcut("bi.instruction", BI.Instruction);
|