2020-04-03 13:43:48 +02:00
|
|
|
import io.calamares.core 1.0
|
2020-03-24 15:47:53 +01:00
|
|
|
import io.calamares.ui 1.0
|
|
|
|
|
|
|
|
import QtQuick 2.10
|
|
|
|
import QtQuick.Controls 2.10
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import org.kde.kirigami 2.7 as Kirigami
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
|
2020-04-03 13:43:48 +02:00
|
|
|
RowLayout
|
2020-03-24 15:47:53 +01:00
|
|
|
{
|
2020-04-03 13:43:48 +02:00
|
|
|
Rectangle {
|
|
|
|
width: parent.width / 3
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ColumnLayout {
|
|
|
|
id: regions
|
|
|
|
Repeater {
|
|
|
|
model: config.regionModel
|
|
|
|
Text {
|
|
|
|
text: label
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
width: parent.width / 3
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ColumnLayout {
|
|
|
|
id: zones
|
2020-04-04 18:43:23 +02:00
|
|
|
ListView {
|
2020-04-03 13:43:48 +02:00
|
|
|
model: config.zonesModel
|
2020-04-04 18:43:23 +02:00
|
|
|
delegate: Text {
|
2020-04-03 13:43:48 +02:00
|
|
|
text: label
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-24 15:47:53 +01:00
|
|
|
}
|
|
|
|
|