svghmi/widget_button.ysl2
author Edouard Tisserant
Tue, 02 Jun 2020 11:34:50 +0200
branchsvghmi
changeset 2974 78938093e8b2
parent 2961 00825316ed00
child 2976 99c4521bb844
permissions -rw-r--r--
IDE: Main toolbar : Show repair button also in stop mode. Move repair button after disconnect button.
// widget_button.ysl2

template "widget[@type='Button']", mode="widget_class"
    ||
    class ButtonWidget extends Widget{
        frequency = 5;
        init() {
            this.element.addEventListener(
              "mousedown",
              evt => {
                  change_hmi_value(this.indexes[0], "=1");
              });
            this.element.addEventListener(
              "mouseup",
              evt => {
                  change_hmi_value(this.indexes[0], "=0");
              });
        }
    }
    ||