beremiz

SVGHMI: Added clipping to min and max value for all widget using @path,min,max syntax. Added overshot() and undershot() methods to widget base class, called when value is limited to max or min respectively.
// widget_customhtml.ysl2
template "widget[@type='CustomHtml']", mode="widget_class"{
||
class CustomHtmlWidget extends Widget{
frequency = 5;
widget_size = undefined;
dispatch(value) {
this.request_animate();
}
animate(){
}
init() {
this.widget_size = this.container_elt.getBBox();
this.element.innerHTML ='<foreignObject x="'+
this.widget_size.x+'" y="'+this.widget_size.y+
'" width="'+this.widget_size.width+'" height="'+this.widget_size.height+'"> '+
this.code_elt.textContent+
' </foreignObject>';
}
}
||
}
template "widget[@type='CustomHtml']", mode="widget_defs" {
param "hmi_element";
labels("container code");
|,
}