/**************************************************************************** ** ** 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 Data { id: chartData } Item { id: dataView width: parent.width height: parent.height - shadowToggle.height anchors.bottom: parent.bottom Scatter3D { id: testscatter width: dataView.width height: dataView.height font.family: "Times New Roman" font.pointSize: 40 mapping: chartData.mapping shadowQuality: Scatter3D.ShadowNone selectionMode: Scatter3D.ModeItem labelTransparency: Scatter3D.TransparencyNoBackground itemLabelFormat: "X:@xLabel Y:@yLabel Z:@zLabel" Component.onCompleted: { data = chartData.model } } } 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"; } } } }