summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter/qml/qmlscatter/main.qml
blob: fd2c6e2eceb62a2eec18eec467e829158572bf1e (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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the QtDataVis3D module.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
**
****************************************************************************/

import QtQuick 2.1
import QtQuick.Controls 1.0
import com.digia.QtDataVis3D 1.0

Item {
    id: mainview
    width: 800
    height: 700
    visible: true

    Item {
        id: dataView
        width: parent.width
        height: parent.height - shadowToggle.height
        anchors.bottom: parent.bottom

        ScatterDataMapping {
            id: scatterMapping
            xPosRole: "xPos"
            yPosRole: "yPos"
            zPosRole: "zPos"
        }

        ListModel {
            id: dataModel
            ListElement{ xPos: -10.0; yPos: 4.9; zPos: -5.0 }
            ListElement{ xPos: 10.0; yPos: 4.9; zPos: -5.0 }
            ListElement{ xPos: -10.0; yPos: 4.9; zPos: 5.0 }
            ListElement{ xPos: 10.0; yPos: 4.9; zPos: 5.0 }
            ListElement{ xPos: -10.0; yPos: -4.9; zPos: -5.0 }
            ListElement{ xPos: 10.0; yPos: -4.9; zPos: -5.0 }
            ListElement{ xPos: -10.0; yPos: -4.9; zPos: 5.0 }
            ListElement{ xPos: 10.0; yPos: -4.9; zPos: 5.0 }

            ListElement{ xPos: -1.0; yPos: 0.3; zPos: -0.5 }
            ListElement{ xPos: 1.0; yPos: 2.105; zPos: 0.5 }
            ListElement{ xPos: 0.5; yPos: -0.65; zPos: -0.5 }
            ListElement{ xPos: -0.5; yPos: 1.225; zPos: 0.5 }
            ListElement{ xPos: 0.0; yPos: 0.0; zPos: 0.0 }
            ListElement{ xPos: 0.0; yPos: 2.0; zPos: 0.0 }
            ListElement{ xPos: 0.0; yPos: -0.5; zPos: 0.0 }

            ListElement{ xPos: 6.0; yPos: 0.0; zPos: 4.0 }
            ListElement{ xPos: 5.8; yPos: 0.2; zPos: 5.0 }
            ListElement{ xPos: 5.6; yPos: 0.4; zPos: 4.5 }
            ListElement{ xPos: 5.4; yPos: 0.6; zPos: 3.8 }
            ListElement{ xPos: 5.2; yPos: 0.8; zPos: 4.8 }
            ListElement{ xPos: 5.0; yPos: 0.3; zPos: 4.1 }
            ListElement{ xPos: 4.9; yPos: -0.3; zPos: 4.9 }
            ListElement{ xPos: 4.7; yPos: -0.5; zPos: 3.5 }
            ListElement{ xPos: 4.5; yPos: -0.7; zPos: 3.3 }
            ListElement{ xPos: 4.3; yPos: -0.4; zPos: 3.7 }
        }

        Scatter3D {
            id: testscatter
            width: dataView.width
            height: dataView.height
            font.family: "Times New Roman"
            font.pointSize: 40
            mapping: scatterMapping
            shadowQuality: Scatter3D.ShadowNone
            selectionMode: Scatter3D.ModeItem
            labelTransparency: Scatter3D.TransparencyNoBackground
            itemLabelFormat: "X:@xLabel Y:@yLabel Z:@zLabel"

            Component.onCompleted: {
                console.log("testscatter complete");
                data = dataModel
            }
        }
    }

    Rectangle {
        id: shadowToggle
        width: 120
        height: 30

        TextArea {
            id: shadowText
            text: "Toggle Shadows On"
            anchors.fill: parent
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testscatter.shadowQuality === Scatter3D.ShadowNone) {
                    testscatter.shadowQuality = Scatter3D.ShadowMedium;
                    shadowText.text = "Toggle Shadows Off";
                } else {
                    testscatter.shadowQuality = Scatter3D.ShadowNone;
                    shadowText.text = "Toggle Shadows On";
                }
            }
        }
    }
    Rectangle {
        id: smoothToggle
        width: 140
        height: 30
        anchors.left: shadowToggle.right

        TextArea {
            id: smoothText
            text: "Toggle Smooth Objects On"
            anchors.fill: parent
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testscatter.objectSmooth === false) {
                    smoothText.text = "Toggle Smooth Objects Off"
                    testscatter.objectSmooth = true;
                } else {
                    smoothText.text = "Toggle Smooth Objects On"
                    testscatter.objectSmooth = false;
                }
            }
        }
    }
    Rectangle {
        id: cameraToggle
        width: 130
        height: 30
        anchors.left: smoothToggle.right

        TextArea {
            text: "Toggle Camera Preset"
            anchors.fill: parent
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testscatter.cameraPreset === Scatter3D.PresetFront) {
                    testscatter.cameraPreset = Scatter3D.PresetIsometricRightHigh;
                } else {
                    testscatter.cameraPreset = Scatter3D.PresetFront;
                }
            }
        }
    }
    Rectangle {
        id: themeToggle
        width: 120
        height: 30
        anchors.left: cameraToggle.right

        TextArea {
            text: "Toggle Theme"
            anchors.fill: parent
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testscatter.theme === Scatter3D.ThemeBlueCerulean) {
                    testscatter.theme = Scatter3D.ThemeSystem;
                } else {
                    testscatter.theme = Scatter3D.ThemeBlueCerulean;
                }
            }
        }
    }
    Rectangle {
        id: backgroundToggle
        width: 130
        height: 30
        anchors.left: themeToggle.right

        TextArea {
            id: backgroundText
            text: "Toggle Background Off"
            anchors.fill: parent
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testscatter.backgroundVisible === true) {
                    testscatter.backgroundVisible = false;
                    backgroundText.text = "Toggle Background On";
                } else {
                    testscatter.backgroundVisible = true;
                    backgroundText.text = "Toggle Background Off";
                }
            }
        }
    }

}