summaryrefslogtreecommitdiffstats
path: root/util/qt3d/modeltweak/qml/ModelPropertiesPane.qml
blob: 2c3c96fd7735a1eb9b9962486ff42427328aa33a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import QtQuick 1.0
import Qt3D 1.0
import ModelTweak 1.0

Column {
    width: posX.width
    height: parent.height
    spacing: 4

    // POSITION
    Item {
        width: parent.width
        height: imageP.height

        Text {
            anchors.left: parent.left
            anchors.leftMargin: 8
            text: "Position";
            color: "#FFFFFF"
        }
        Image {
            id: imageP
            anchors.right: parent.right
            anchors.rightMargin: 8
            source: "images/lock.png"
        }
    }
    BlenderValueSlider {
        focus: true
        id: posX
        label: "X:"
        value: transformTranslate.translate.x.toFixed(3)
        function update (f)  {
            transformTranslate.translate = Qt.vector3d(f, transformTranslate.translate.y, transformTranslate.translate.z);
        }
        onNext: { updateMe(); focus = false; posY.focus = true; }
        onPrev: { updateMe(); focus = false; scaleZ.focus = true; }
    }
    BlenderValueSlider {
        id: posY
        label: "Y:"
        value: transformTranslate.translate.y.toFixed(3)
        function update (f)  {
            transformTranslate.translate = Qt.vector3d(transformTranslate.translate.x, f, transformTranslate.translate.z);
        }
        onNext: { updateMe(); focus = false; posZ.focus = true; }
        onPrev: { updateMe(); focus = false; posX.focus = true; }
    }
    BlenderValueSlider {
        id: posZ
        label: "Z:"
        value: transformTranslate.translate.z.toFixed(3)
        function update (f)  {
            transformTranslate.translate = Qt.vector3d(transformTranslate.translate.x, transformTranslate.translate.y, f);
        }
        onNext: { updateMe(); focus = false; rotX.focus = true; }
        onPrev: { updateMe(); focus = false; posY.focus = true; }
    }

    // ROTATE
    Item {
        width: parent.width
        height: imageR.height

        Text {
            anchors.left: parent.left
            anchors.leftMargin: 8
            text: "Rotation";
            color: "#FFFFFF"
        }
        Image {
            id: imageR
            anchors.right: parent.right
            anchors.rightMargin: 8
            source: "images/lock.png"
        }
    }
    BlenderValueSlider {
        id: rotX
        label: "X:"
        delta: 1
        min: 0;   limitMin: true
        max: 360; limitMax: true
        value: transformRotateX.angle.toFixed(3)
        function update (f)  { transformRotateX.angle = f }
        onNext: { updateMe(); focus = false; rotY.focus = true; }
        onPrev: { updateMe(); focus = false; posZ.focus = true; }
    }
    BlenderValueSlider {
        id: rotY
        label: "Y:"
        delta: 1
        min: 0;   limitMin: true
        max: 360; limitMax: true
        value: transformRotateY.angle.toFixed(3)
        function update (f)  { transformRotateY.angle = f }
        onNext: { updateMe(); focus = false; rotZ.focus = true; }
        onPrev: { updateMe(); focus = false; rotX.focus = true; }
    }
    BlenderValueSlider {
        id: rotZ
        label: "Z:"
        delta: 1
        min: 0;   limitMin: true
        max: 360; limitMax: true
        value: transformRotateZ.angle.toFixed(3)
        function update (f)  { transformRotateZ.angle = f }
        onNext: { updateMe(); focus = false; scaleX.focus = true; }
        onPrev: { updateMe(); focus = false; rotY.focus = true; }
    }

    // SCALE
    Item {
        width: parent.width
        height: imageS.height

        Text {
            anchors.left: parent.left
            anchors.leftMargin: 8
            text: "Scale";
            color: "#FFFFFF"
        }
        Image {
            id: imageS
            anchors.right: parent.right
            anchors.rightMargin: 8
            source: "images/lock.png"
        }
    }
    BlenderValueSlider {
        id: scaleX
        label: "X:"
        min: 0; limitMin: true
        value: transformScale.scale.x.toFixed(3)
        function update (f)  { transformScale.scale = Qt.vector3d(f, transformScale.scale.y, transformScale.scale.z); }
        onNext: { updateMe(); focus = false; scaleY.focus = true; }
        onPrev: { updateMe(); focus = false; rotZ.focus = true; }
    }
    BlenderValueSlider {
        id: scaleY
        label: "Y:"
        min: 0; limitMin: true
        value: transformScale.scale.y.toFixed(3)
        function update (f)  { transformScale.scale = Qt.vector3d(transformScale.scale.x, f, transformScale.scale.z); }
        onNext: { updateMe(); focus = false; scaleZ.focus = true; }
        onPrev: { updateMe(); focus = false; scaleX.focus = true; }
    }
    BlenderValueSlider {
        id: scaleZ
        label: "Z:"
        min: 0; limitMin: true
        value: transformScale.scale.z.toFixed(3)
        function update (f)  { transformScale.scale = Qt.vector3d(transformScale.scale.x, transformScale.scale.y, f); }
        onNext: { updateMe(); focus = false; posX.focus = true; }
        onPrev: { updateMe(); focus = false; scaleY.focus = true; }
    }
}