diff options
Diffstat (limited to 'examples/quickcontrols2/wearable/qml/Weather')
27 files changed, 0 insertions, 375 deletions
diff --git a/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml b/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml deleted file mode 100644 index 28fc0bc1..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml +++ /dev/null @@ -1,297 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of the examples of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** BSD License Usage -** Alternatively, 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 The Qt Company Ltd 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 -import QtQuick.Controls as QQC2 -import ".." -import "../Style" -import "weather.js" as WeatherData - -Item { - QQC2.SwipeView { - id: svWeatherContainer - - anchors.fill: parent - - SwipeViewPage { - id: weatherPage1 - - Row { - anchors.centerIn: parent - spacing: 2 - - Image { - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/temperature") - } - - Column { - anchors.verticalCenter: parent.verticalCenter - spacing: 40 - - Text { - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.temp) ? - qsTr("Avg: ") - + String(wDataCntr.weatherData.main.temp) - + " °F" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - - Text { - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.temp_min) ? - qsTr("Min: ") - + String(wDataCntr.weatherData.main.temp_min) - + " °F" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - - Text { - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.temp_max) ? - qsTr("Max: ") - + String(wDataCntr.weatherData.main.temp_max) - + " °F " : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - } - } - - SwipeViewPage { - id: weatherPage2 - - Column { - spacing: 40 - anchors.centerIn: parent - - Row { - spacing: 20 - anchors.horizontalCenter: parent.horizontalCenter - - Image { - id: wImg - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/wind") - } - - Text { - anchors.verticalCenter: parent.verticalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.wind - && wDataCntr.weatherData.wind.speed) ? - String(wDataCntr.weatherData.wind.speed) - + " mph" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - - Row { - spacing: 20 - anchors.horizontalCenter: parent.horizontalCenter - - Image { - id: hImg - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/humidity") - } - - Text { - anchors.verticalCenter: parent.verticalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.humidity) ? - String(wDataCntr.weatherData.main.humidity) - + " %" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - } - } - - SwipeViewPage { - id: weatherPage3 - - Row { - anchors.centerIn: parent - spacing: 10 - - Image { - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/pressure") - } - - Column { - anchors.verticalCenter: parent.verticalCenter - spacing: 40 - - Text { - anchors.horizontalCenter: parent.horizontalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.pressure) ? - String(wDataCntr.weatherData.main.pressure) - + " hPa" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - - Text { - anchors.horizontalCenter: parent.horizontalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.sea_level) ? - String(wDataCntr.weatherData.main.sea_level) - + " hPa" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - - Text { - anchors.horizontalCenter: parent.horizontalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.main - && wDataCntr.weatherData.main.grnd_level) ? - String(wDataCntr.weatherData.main.grnd_level) - + " hPa" : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - } - } - - SwipeViewPage { - id: weatherPage4 - - Column { - spacing: 40 - anchors.centerIn: parent - - Row { - spacing: 30 - anchors.horizontalCenter: parent.horizontalCenter - - Image { - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/sunrise") - } - - Text { - anchors.verticalCenter: parent.verticalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.sys - && wDataCntr.weatherData.sys.sunrise) ? - WeatherData.getTimeHMS(wDataCntr.weatherData.sys.sunrise) - : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - - Row { - spacing: 30 - anchors.horizontalCenter: parent.horizontalCenter - - Image { - anchors.verticalCenter: parent.verticalCenter - source: UIStyle.themeImagePath("images/sunset") - } - - Text { - anchors.verticalCenter: parent.verticalCenter - text: (wDataCntr.weatherData - && wDataCntr.weatherData.sys - && wDataCntr.weatherData.sys.sunset) ? - WeatherData.getTimeHMS(wDataCntr.weatherData.sys.sunset) - : "N/A" - font.pixelSize: UIStyle.fontSizeM - font.letterSpacing: 1 - color: UIStyle.themeColorQtGray1 - } - } - } - } - } - - QtObject { - id: wDataCntr - property var weatherData - } - - QQC2.PageIndicator { - count: svWeatherContainer.count - currentIndex: svWeatherContainer.currentIndex - - anchors.bottom: svWeatherContainer.bottom - anchors.horizontalCenter: parent.horizontalCenter - } - Component.onCompleted: { - WeatherData.requestWeatherData(wDataCntr) - } -} diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/humidity-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/humidity-dark.png Binary files differdeleted file mode 100644 index 5d82238c..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/humidity-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index d83bb4f0..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/humidity-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/humidity-light.png Binary files differdeleted file mode 100644 index 5f3bf714..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/humidity-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index a23364c5..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/pressure-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/pressure-dark.png Binary files differdeleted file mode 100644 index b2870a55..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/pressure-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 061f9b82..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/pressure-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/pressure-light.png Binary files differdeleted file mode 100644 index 7b1b1587..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/pressure-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 1a40c642..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-dark.png Binary files differdeleted file mode 100644 index 9cac22e1..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index fe326823..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-light.png Binary files differdeleted file mode 100644 index f67a5dff..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/sunrise-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 86f54837..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/sunset-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/sunset-dark.png Binary files differdeleted file mode 100644 index 0068d305..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/sunset-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index e515bcc3..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/sunset-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/sunset-light.png Binary files differdeleted file mode 100644 index 495f78a7..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/sunset-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index d220e829..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/temperature-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/temperature-dark.png Binary files differdeleted file mode 100644 index a207d944..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/temperature-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index c0e4ef39..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/temperature-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/temperature-light.png Binary files differdeleted file mode 100644 index c4f7b61c..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/temperature-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 50d4f4c4..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/wind-dark.png b/examples/quickcontrols2/wearable/qml/Weather/images/wind-dark.png Binary files differdeleted file mode 100644 index 6a530491..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/wind-dark.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 487e3e78..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/wind-light.png b/examples/quickcontrols2/wearable/qml/Weather/images/wind-light.png Binary files differdeleted file mode 100644 index 97824bee..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/wind-light.png +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] b/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] Binary files differdeleted file mode 100644 index 7f94bd85..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/images/[email protected] +++ /dev/null diff --git a/examples/quickcontrols2/wearable/qml/Weather/weather.js b/examples/quickcontrols2/wearable/qml/Weather/weather.js deleted file mode 100644 index b3bf4465..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/weather.js +++ /dev/null @@ -1,77 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of the examples of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** BSD License Usage -** Alternatively, 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 The Qt Company Ltd 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$ -** -****************************************************************************/ - -function requestWeatherData(cntr) { - var xhr = new XMLHttpRequest; - xhr.open("GET", "http://code.qt.io/weather.json"); - xhr.onreadystatechange = function () { - if (xhr.readyState === XMLHttpRequest.DONE) { - cntr.weatherData = JSON.parse(xhr.responseText) - } - } - xhr.send(); -} - -function getTimeHMS(utcTime) { - var date = new Date(utcTime * 1000); - // Hours part from the timestamp - var hours = date.getHours(); - var ampm = Math.floor((hours / 12)) ? " PM" : " AM"; - hours = (hours % 12); - - // Minutes part from the timestamp - var minutes = "0" + date.getMinutes(); - // Seconds part from the timestamp - var seconds = "0" + date.getSeconds(); - - // Will display time in 10:30:23 format - return hours % 12 + ':' + minutes.substr(-2) + ':' + seconds.substr(-2) - + ampm; -} diff --git a/examples/quickcontrols2/wearable/qml/Weather/weather.json b/examples/quickcontrols2/wearable/qml/Weather/weather.json deleted file mode 100644 index 2cce95c6..00000000 --- a/examples/quickcontrols2/wearable/qml/Weather/weather.json +++ /dev/null @@ -1 +0,0 @@ -{"coord":{"lon":-122.42,"lat":37.77},"weather":[{"id":803,"main":"Clouds","description":"broken clouds","icon":"04n"}],"base":"stations","main":{"temp":45.22,"pressure":1020.17,"humidity":88,"temp_min":36.92,"temp_max":58.92,"sea_level":1028.19,"grnd_level":1020.17},"wind":{"speed":6.73,"deg":201.002},"clouds":{"all":68},"dt":1476412232,"sys":{"message":0.012,"country":"US","sunrise":1476454666,"sunset":1476495156},"id":5391959,"name":"San Francisco","cod":200} |