svghmi/widget_button.ysl2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Wed, 13 May 2020 18:50:07 +0200
branchsvghmi
changeset 2961 00825316ed00
parent 2944 2a20038fbea9
child 2976 99c4521bb844
permissions -rw-r--r--
SVGHMI: Update Button widget to class declaration, and add a button widget in tests/svghmi.
// 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");
              });
        }
    }
    ||