svghmi/widget_button.ysl2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 21 May 2020 11:29:45 +0200
branchsvghmi
changeset 2970 4a9b0df0602a
parent 2961 00825316ed00
child 2976 99c4521bb844
permissions -rw-r--r--
SVGHMI: stop using eval in change_hmi_value, apparently slowly leaking memory.
// 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");
              });
        }
    }
    ||