summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter/qml/qmlscatter/main.qml
blob: a85c2d21ed56b5e161dd31452a5d1c7b2c068a82 (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
/****************************************************************************
**
** 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 com.digia.QtDataVis3D 1.0
import "."

Item {
    id: mainview
    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
            }
        }
    }

    Button {
        id: shadowToggle
        width: parent.width / 5
        text: "Toggle Shadows On"
        onClicked: {
            if (testscatter.shadowQuality === Scatter3D.ShadowNone) {
                testscatter.shadowQuality = Scatter3D.ShadowMedium;
                text = "Toggle Shadows Off";
            } else {
                testscatter.shadowQuality = Scatter3D.ShadowNone;
                text = "Toggle Shadows On";
            }
        }
    }

    Button {
        id: smoothToggle
        width: parent.width / 5
        defaultColor: "gainsboro"
        text: "Toggle Smooth Objects On"
        anchors.left: shadowToggle.right
        onClicked: {
            if (testscatter.objectSmooth === false) {
                text = "Toggle Smooth Objects Off"
                testscatter.objectSmooth = true;
            } else {
                text = "Toggle Smooth Objects On"
                testscatter.objectSmooth = false;
            }
        }
    }

    Button {
        id: cameraToggle
        width: parent.width / 5
        text: "Toggle Camera Preset"
        anchors.left: smoothToggle.right
        onClicked: {
            if (testscatter.cameraPreset === Scatter3D.PresetFront) {
                testscatter.cameraPreset = Scatter3D.PresetIsometricRightHigh;
            } else {
                testscatter.cameraPreset = Scatter3D.PresetFront;
            }
        }
    }

    Button {
        id: themeToggle
        width: parent.width / 5
        defaultColor: "gainsboro"
        text: "Toggle Theme"
        anchors.left: cameraToggle.right
        onClicked: {
            if (testscatter.theme === Scatter3D.ThemeBlueCerulean) {
                testscatter.theme = Scatter3D.ThemeSystem;
            } else {
                testscatter.theme = Scatter3D.ThemeBlueCerulean;
            }
        }
    }

    Button {
        id: backgroundToggle
        width: parent.width / 5
        text: "Toggle Background Off"
        anchors.left: themeToggle.right
        onClicked: {
            if (testscatter.backgroundVisible === true) {
                testscatter.backgroundVisible = false;
                text = "Toggle Background On";
            } else {
                testscatter.backgroundVisible = true;
                text = "Toggle Background Off";
            }
        }
    }
}