38 lines
1.0 KiB
QML
38 lines
1.0 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
import "../../../../shared/status"
|
|
|
|
StatusRadioButtonRow {
|
|
property string fleetName: ""
|
|
property string newFleet: ""
|
|
text: fleetName
|
|
buttonGroup: fleetSettings
|
|
checked: profileModel.fleets.fleet === text
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
if (profileModel.fleets.fleet === fleetName) return;
|
|
newFleet = fleetName;
|
|
openPopup(confirmDialogComponent)
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: confirmDialogComponent
|
|
ConfirmationDialog {
|
|
//% "Warning!"
|
|
title: qsTrId("close-app-title")
|
|
//% "Change fleet to %1"
|
|
confirmationText: qsTrId("change-fleet-to--1").arg(newFleet)
|
|
onConfirmButtonClicked: profileModel.fleets.setFleet(newFleet)
|
|
onClosed: {
|
|
profileModel.fleets.triggerFleetChange()
|
|
destroy();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|