status-desktop/ui/app/AppLayouts/Profile/Sections/NetworkRadioSelector.qml

40 lines
1.1 KiB
QML
Raw Normal View History

2020-11-23 19:14:48 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import "../../../../imports"
import "../../../../shared"
import "../../../../shared/status"
RowLayout {
2020-11-23 20:41:57 +00:00
property string network: ""
2020-11-23 19:14:48 +00:00
property string newNetwork: ""
ConfirmationDialog {
id: confirmDialog
title: qsTr("Warning!")
confirmationText: qsTr("The account will be logged out. When you unlock it again, the selected network will be used")
onConfirmButtonClicked: {
profileModel.network = newNetwork;
}
onClosed: profileModel.triggerNetworkChange()
}
width: parent.width
StyledText {
2020-11-23 20:41:57 +00:00
text: Utils.getNetworkName(network)
2020-11-23 19:14:48 +00:00
font.pixelSize: 15
}
StatusRadioButton {
id: radioProd
Layout.alignment: Qt.AlignRight
ButtonGroup.group: networkSettings
rightPadding: 0
2020-11-23 20:41:57 +00:00
checked: profileModel.network === network
2020-11-23 19:14:48 +00:00
onClicked: {
2020-11-23 20:41:57 +00:00
if (profileModel.network === network) return;
newNetwork = network;
2020-11-23 19:14:48 +00:00
confirmDialog.open();
}
}
}