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.

57 lines
1.1 KiB

3 years ago
import QtQuick 2.0
import "qrc:/emulator/elements"
import "qrc:/const"
Item {
// width: 670
// height: 240
// x: 891
width: childrenRect.width
height: childrenRect.height
anchors.horizontalCenter: parent.horizontalCenter
y: 210
Row {
spacing: 40
ModeOptionBind {
y: 130
nameLed: "modePwCenterLed"
nameLedOption: "modeBLed" // x name
3 years ago
image: "qrc:/icons/encoder/modePw.png"
imageOption: "qrc:/icons/encoder/x.png"
3 years ago
}
ModeOptionBind {
y: 41
nameLed: "modeMCenterLed"
nameLedOption: "modeCLed" // y name
3 years ago
image: "qrc:/icons/encoder/modeM.png"
imageOption: "qrc:/icons/encoder/y.png"
3 years ago
}
ModeOptionBind {
nameLed: "modePdCenterLed"
nameLedOption: "modePdLed" // z name
3 years ago
imageOption: "qrc:/icons/encoder/z.png"
image: "qrc:/icons/encoder/modePd.png"
}
ModeOptionBind {
y: 41
nameLed: "modeCCenterLed"
nameLedOption: "modeMLed" // quadrat name
3 years ago
imageOption: "qrc:/icons/encoder/quadratic.png"
image: "qrc:/icons/encoder/modeC.png"
}
ModeButtonBind {
y: 130
nameLed: "modeBCenterLed"
3 years ago
image: "qrc:/icons/encoder/mode2d.png"
led: 2
}
}
}