mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-22 06:03:57 -06:00
Refactor "Ultimaker Cloud" page in welcome wizard
The following changes have been done: - Text content changed - "Sign in" and "Create an account" buttons moved in the middle, under the main text - "Sign in" button changed to PrimaryButton format - "Finish" button changed to "Skip" - "Skip" button format changed CURA-7019
This commit is contained in:
parent
7b464e5550
commit
cac834b101
1 changed files with 42 additions and 30 deletions
|
@ -33,7 +33,7 @@ Item
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: catalog.i18nc("@label", "Ultimaker Account")
|
text: catalog.i18nc("@label", "Sign in to Ultimaker Cloud")
|
||||||
color: UM.Theme.getColor("primary_button")
|
color: UM.Theme.getColor("primary_button")
|
||||||
font: UM.Theme.getFont("huge")
|
font: UM.Theme.getFont("huge")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
|
@ -46,7 +46,7 @@ Item
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
top: titleLabel.bottom
|
top: titleLabel.bottom
|
||||||
bottom: finishButton.top
|
bottom: nextButton.top
|
||||||
left: parent.left
|
left: parent.left
|
||||||
right: parent.right
|
right: parent.right
|
||||||
topMargin: UM.Theme.getSize("default_margin").height
|
topMargin: UM.Theme.getSize("default_margin").height
|
||||||
|
@ -74,7 +74,7 @@ Item
|
||||||
id: highlightTextLabel
|
id: highlightTextLabel
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: catalog.i18nc("@text", "Your key to connected 3D printing")
|
text: catalog.i18nc("@text", "The next generation 3D printing workflow")
|
||||||
textFormat: Text.RichText
|
textFormat: Text.RichText
|
||||||
color: UM.Theme.getColor("primary")
|
color: UM.Theme.getColor("primary")
|
||||||
font: UM.Theme.getFont("medium")
|
font: UM.Theme.getFont("medium")
|
||||||
|
@ -91,13 +91,13 @@ Item
|
||||||
var full_text = ""
|
var full_text = ""
|
||||||
var t = ""
|
var t = ""
|
||||||
|
|
||||||
t = catalog.i18nc("@text", "- Customize your experience with more print profiles and plugins")
|
t = catalog.i18nc("@text", "- Send print jobs to Ultimaker printers outside of your local network")
|
||||||
full_text += "<p>" + t + "</p>"
|
full_text += "<p>" + t + "</p>"
|
||||||
|
|
||||||
t = catalog.i18nc("@text", "- Stay flexible by syncing your setup and loading it anywhere")
|
t = catalog.i18nc("@text", "- Store your Ultimaker Cura settings in the cloud to use anywhere")
|
||||||
full_text += "<p>" + t + "</p>"
|
full_text += "<p>" + t + "</p>"
|
||||||
|
|
||||||
t = catalog.i18nc("@text", "- Increase efficiency with a remote workflow on Ultimaker printers")
|
t = catalog.i18nc("@text", "- Get exclusive access to material profiles from leading brands")
|
||||||
full_text += "<p>" + t + "</p>"
|
full_text += "<p>" + t + "</p>"
|
||||||
|
|
||||||
return full_text
|
return full_text
|
||||||
|
@ -107,35 +107,47 @@ Item
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "Sign in" and "Create an account" exist inside the column
|
||||||
|
Cura.PrimaryButton
|
||||||
|
{
|
||||||
|
id: signInButton
|
||||||
|
height: createAccountButton.height
|
||||||
|
width: createAccountButton.width
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
text: catalog.i18nc("@button", "Sign in")
|
||||||
|
onClicked: Cura.API.account.login()
|
||||||
|
// Content Item is used in order to align the text inside the button. Without it, when resizing the
|
||||||
|
// button, the text will be aligned on the left
|
||||||
|
contentItem: Text {
|
||||||
|
text: signInButton.text
|
||||||
|
font: UM.Theme.getFont("medium")
|
||||||
|
color: UM.Theme.getColor("primary_text")
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Cura.SecondaryButton
|
||||||
|
{
|
||||||
|
id: createAccountButton
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
text: catalog.i18nc("@button","Create an account")
|
||||||
|
onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "/app/create")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bottom buttons go here
|
// The "Next" button exists on the bottom right
|
||||||
Cura.PrimaryButton
|
|
||||||
{
|
|
||||||
id: finishButton
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.bottom: parent.bottom
|
|
||||||
text: catalog.i18nc("@button", "Finish")
|
|
||||||
onClicked: base.showNextPage()
|
|
||||||
}
|
|
||||||
|
|
||||||
Cura.SecondaryButton
|
|
||||||
{
|
|
||||||
id: createAccountButton
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.verticalCenter: finishButton.verticalCenter
|
|
||||||
text: catalog.i18nc("@button", "Create an account")
|
|
||||||
onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "/app/create")
|
|
||||||
}
|
|
||||||
|
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
id: signInButton
|
id: nextButton
|
||||||
anchors.left: createAccountButton.right
|
anchors.right: parent.right
|
||||||
anchors.verticalCenter: finishButton.verticalCenter
|
anchors.bottom: parent.bottom
|
||||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||||
text: catalog.i18nc("@button", "Sign in")
|
text: catalog.i18nc("@button", "Skip")
|
||||||
color: UM.Theme.getColor("secondary_button_text")
|
color: UM.Theme.getColor("secondary_button_text")
|
||||||
font: UM.Theme.getFont("medium")
|
font: UM.Theme.getFont("medium")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
|
@ -144,7 +156,7 @@ Item
|
||||||
{
|
{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
onClicked: Cura.API.account.login()
|
onClicked: base.showNextPage()
|
||||||
onEntered: parent.font.underline = true
|
onEntered: parent.font.underline = true
|
||||||
onExited: parent.font.underline = false
|
onExited: parent.font.underline = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue