Compare commits

...

1 Commits

Author SHA1 Message Date
a6558c7b1d add initchooser 2023-12-27 19:01:27 +01:00
5 changed files with 276 additions and 146 deletions

View File

@@ -0,0 +1,2 @@
SPDX-FileCopyrightText: 2020 demmm <anke62@gmail.com>
SPDX-License-Identifier: GPL-3.0-or-later

View File

@@ -42,7 +42,7 @@ Item {
width: 450 width: 450
height: 104 height: 104
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.<br/> text: qsTr("OpenRC base system.<br/>
Default option.") Default option.")
font.pointSize: 10 font.pointSize: 10
anchors.verticalCenterOffset: -10 anchors.verticalCenterOffset: -10
@@ -50,76 +50,14 @@ Item {
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }
Switch {
id: element2
x: 500
y: 110
width: 187
height: 14
text: qsTr("LibreOffice")
checked: true
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element2.checked ? "#3498db" : "#B9B9B9"
border.color: element2.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element2.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element2.down ? "#cccccc" : "#ffffff"
border.color: element2.checked ? (element1.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "libreoffice"
}
}
}
Image {
id: image2
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/libreoffice.jpg"
}
}
Rectangle {
width: 700
height: 150
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("If you don't want to install an office suite, just select No Office Suite. You can always add one (or more) later on your installed system as the need arrives.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch { Switch {
id: element1 id: element1
x: 500 x: 500
y: 110 y: 110
width: 187 width: 187
height: 14 height: 14
text: qsTr("No Office Suite") text: qsTr("OpenRC")
checked: false checked: true
hoverEnabled: true hoverEnabled: true
ButtonGroup.group: switchGroup ButtonGroup.group: switchGroup
@@ -143,18 +81,80 @@ Item {
onCheckedChanged: { onCheckedChanged: {
if ( checked ) { if ( checked ) {
config.packageChoice = "no_office_suite" config.packageChoice = "elogind-openrc"
} }
} }
} }
Image { Image {
id: image id: image1
x: 8 x: 8
y: 25 y: 25
height: 100 height: 100
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
source: "images/no-selection.png" source: "images/artix.png"
}
}
Rectangle {
width: 700
height: 150
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("Dinit base system.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch {
id: element2
x: 500
y: 110
width: 187
height: 14
text: qsTr("Dinit")
checked: false
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element2.checked ? "#3498db" : "#B9B9B9"
border.color: element2.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element2.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element2.down ? "#cccccc" : "#ffffff"
border.color: element2.checked ? (element2.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "elogind-dinit"
}
}
}
Image {
id: image2
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/artix.png"
} }
} }
@@ -169,7 +169,7 @@ Item {
width: 450 width: 450
height: 104 height: 104
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("Create a minimal Desktop install, remove all extra applications and decide later on what you would like to add to your system. Examples of what won't be on such an install, there will be no Office Suite, no media players, no image viewer or print support. It will be just a desktop, file browser, package manager, text editor and simple web-browser.") text: qsTr("Runit base system.")
font.pointSize: 10 font.pointSize: 10
anchors.verticalCenterOffset: -10 anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100 anchors.horizontalCenterOffset: 100
@@ -182,7 +182,7 @@ Item {
y: 110 y: 110
width: 187 width: 187
height: 14 height: 14
text: qsTr("Minimal Install") text: qsTr("Runit")
checked: false checked: false
hoverEnabled: true hoverEnabled: true
ButtonGroup.group: switchGroup ButtonGroup.group: switchGroup
@@ -207,7 +207,7 @@ Item {
onCheckedChanged: { onCheckedChanged: {
if ( checked ) { if ( checked ) {
config.packageChoice = "minimal_install" config.packageChoice = "elogind-runit"
} }
} }
} }
@@ -218,7 +218,70 @@ Item {
y: 25 y: 25
height: 100 height: 100
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
source: "images/plasma.png" source: "images/artix.png"
}
}
Rectangle {
width: 700
height: 150
color: "#ffffff"
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("S6 base system.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch {
id: element4
x: 500
y: 110
width: 187
height: 14
text: qsTr("S6")
checked: false
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element4.checked ? "#3498db" : "#B9B9B9"
border.color: element4.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element4.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element4.down ? "#cccccc" : "#ffffff"
border.color: element4.checked ? (element4.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "elogind-s6"
}
}
}
Image {
id: image4
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/artix.png"
} }
} }
@@ -230,7 +293,7 @@ Item {
Text { Text {
height: 25 height: 25
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("Please select an option for your install, or use the default: LibreOffice included.") text: qsTr("Please select an option for your install, or use the default: OpenRC.")
font.pointSize: 10 font.pointSize: 10
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }

View File

@@ -4,5 +4,6 @@
<file>images/libreoffice.jpg</file> <file>images/libreoffice.jpg</file>
<file>images/no-selection.png</file> <file>images/no-selection.png</file>
<file>images/plasma.png</file> <file>images/plasma.png</file>
<file>images/artix.png</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@@ -42,7 +42,7 @@ Item {
width: 450 width: 450
height: 104 height: 104
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.<br/> text: qsTr("OpenRC base system.<br/>
Default option.") Default option.")
font.pointSize: 10 font.pointSize: 10
anchors.verticalCenterOffset: -10 anchors.verticalCenterOffset: -10
@@ -50,76 +50,14 @@ Item {
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }
Switch {
id: element2
x: 500
y: 110
width: 187
height: 14
text: qsTr("LibreOffice")
checked: true
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element2.checked ? "#3498db" : "#B9B9B9"
border.color: element2.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element2.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element2.down ? "#cccccc" : "#ffffff"
border.color: element2.checked ? (element1.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "libreoffice"
}
}
}
Image {
id: image2
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/libreoffice.jpg"
}
}
Rectangle {
width: 700
height: 150
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("If you don't want to install an office suite, just select No Office Suite. You can always add one (or more) later on your installed system as the need arrives.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch { Switch {
id: element1 id: element1
x: 500 x: 500
y: 110 y: 110
width: 187 width: 187
height: 14 height: 14
text: qsTr("No Office Suite") text: qsTr("OpenRC")
checked: false checked: true
hoverEnabled: true hoverEnabled: true
ButtonGroup.group: switchGroup ButtonGroup.group: switchGroup
@@ -143,18 +81,80 @@ Item {
onCheckedChanged: { onCheckedChanged: {
if ( checked ) { if ( checked ) {
config.packageChoice = "no_office_suite" config.packageChoice = "elogind-openrc"
} }
} }
} }
Image { Image {
id: image id: image1
x: 8 x: 8
y: 25 y: 25
height: 100 height: 100
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
source: "images/no-selection.png" source: "images/artix.png"
}
}
Rectangle {
width: 700
height: 150
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("Dinit base system.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch {
id: element2
x: 500
y: 110
width: 187
height: 14
text: qsTr("Dinit")
checked: false
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element2.checked ? "#3498db" : "#B9B9B9"
border.color: element2.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element2.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element2.down ? "#cccccc" : "#ffffff"
border.color: element2.checked ? (element2.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "elogind-dinit"
}
}
}
Image {
id: image2
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/artix.png"
} }
} }
@@ -169,7 +169,7 @@ Item {
width: 450 width: 450
height: 104 height: 104
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("Create a minimal Desktop install, remove all extra applications and decide later on what you would like to add to your system. Examples of what won't be on such an install, there will be no Office Suite, no media players, no image viewer or print support. It will be just a desktop, file browser, package manager, text editor and simple web-browser.") text: qsTr("Runit base system.")
font.pointSize: 10 font.pointSize: 10
anchors.verticalCenterOffset: -10 anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100 anchors.horizontalCenterOffset: 100
@@ -182,7 +182,7 @@ Item {
y: 110 y: 110
width: 187 width: 187
height: 14 height: 14
text: qsTr("Minimal Install") text: qsTr("Runit")
checked: false checked: false
hoverEnabled: true hoverEnabled: true
ButtonGroup.group: switchGroup ButtonGroup.group: switchGroup
@@ -207,7 +207,7 @@ Item {
onCheckedChanged: { onCheckedChanged: {
if ( checked ) { if ( checked ) {
config.packageChoice = "minimal_install" config.packageChoice = "elogind-runit"
} }
} }
} }
@@ -218,7 +218,70 @@ Item {
y: 25 y: 25
height: 100 height: 100
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
source: "images/plasma.png" source: "images/artix.png"
}
}
Rectangle {
width: 700
height: 150
color: "#ffffff"
radius: 10
border.width: 0
Text {
width: 450
height: 104
anchors.centerIn: parent
text: qsTr("S6 base system.")
font.pointSize: 10
anchors.verticalCenterOffset: -10
anchors.horizontalCenterOffset: 100
wrapMode: Text.WordWrap
}
Switch {
id: element4
x: 500
y: 110
width: 187
height: 14
text: qsTr("S6")
checked: false
hoverEnabled: true
ButtonGroup.group: switchGroup
indicator: Rectangle {
implicitWidth: 40
implicitHeight: 14
radius: 10
color: element4.checked ? "#3498db" : "#B9B9B9"
border.color: element4.checked ? "#3498db" : "#cccccc"
Rectangle {
x: element4.checked ? parent.width - width : 0
y: (parent.height - height) / 2
width: 20
height: 20
radius: 10
color: element4.down ? "#cccccc" : "#ffffff"
border.color: element4.checked ? (element4.down ? "#3498db" : "#3498db") : "#999999"
}
}
onCheckedChanged: {
if ( checked ) {
config.packageChoice = "elogind-s6"
}
}
}
Image {
id: image4
x: 8
y: 25
height: 100
fillMode: Image.PreserveAspectFit
source: "images/artix.png"
} }
} }
@@ -230,7 +293,7 @@ Item {
Text { Text {
height: 25 height: 25
anchors.centerIn: parent anchors.centerIn: parent
text: qsTr("Please select an option for your install, or use the default: LibreOffice included.") text: qsTr("Please select an option for your install, or use the default: OpenRC.")
font.pointSize: 10 font.pointSize: 10
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }

View File

@@ -4,5 +4,6 @@
<file>images/libreoffice.jpg</file> <file>images/libreoffice.jpg</file>
<file>images/no-selection.png</file> <file>images/no-selection.png</file>
<file>images/plasma.png</file> <file>images/plasma.png</file>
<file>images/artix.png</file>
</qresource> </qresource>
</RCC> </RCC>