2018-01-07 05:20:45 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2015-04-01 08:56:05 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. 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.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder 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 HOLDER 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.
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
import QtQuick 2.2
|
|
|
|
import QtQuick.XmlListModel 2.0
|
2016-09-22 21:05:20 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import QtQml 2.2
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
// anchors.fill:parent
|
2014-08-19 12:58:02 +00:00
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
|
|
|
|
}
|
|
|
|
|
|
|
|
onOpacityChanged: visible = opacity !== 0
|
|
|
|
|
2016-10-29 12:07:55 +00:00
|
|
|
function onPageClosed(settingsObject) {
|
2016-09-22 21:05:20 +00:00
|
|
|
|
2016-10-29 12:07:55 +00:00
|
|
|
// set default language to first item if none selected
|
|
|
|
if(gridView.currentIndex === -1) {
|
|
|
|
gridView.currentIndex = 0
|
|
|
|
}
|
2016-09-22 21:05:20 +00:00
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
var lang = languagesModel.get(gridView.currentIndex);
|
|
|
|
settingsObject['language'] = lang.display_name;
|
2016-07-19 20:31:09 +00:00
|
|
|
settingsObject['wallet_language'] = lang.wallet_language;
|
2016-06-10 13:41:13 +00:00
|
|
|
settingsObject['locale'] = lang.locale;
|
2016-10-29 12:07:55 +00:00
|
|
|
console.log("Language chosen: ",lang.display_name)
|
2016-06-14 13:09:14 +00:00
|
|
|
return true
|
2016-01-26 07:30:07 +00:00
|
|
|
}
|
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
ColumnLayout {
|
2014-08-19 12:58:02 +00:00
|
|
|
id: headerColumn
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.leftMargin: wizardLeftMargin
|
|
|
|
Layout.rightMargin: wizardRightMargin
|
2017-08-06 15:03:16 +00:00
|
|
|
Layout.bottomMargin: 40 * scaleRatio
|
|
|
|
spacing: 20 * scaleRatio
|
2014-08-19 12:58:02 +00:00
|
|
|
|
|
|
|
Text {
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.fillWidth: true
|
2014-08-19 12:58:02 +00:00
|
|
|
font.family: "Arial"
|
2017-08-06 15:03:16 +00:00
|
|
|
font.pixelSize: 28 * scaleRatio
|
2014-08-19 12:58:02 +00:00
|
|
|
color: "#3F3F3F"
|
2014-08-21 10:09:52 +00:00
|
|
|
wrapMode: Text.Wrap
|
2017-01-30 09:37:14 +00:00
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
text: qsTr("Welcome to Monero!") + translationManager.emptyString
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.fillWidth: true
|
2014-08-19 12:58:02 +00:00
|
|
|
font.family: "Arial"
|
2017-08-06 15:03:16 +00:00
|
|
|
font.pixelSize: 18 * scaleRatio
|
2014-08-19 12:58:02 +00:00
|
|
|
color: "#4A4646"
|
2014-08-21 10:09:52 +00:00
|
|
|
wrapMode: Text.Wrap
|
2017-01-30 09:37:14 +00:00
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2016-11-08 14:47:00 +00:00
|
|
|
text: qsTr("Please choose a language and regional format.") + translationManager.emptyString
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-30 09:37:14 +00:00
|
|
|
|
|
|
|
|
2016-09-22 21:05:20 +00:00
|
|
|
// Flags model
|
2014-08-19 12:58:02 +00:00
|
|
|
XmlListModel {
|
|
|
|
id: languagesModel
|
2016-01-27 19:06:38 +00:00
|
|
|
source: "/lang/languages.xml"
|
2014-08-19 12:58:02 +00:00
|
|
|
query: "/languages/language"
|
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
XmlRole { name: "display_name"; query: "@display_name/string()" }
|
|
|
|
XmlRole { name: "locale"; query: "@locale/string()" }
|
2016-07-19 20:31:09 +00:00
|
|
|
XmlRole { name: "wallet_language"; query: "@wallet_language/string()" }
|
2014-08-19 12:58:02 +00:00
|
|
|
XmlRole { name: "flag"; query: "@flag/string()" }
|
2016-01-26 07:30:07 +00:00
|
|
|
// TODO: XmlListModel is read only, we should store current language somewhere else
|
|
|
|
// and set current language accordingly
|
2014-08-19 12:58:02 +00:00
|
|
|
XmlRole { name: "isCurrent"; query: "@enabled/string()" }
|
2016-07-19 20:31:09 +00:00
|
|
|
|
2016-10-29 12:07:55 +00:00
|
|
|
onStatusChanged: {
|
|
|
|
if(status === XmlListModel.Ready){
|
|
|
|
console.log("languages availible: ",count);
|
|
|
|
if(count === 1){
|
|
|
|
console.log("Skipping language page until more languages are availible")
|
|
|
|
wizard.switchPage(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
ColumnLayout{
|
|
|
|
// Flags view
|
|
|
|
GridView {
|
|
|
|
property int margin: (isMobile) ? 0 : Math.floor(appWindow.width/12);
|
|
|
|
|
|
|
|
id: gridView
|
2017-08-06 15:03:16 +00:00
|
|
|
cellWidth: 140 * scaleRatio
|
|
|
|
cellHeight: 120 * scaleRatio
|
2017-01-30 09:37:14 +00:00
|
|
|
model: languagesModel
|
|
|
|
// Hack to center the flag grid
|
2017-08-06 15:03:16 +00:00
|
|
|
property int columns: Math.floor(appWindow.width/cellWidth)
|
|
|
|
Layout.leftMargin: margin + (appWindow.width - cellWidth*columns) /2
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.rightMargin: margin
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
clip: true
|
|
|
|
|
|
|
|
delegate: ColumnLayout {
|
|
|
|
id: flagDelegate
|
|
|
|
width: gridView.cellWidth
|
|
|
|
// height: gridView.cellHeight
|
|
|
|
// Layout.alignment: Qt.AlignHCenter
|
|
|
|
Rectangle {
|
|
|
|
id: flagRect
|
2017-08-06 15:03:16 +00:00
|
|
|
width: 60 * scaleRatio; height: 60 * scaleRatio
|
2017-01-30 09:37:14 +00:00
|
|
|
// anchors.centerIn: parent
|
2017-08-06 15:03:16 +00:00
|
|
|
radius: 30 * scaleRatio
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
color: gridView.currentIndex === index ? "#DBDBDB" : "#FFFFFF"
|
|
|
|
Image {
|
|
|
|
anchors.fill: parent
|
|
|
|
source: flag
|
|
|
|
}
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
Text {
|
|
|
|
font.family: "Arial"
|
2017-08-06 15:03:16 +00:00
|
|
|
font.pixelSize: 18 * scaleRatio
|
2017-01-30 09:37:14 +00:00
|
|
|
// anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.bold: gridView.currentIndex === index
|
|
|
|
// elide: Text.ElideRight
|
|
|
|
color: "#3F3F3F"
|
|
|
|
text: display_name
|
|
|
|
// horizontalAlignment: Text.AlignHCenter
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
}
|
|
|
|
MouseArea {
|
|
|
|
id: delegateArea
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
gridView.currentIndex = index
|
|
|
|
var data = languagesModel.get(gridView.currentIndex);
|
|
|
|
if (data !== null || data !== undefined) {
|
|
|
|
var locale = data.locale
|
|
|
|
translationManager.setLanguage(locale.split("_")[0]);
|
|
|
|
wizard.switchPage(true)
|
|
|
|
}
|
2016-07-19 20:31:09 +00:00
|
|
|
}
|
2016-01-26 07:30:07 +00:00
|
|
|
}
|
2017-01-30 09:37:14 +00:00
|
|
|
} // delegate
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-19 20:31:09 +00:00
|
|
|
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
2016-09-22 21:05:20 +00:00
|
|
|
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|