123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- // Copyright (c) 2022 UltiMaker
- // Cura is released under the terms of the LGPLv3 or higher.
- import QtQuick 2.10
- import QtQuick.Controls 2.3
- import UM 1.5 as UM
- import Cura 1.1 as Cura
- //
- // This component contains the content for the "Ultimaker Cloud" page of the welcome on-boarding process.
- //
- Item
- {
- UM.I18nCatalog { id: catalog; name: "cura" }
- signal cloudPrintersDetected(bool newCloudPrintersDetected)
- Component.onCompleted: CuraApplication.getDiscoveredCloudPrintersModel().cloudPrintersDetectedChanged.connect(cloudPrintersDetected)
- onCloudPrintersDetected:
- {
- // When the user signs in successfully, it will be checked whether he/she has cloud printers connected to
- // the account. If he/she does, then the welcome wizard will show a summary of the Cloud printers linked to the
- // account. If there are no cloud printers, then proceed to the next page (if any)
- if(newCloudPrintersDetected)
- {
- base.goToPage("add_cloud_printers")
- }
- else
- {
- base.showNextPage()
- }
- }
- // Area where the cloud contents can be put. Pictures, texts and such.
- Item
- {
- id: cloudContentsArea
- anchors
- {
- top: parent.top
- bottom: skipButton.top
- left: parent.left
- right: parent.right
- }
- // Pictures and texts are arranged using Columns with spacing. The whole picture and text area is centered in
- // the cloud contents area.
- Column
- {
- anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width
- height: childrenRect.height
- spacing: UM.Theme.getSize("thick_margin").height
- UM.Label
- {
- id: titleLabel
- anchors.horizontalCenter: parent.horizontalCenter
- horizontalAlignment: Text.AlignHCenter
- text: catalog.i18nc("@label", "Sign in to the UltiMaker platform")
- color: UM.Theme.getColor("primary_button")
- font: UM.Theme.getFont("huge")
- }
- // Filler item
- Item
- {
- height: UM.Theme.getSize("default_margin").height
- width: parent.width
- }
- // Cloud image
- Image
- {
- id: cloudImage
- anchors.horizontalCenter: parent.horizontalCenter
- source: UM.Theme.getImage("first_run_ultimaker_cloud")
- fillMode: Image.PreserveAspectFit
- width: UM.Theme.getSize("welcome_wizard_content_image_big").width
- sourceSize.width: width
- sourceSize.height: height
- }
- // Filler item
- Item
- {
- height: UM.Theme.getSize("default_margin").height
- width: parent.width
- }
- // Motivational icons
- Row
- {
- id: motivationRow
- width: parent.width
- Column
- {
- id: marketplaceColumn
- width: Math.round(parent.width / 3)
- spacing: UM.Theme.getSize("default_margin").height
- Image
- {
- id: marketplaceImage
- anchors.horizontalCenter: parent.horizontalCenter
- fillMode: Image.PreserveAspectFit
- width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
- source: UM.Theme.getIcon("Plugin", "high")
- sourceSize.width: width
- sourceSize.height: height
- }
- UM.Label
- {
- id: marketplaceTextLabel
- anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width
- text: catalog.i18nc("@text", "Add material settings and plugins from the Marketplace")
- horizontalAlignment: Text.AlignHCenter
- }
- }
- Column
- {
- id: syncColumn
- width: Math.round(parent.width / 3)
- spacing: UM.Theme.getSize("default_margin").height
- Image
- {
- id: syncImage
- anchors.horizontalCenter: parent.horizontalCenter
- fillMode: Image.PreserveAspectFit
- width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
- source: UM.Theme.getIcon("Spool", "high")
- sourceSize.width: width
- sourceSize.height: height
- }
- UM.Label
- {
- id: syncTextLabel
- anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width
- text: catalog.i18nc("@text", "Backup and sync your material settings and plugins")
- horizontalAlignment: Text.AlignHCenter
- }
- }
- Column
- {
- id: communityColumn
- width: Math.round(parent.width / 3)
- spacing: UM.Theme.getSize("default_margin").height
- Image
- {
- id: communityImage
- anchors.horizontalCenter: communityColumn.horizontalCenter
- fillMode: Image.PreserveAspectFit
- width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
- source: UM.Theme.getIcon("People", "high")
- sourceSize.width: width
- sourceSize.height: height
- }
- UM.Label
- {
- id: communityTextLabel
- anchors.horizontalCenter: communityColumn.horizontalCenter
- width: parent.width
- text: catalog.i18nc("@text", "Share ideas and get help from 48,000+ users in the UltiMaker Community")
- horizontalAlignment: Text.AlignHCenter
- }
- }
- }
- }
- }
- // Skip button
- Cura.TertiaryButton
- {
- id: skipButton
- anchors.left: parent.left
- anchors.bottom: parent.bottom
- text: catalog.i18nc("@button", "Skip")
- onClicked: base.showNextPage()
- }
- // Create an account button
- Cura.SecondaryButton
- {
- id: createAccountButton
- anchors.right: signInButton.left
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- anchors.bottom: parent.bottom
- text: catalog.i18nc("@text", "Create a free UltiMaker Account")
- onClicked: Qt.openUrlExternally("https://ultimaker.com/app/ultimaker-cura-account-sign-up?utm_source=cura&utm_medium=software&utm_campaign=onboarding-signup")
- }
- // Sign in Button
- Cura.PrimaryButton
- {
- id: signInButton
- anchors.right: parent.right
- anchors.bottom: parent.bottom
- 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
- }
- }
- }
|