56 lines
1.4 KiB
QML
56 lines
1.4 KiB
QML
import QtQuick;
|
|
import QtQuick.Controls;
|
|
import QtQuick.Layouts;
|
|
|
|
Item{
|
|
id: control
|
|
property vector3d value
|
|
implicitHeight: 25
|
|
signal asValueChanged(value:var)
|
|
function setValue(newValue:var){
|
|
if(value !== newValue){
|
|
value = newValue
|
|
asValueChanged(value)
|
|
}
|
|
}
|
|
RowLayout{
|
|
anchors.fill: parent
|
|
NumberBox{
|
|
id: xBox
|
|
width: parent.width/4
|
|
Layout.alignment: Qt.AlignLeft
|
|
number: value.x
|
|
onNumberChanged: {
|
|
if (control.value) {
|
|
control.setValue(Qt.vector3d(number, control.value.y, control.value.z))
|
|
}
|
|
}
|
|
}
|
|
NumberBox{
|
|
id: yBox
|
|
width: parent.width/4
|
|
Layout.alignment: Qt.AlignLeft
|
|
number: value.y
|
|
onNumberChanged: {
|
|
if (control.value) {
|
|
control.setValue(Qt.vector3d(control.value.x, number, control.value.z))
|
|
}
|
|
}
|
|
}
|
|
NumberBox{
|
|
id: zBox
|
|
width: parent.width/4
|
|
Layout.alignment: Qt.AlignLeft
|
|
number: value.z
|
|
onNumberChanged: {
|
|
if (control.value) {
|
|
control.setValue(Qt.vector3d(control.value.x, control.value.y, number))
|
|
}
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
}
|