mirror of
https://github.com/status-im/status-desktop.git
synced 2025-03-02 23:41:18 +00:00
Introduced Style.svg() Style.png() Style.emoji() and Style.icon() in Style.qml. Those should be used to set the source in Images instead of using relative paths. Usage: Image { source: Style.svg("check) .... Also moved all Singletons inside a new "utils" folder and made it a QML module, to use import utils 1.0 instead of relative paths Closes #3678
43 lines
1.3 KiB
QML
43 lines
1.3 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import utils 1.0
|
|
import "../../../../shared"
|
|
import "../../../../shared/status"
|
|
|
|
StatusRadioButtonRow {
|
|
property string network: ""
|
|
property string networkName: ""
|
|
property string newNetwork: ""
|
|
id: radioProd
|
|
text: networkName == "" ? Utils.getNetworkName(network) : networkName
|
|
buttonGroup: networkSettings
|
|
checked: profileModel.network.current === network
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
if (profileModel.network.current === network) return;
|
|
newNetwork = network;
|
|
openPopup(confirmDialogComponent)
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: confirmDialogComponent
|
|
ConfirmationDialog {
|
|
id: confirmDialog
|
|
//% "Warning!"
|
|
header.title: qsTrId("close-app-title")
|
|
//% "The account will be logged out. When you unlock it again, the selected network will be used"
|
|
confirmationText: qsTrId("logout-app-content")
|
|
onConfirmButtonClicked: {
|
|
profileModel.network.current = newNetwork;
|
|
}
|
|
onClosed: {
|
|
profileModel.network.triggerNetworkChange()
|
|
destroy()
|
|
}
|
|
}
|
|
}
|
|
}
|