2020-11-06 14:20:52 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.controls 1.0
|
2020-11-06 14:20:52 +00:00
|
|
|
|
2021-10-27 09:37:58 +00:00
|
|
|
RadioButtonSelector {
|
|
|
|
id: root
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
property var advancedStore
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
property string fleetName: ""
|
|
|
|
property string newFleet: ""
|
2021-10-27 09:37:58 +00:00
|
|
|
|
|
|
|
title: fleetName
|
2021-12-14 18:47:32 +00:00
|
|
|
checked: root.advancedStore.fleet === root.fleetName
|
2021-10-27 09:37:58 +00:00
|
|
|
|
|
|
|
onCheckedChanged: {
|
2021-12-14 18:47:32 +00:00
|
|
|
if (checked) {
|
|
|
|
if (root.advancedStore.fleet === root.fleetName)
|
|
|
|
return
|
|
|
|
|
|
|
|
root.newFleet = root.fleetName;
|
|
|
|
Global.openPopup(confirmDialogComponent)
|
|
|
|
}
|
2021-03-19 10:25:29 +00:00
|
|
|
}
|
2021-06-04 17:38:25 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: confirmDialogComponent
|
|
|
|
ConfirmationDialog {
|
2023-05-23 12:46:16 +00:00
|
|
|
headerSettings.title: qsTr("Warning!")
|
2022-04-04 11:26:30 +00:00
|
|
|
confirmationText: qsTr("Change fleet to %1").arg(root.newFleet)
|
2021-12-14 18:47:32 +00:00
|
|
|
onConfirmButtonClicked: {
|
|
|
|
root.advancedStore.setFleet(root.newFleet)
|
|
|
|
}
|
2021-06-04 17:38:25 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
}
|
2020-11-06 14:20:52 +00:00
|
|
|
}
|
|
|
|
}
|