forked from Sepanta/console-emulator
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.
39 lines
552 B
39 lines
552 B
import QtQuick 2.0
|
|
|
|
import "qrc:/emulator/elements"
|
|
import "qrc:/const"
|
|
|
|
Item {
|
|
width: childrenRect.width
|
|
height: childrenRect.height
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 70
|
|
y: 70
|
|
|
|
// x: 1466
|
|
// y: 148
|
|
|
|
Row {
|
|
spacing: 36
|
|
|
|
KnobLightBind {
|
|
name: "xtd"
|
|
image: "qrc:/icons/topRight/xtd.png"
|
|
}
|
|
|
|
KnobLightBind {
|
|
name: "bf"
|
|
image: "qrc:/icons/topRight/bf.png"
|
|
}
|
|
|
|
KnobLightBind {
|
|
name: "p5"
|
|
image: "qrc:/icons/topRight/p5.png"
|
|
}
|
|
|
|
KnobLightBind {
|
|
name: "p6"
|
|
image: "qrc:/icons/topRight/p6.png"
|
|
}
|
|
}
|
|
}
|
|
|