/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2020 - 2021 Anke Boersma * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * */ import io.calamares.ui 1.0 import QtQuick 2.7 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.3 import org.kde.kirigami 2.7 as Kirigami Item { readonly property color backgroundColor: Kirigami.Theme.backgroundColor //"#F5F5F5" readonly property color headerBackgroundColor: Kirigami.Theme.alternateBackgroundColor //"#d3d3d3" readonly property color backgroundLighterColor: "#ffffff" readonly property color highlightColor: Kirigami.Theme.highlightColor //"#3498DB" readonly property color textColor: Kirigami.Theme.textColor readonly property color highlightedTextColor: Kirigami.Theme.highlightedTextColor width: parent.width height: parent.height focus: true Rectangle { id: textArea x: 28 y: 14 anchors.fill: parent color: backgroundColor Column { id: languages x: 130 y: 40 Rectangle { width: 250 height: 140 color: headerBackgroundColor Text { anchors.top: parent.top width: 240 wrapMode: Text.WordWrap text: qsTr("

Languages


The system locale setting affects the language and character set for some command line user interface elements. The current setting is %1.").arg(config.currentLanguageCode) font.pointSize: 10 } } Rectangle { width: 250 height: 300 ScrollView { id: scroll1 anchors.fill: parent contentHeight: 800 ScrollBar.horizontal.policy: ScrollBar.AlwaysOff ListView { id: list1 focus: true clip: true width: parent.width model: config.supportedLocales currentIndex: -1 //model.currentLanguageCodeIndex delegate: ItemDelegate { hoverEnabled: true width: parent.width implicitHeight: 18 highlighted: ListView.isCurrentItem Label { Layout.fillHeight: true Layout.fillWidth: true width: parent.width height: 18 color: highlighted ? highlightedTextColor : textColor text: modelData background: Rectangle { color: highlighted || hovered ? highlightColor : backgroundLighterColor opacity: highlighted || hovered ? 0.5 : 0.9 } MouseArea { hoverEnabled: true anchors.fill: parent cursorShape: Qt.PointingHandCursor onClicked: { list1.currentIndex = index } } } } onCurrentItemChanged: { config.currentLanguageCode = model[currentIndex] } /* This works because model is a stringlist */ } } } } Column { id: lc_numeric x: 430 y: 40 Rectangle { width: 250 height: 140 color: headerBackgroundColor Text { anchors.top: parent.top width: 240 wrapMode: Text.WordWrap text: qsTr("

Locales


The system locale setting affects the numbers and dates format. The current setting is %1.").arg(config.currentLCCode) font.pointSize: 10 } } Rectangle { width: 250 height: 300 ScrollView { id: scroll2 anchors.fill: parent contentHeight: 800 ScrollBar.horizontal.policy: ScrollBar.AlwaysOff ListView { id: list2 focus: true clip: true model: config.supportedLocales currentIndex: -1 //model.currentLCCodeIndex delegate: ItemDelegate { hoverEnabled: true width: parent.width implicitHeight: 18 highlighted: ListView.isCurrentItem Label { Layout.fillHeight: true Layout.fillWidth: true width: parent.width height: 18 color: highlighted ? highlightedTextColor : textColor text: modelData background: Rectangle { color: highlighted || hovered ? highlightColor : backgroundLighterColor opacity: highlighted || hovered ? 0.5 : 0.9 } MouseArea { hoverEnabled: true anchors.fill: parent cursorShape: Qt.PointingHandCursor onClicked: { list2.currentIndex = index } } } } onCurrentItemChanged: { config.currentLCCode = model[currentIndex]; } /* This works because model is a stringlist */ } } } } ToolButton { id: toolButton x: 19 y: 29 width: 105 height: 48 text: qsTr("Back") hoverEnabled: true onClicked: load.source = "" Image { id: image1 x: 0 y: 13 width: 22 height: 22 source: "img/chevron-left-solid.svg" fillMode: Image.PreserveAspectFit } } } }