You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.9 KiB
187 lines
5.9 KiB
import io.calamares.ui 1.0
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls.Material 2.1
|
|
|
|
Item {
|
|
function updatePackageSelections(objectName, checked) {
|
|
var newMap = JSON.parse(JSON.stringify(packageSelect.packageSelections));
|
|
newMap[objectName] = checked;
|
|
packageSelect.packageSelections = newMap;
|
|
}
|
|
|
|
ColumnLayout {
|
|
scale: 0.9
|
|
|
|
Text {
|
|
text: qsTr("What apps would you like to start with?")
|
|
font.bold: true
|
|
font.pointSize: 14
|
|
}
|
|
RadioButton {
|
|
checked: true
|
|
text: qsTr("Normal Installation")
|
|
font.pointSize: 12
|
|
indicator.width: 20
|
|
indicator.height: 20
|
|
}
|
|
Text {
|
|
text: qsTr("Web browser, utilities, office software, games, and media players.")
|
|
font.pointSize: 10
|
|
font.italic: true
|
|
}
|
|
RadioButton {
|
|
text: qsTr("Minimal Installation")
|
|
objectName: "minimalInstall"
|
|
font.pointSize: 12
|
|
indicator.width: 20
|
|
indicator.height: 20
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Only the desktop environment.")
|
|
font.pointSize: 10
|
|
font.italic: true
|
|
}
|
|
|
|
Rectangle {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 1
|
|
color: "grey"
|
|
}
|
|
|
|
Text {
|
|
text: qsTr("Additional Options")
|
|
font.bold: true
|
|
font.pointSize: 14
|
|
}
|
|
CheckBox {
|
|
text: qsTr("Download and install updates following installation")
|
|
objectName: "updateNow"
|
|
font.pointSize: 12
|
|
indicator.width: 20
|
|
indicator.height: 20
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("This saves time after the installation, and keeps your system secure.")
|
|
font.pointSize: 10
|
|
font.italic: true
|
|
}
|
|
CheckBox {
|
|
text: qsTr("Install third-party software for graphics, WiFi hardware, and additional media formats")
|
|
objectName: "restrictedExtras"
|
|
font.pointSize: 12
|
|
indicator.width: 20
|
|
indicator.height: 20
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("This software is subject to license terms included with its documentation, and some may be proprietary.")
|
|
font.pointSize: 10
|
|
font.italic: true
|
|
}
|
|
|
|
Rectangle {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 1
|
|
color: "grey"
|
|
}
|
|
|
|
Text {
|
|
text: qsTr("Install additional third-party packages:")
|
|
font.bold: true
|
|
font.pointSize: 14
|
|
}
|
|
Flickable {
|
|
Layout.fillWidth: true
|
|
height: 225
|
|
contentHeight: column.height
|
|
clip: true
|
|
|
|
Column {
|
|
id: column
|
|
width: parent.width
|
|
|
|
CheckBox {
|
|
text: qsTr("Element")
|
|
objectName: "element"
|
|
font.pointSize: 11
|
|
indicator.width: 18
|
|
indicator.height: 18
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Matrix-based end-to-end encrypted messenger and secure collaboration app")
|
|
font.italic: true
|
|
font.pointSize: 10
|
|
}
|
|
CheckBox {
|
|
text: qsTr("Thunderbird")
|
|
objectName: "thunderbird"
|
|
font.pointSize: 11
|
|
indicator.width: 18
|
|
indicator.height: 18
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Email, newsfeed, chat, and calendaring client")
|
|
font.italic: true
|
|
font.pointSize: 10
|
|
}
|
|
CheckBox {
|
|
text: qsTr("Virtual Machine Manager")
|
|
objectName: "virt-manager"
|
|
font.pointSize: 11
|
|
indicator.width: 18
|
|
indicator.height: 18
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Desktop user interface for managing virtual machines through libvirt")
|
|
font.italic: true
|
|
font.pointSize: 10
|
|
}
|
|
CheckBox {
|
|
text: qsTr("Krita")
|
|
objectName: "krita"
|
|
font.pointSize: 11
|
|
indicator.width: 18
|
|
indicator.height: 18
|
|
onClicked: {
|
|
updatePackageSelections(objectName, checked);
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Graphics editor designed primarily for digital art and 2D animation")
|
|
font.italic: true
|
|
font.pointSize: 10
|
|
}
|
|
}
|
|
ScrollBar.vertical: ScrollBar {
|
|
active: true
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Note: third-party packages are provided by outside vendors and are not officially supported in any way. Use at your own risk.")
|
|
font.bold: true
|
|
font.pointSize: 10
|
|
}
|
|
}
|
|
}
|