mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 18:19:15 +08:00
put wizardcontant in a scrollview
This commit is contained in:
parent
178622a666
commit
6a097aaded
@ -29,43 +29,64 @@ ColumnLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
|
||||||
text: parent.title
|
|
||||||
font.pointSize: 18;
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
//: Add UM Original wizard page description
|
|
||||||
width: 300
|
|
||||||
|
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
text: qsTr("To assist you in having better default settings for your Ultimaker. Cura would like to know which upgrades you have in your machine:");
|
|
||||||
}
|
|
||||||
|
|
||||||
ScrollView {
|
ScrollView {
|
||||||
Layout.fillWidth: true;
|
implicitHeight: wizardPage.height
|
||||||
Column {
|
implicitWidth: wizardPage.width - (UM.Theme.sizes.default_margin.width * 4)
|
||||||
CheckBox {
|
ColumnLayout {
|
||||||
text: qsTr("Breakfast")
|
width: wizardPage.width
|
||||||
checked: true
|
Label {
|
||||||
|
id: pageTitle
|
||||||
|
width: parent.width
|
||||||
|
text: wizardPage.title
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
font.pointSize: 18
|
||||||
}
|
}
|
||||||
CheckBox {
|
Label {
|
||||||
text: qsTr("Lunch")
|
id: pageDescription
|
||||||
|
//: Add UM Original wizard page description
|
||||||
|
width: parent.width
|
||||||
|
//anchors.top: pageTitle.bottom
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
text: qsTr("To assist you in having better default settings for your Ultimaker. Cura would like to know which upgrades you have in your machine:")
|
||||||
}
|
}
|
||||||
CheckBox {
|
|
||||||
text: qsTr("Dinner")
|
Column {
|
||||||
checked: true
|
id: pageCheckboxes
|
||||||
|
width: parent.width
|
||||||
|
anchors.top: pageDescription.bottom
|
||||||
|
|
||||||
|
CheckBox {
|
||||||
|
text: qsTr("Extruder driver ugrades")
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: qsTr("Heated printer bed (kit)")
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: qsTr("Heated printer bed (self built)")
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: qsTr("Dual extrusion (experimental)")
|
||||||
|
checked: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Label{
|
||||||
|
id: pageCaption1
|
||||||
|
anchors.top: pageCheckboxes.bottom
|
||||||
|
width: parent.width
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
text: qsTr("If you have an Ultimaker bought after october 2012 you will have the Extruder drive upgrade. If you do not have this upgrade, it is highly recommended to improve reliability.");
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: pageCaption2
|
||||||
|
anchors.top: pageCaption1.bottom
|
||||||
|
width: parent.width
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
text: qsTr("This upgrade can be bought from the Ultimaker webshop or found on thingiverse as thing:26094");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
|
||||||
//: Add Printer wizard field label
|
|
||||||
text: qsTr("Printer Name:");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Item { Layout.fillWidth: true; Layout.fillHeight: true; }
|
|
||||||
|
|
||||||
ExclusiveGroup { id: printerGroup; }
|
ExclusiveGroup { id: printerGroup; }
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user