aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/locale/locale.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml/locale/locale.qml')
-rw-r--r--examples/qml/locale/locale.qml101
1 files changed, 0 insertions, 101 deletions
diff --git a/examples/qml/locale/locale.qml b/examples/qml/locale/locale.qml
deleted file mode 100644
index 4308dd0c82..0000000000
--- a/examples/qml/locale/locale.qml
+++ /dev/null
@@ -1,101 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Rectangle {
- id: root
- width: 320
- height: 480
- color: "lightgray"
-
- component LocaleDelegate: Text {
- required property var modelData
- required property int index
-
- property string locale: modelData
- height: 30
- width: view.width
- text: `${Qt.locale(modelData).name} (${Qt.locale(modelData).nativeCountryName}/${Qt.locale(modelData).nativeLanguageName})`
- MouseArea {
- anchors.fill: parent
- onClicked: view.currentIndex = parent.index
- }
- }
-
- property string locale: (view.currentItem as LocaleDelegate).locale
-
- Text {
- id: title
- text: "Select locale:"
- }
-
- Rectangle {
- id: chooser
- anchors.top: title.bottom
- anchors.topMargin: 5
- width: parent.width-10
- x: 5
- height: parent.height/2 - 10
- color: "#40300030"
- ListView {
- id: view
- clip: true
- focus: true
- anchors.fill: parent
- model: [
- "en_US",
- "en_GB",
- "fi_FI",
- "de_DE",
- "ar_SA",
- "hi_IN",
- "zh_CN",
- "th_TH",
- "fr_FR",
- "nb_NO",
- "sv_SE"
- ]
-
- delegate: LocaleDelegate {}
- highlight: Rectangle {
- height: 30
- color: "#60300030"
- }
- }
- }
-
- Rectangle {
- color: "white"
- anchors.top: chooser.bottom
- anchors.topMargin: 5
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 5
- x: 5; width: parent.width - 10
-
- Column {
- anchors.fill: parent
- spacing: 5
- Text {
- property var date: new Date()
- text: "Date: " + date.toLocaleDateString(Qt.locale(root.locale))
- }
- Text {
- property var date: new Date()
- text: "Time: " + date.toLocaleTimeString(Qt.locale(root.locale))
- }
- Text {
- property var dow: Qt.locale(root.locale).firstDayOfWeek
- text: "First day of week: " + Qt.locale(root.locale).standaloneDayName(dow)
- }
- Text {
- property var num: 10023823
- text: "Number: " + num.toLocaleString(Qt.locale(root.locale))
- }
- Text {
- property var num: 10023823
- text: "Currency: " + num.toLocaleCurrencyString(Qt.locale(root.locale))
- }
- }
- }
-}