// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import UM 1.5 as UM import Cura 1.1 as Cura Control { UM.I18nCatalog { id: catalog; name: "cura" } property var goToThirdPartyPrinter signal cloudPrintersDetected(bool newCloudPrintersDetected) Component.onCompleted: CuraApplication.getDiscoveredCloudPrintersModel().cloudPrintersDetectedChanged.connect(cloudPrintersDetected) onCloudPrintersDetected: function(newCloudPrintersDetected) { if(newCloudPrintersDetected) { base.goToPage("add_cloud_printers") } } contentItem: ColumnLayout { UM.Label { Layout.fillWidth: true text: catalog.i18nc("@label", "New Ultimaker printers can be connected to Digital Factory and monitored remotely.") wrapMode: Text.WordWrap } RowLayout { Layout.fillWidth: true Image { source: UM.Theme.getImage("add_printer") Layout.preferredWidth: 200 * screenScaleFactor Layout.preferredHeight: 200 * screenScaleFactor } ColumnLayout { Layout.fillHeight: true Layout.alignment: Qt.AlignVCenter spacing: UM.Theme.getSize("default_margin").height UM.Label { Layout.fillWidth: true Layout.alignment: Qt.AlignTop wrapMode: Text.WordWrap font: UM.Theme.getFont("default_bold") text: catalog.i18nc("@label", "If you are trying to add a new Ultimaker printer to Cura") } UM.Label { Layout.fillWidth: true Layout.alignment: Qt.AlignTop wrapMode: Text.WordWrap text: { const steps = [ catalog.i18nc("@info", "1. Sign in into Ultimaker Digilal Factory"), catalog.i18nc("@info", "2. Follow the procedure to add a new printer"), catalog.i18nc("@info", "3. Your new printer will automatically appear in Cura"), ]; return steps.join("
"); } } Cura.TertiaryButton { id: learnMoreButton Layout.fillWidth: true Layout.alignment: Qt.AlignTop leftPadding: 0 text: catalog.i18nc("@button", "Learn more") iconSource: UM.Theme.getIcon("LinkExternal") isIconOnRightSide: true textFont: UM.Theme.getFont("small") onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") } } } Control { Layout.alignment: Qt.AlignBottom Layout.fillWidth: true contentItem: RowLayout { Cura.SecondaryButton { id: addLocalPrinterButton Layout.alignment: Qt.AlignLeft text: catalog.i18nc("@button", "Add local printer") onClicked: goToThirdPartyPrinter() } Cura.PrimaryButton { id: signInButton Layout.alignment: Qt.AlignRight text: catalog.i18nc("@button", "Sign in to Digital Factory") onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/printers?add-printer?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") } } } } }