aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/demos/stocqt/content/StockSettings.qml
diff options
context:
space:
mode:
authorMika Salmela <mika.salmela@digia.com>2014-05-02 14:14:55 +0300
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-02 14:40:23 +0200
commitd98362f5e9cc5c07cff5f32672aa448b0a0c31c4 (patch)
tree1cdc1d3dea8934b46f95b28912f9e3e244ff8d10 /examples/quick/demos/stocqt/content/StockSettings.qml
parent7996ac4c0a679ca5e476c2d3e3e0b84582e40c22 (diff)
StocQt demo improvement
Along with general demo improvements, this task implements the new layout to the StocQt demo. Also few bugs on the functionality are corrected, like drawing the stock graph on right way and initial values reset on stock model when changing active stock. Task-number: QTBUG-38254 Change-Id: I9d3387ed0e3f23512b8e60c70246589c10237818 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'examples/quick/demos/stocqt/content/StockSettings.qml')
-rw-r--r--examples/quick/demos/stocqt/content/StockSettings.qml216
1 files changed, 0 insertions, 216 deletions
diff --git a/examples/quick/demos/stocqt/content/StockSettings.qml b/examples/quick/demos/stocqt/content/StockSettings.qml
deleted file mode 100644
index 07152410fa..0000000000
--- a/examples/quick/demos/stocqt/content/StockSettings.qml
+++ /dev/null
@@ -1,216 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-
-Rectangle {
- id: root
- width: 320
- height: 480
- color: "#423A2F"
- property var startDate : startDatePicker.date
- property var endDate : endDatePicker.date
-
- property bool drawHighPrice: highButton.buttonEnabled
- property bool drawLowPrice: lowButton.buttonEnabled
- property bool drawOpenPrice: openButton.buttonEnabled
- property bool drawClosePrice: closeButton.buttonEnabled
- property bool drawVolume: volumeButton.buttonEnabled
- property bool drawKLine: klineButton.buttonEnabled
-
- property color highColor: Qt.rgba(1, 0, 0, 1)
- property color lowColor: Qt.rgba(0, 1, 0, 1)
- property color openColor: Qt.rgba(0, 0, 1, 1)
- property color volumeColor: Qt.rgba(0.3, 0.5, 0.7, 1)
- property color closeColor: "#ecc088"
-
- property string chartType: "year"
-
- Image {
- id: logo
- source: "images/logo.png"
- anchors.horizontalCenter : parent.horizontalCenter
- anchors.top: parent.top
- anchors.topMargin: 15
- }
-
- Text {
- id: startDateText
- text: "START DATE:"
- color: "#76644A"
- font.pointSize: 15
- anchors.left: parent.left
- anchors.leftMargin: 20
- anchors.top: logo.bottom
- anchors.topMargin: 20
- }
-
- DatePicker {
- id: startDatePicker
- anchors.left: parent.left
- anchors.leftMargin: 30
- anchors.top: startDateText.bottom
- anchors.topMargin: 8
- }
-
- Text {
- id: endDateText
- text: "END DATE:"
- color: "#76644A"
- font.pointSize: 15
- anchors.left: parent.left
- anchors.leftMargin: 20
- anchors.top: startDatePicker.bottom
- anchors.topMargin: 20
- }
-
- DatePicker {
- id: endDatePicker
- anchors.left: parent.left
- anchors.leftMargin: 30
- anchors.top: endDateText.bottom
- anchors.topMargin: 8
- }
-
- Text {
- id: drawOptionsText
- text: "DRAW OPTIONS:"
- color: "#76644A"
- font.pointSize: 15
- anchors.left: parent.left
- anchors.leftMargin: 20
- anchors.top: endDatePicker.bottom
- anchors.topMargin: 20
- }
- Column {
- id: drawOptions
- anchors.top: drawOptionsText.bottom
- anchors.topMargin: 8
- anchors.left: parent.left
- anchors.leftMargin: 30
- spacing: 2
-
- Row {
- spacing: 10
-
- CheckBox {
- id: highButton
- text: "High"
- buttonEnabled: false
- }
- CheckBox {
- id: lowButton
- text: "Low"
- buttonEnabled: false
- }
- }
- Row {
- spacing: 10
- CheckBox {
- id: openButton
- text: "Open"
- buttonEnabled: false
- }
- CheckBox {
- text: "Close"
- id: closeButton
- buttonEnabled: true
- }
-
- }
- Row {
- spacing: 10
- CheckBox {
- id: volumeButton
- text: "Volume"
- buttonEnabled: true
- }
- CheckBox {
- id: klineButton
- text: "K Line"
- buttonEnabled: false
- }
- }
- }
-
- Text {
- id: chartTypeText
- text: "SHOW PREVIOUS:"
- color: "#76644A"
- font.pointSize: 15
- anchors.left: parent.left
- anchors.leftMargin: 20
- anchors.top: drawOptions.bottom
- anchors.topMargin: 20
- }
- Row {
- anchors.left: parent.left
- anchors.leftMargin: 20
- anchors.top: chartTypeText.bottom
- anchors.topMargin: 8
- spacing: -1
- Button {
- id: yearView
- text: "YEAR"
- buttonEnabled: root.chartType == "year"
- onClicked: root.chartType = "year"
- }
- Button {
- id: monthView
- text: "MONTH"
- buttonEnabled: root.chartType == "month"
- onClicked: root.chartType = "month"
- }
- Button {
- id: weekView
- text: "WEEK"
- buttonEnabled: root.chartType == "week"
- onClicked: root.chartType = "week"
- }
- Button {
- id: allView
- text: "ALL"
- buttonEnabled: root.chartType == "all"
- onClicked: root.chartType = "all"
- }
- }
-
- Component.onCompleted: startDatePicker.date = new Date(1995, 3, 25)
-}