123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- // Copyright (c) 2019 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.3 as UM
- import Cura 1.1 as Cura
- //
- // This component contains the content for the 'by IP' page of the "Add New Printer" flow of the on-boarding process.
- //
- Item
- {
- UM.I18nCatalog { id: catalog; name: "cura" }
- id: addPrinterByIpScreen
- property bool hasPushedAdd: false
- property bool hasSentRequest: false
- property bool haveConnection: false
- Timer
- {
- id: tempTimerButton
- interval: 1200
- running: false
- repeat: false
- onTriggered:
- {
- hasPushedAdd = true
- tempTimerRequest.running = true
- }
- }
- // TODO: Remove timers after review interface!
- Timer
- {
- id: tempTimerRequest
- interval: 1200
- running: false
- repeat: false
- onTriggered:
- {
- hasSentRequest = true
- tempTimerConnection.running = true
- }
- }
- // TODO: Remove timers after review interface!
- Timer
- {
- id: tempTimerConnection
- interval: 1200
- running: false
- repeat: false
- onTriggered: haveConnection = true
- }
- // TODO: Remove timers after review interface!
- Label
- {
- id: titleLabel
- anchors.top: parent.top
- anchors.topMargin: 40
- anchors.horizontalCenter: parent.horizontalCenter
- horizontalAlignment: Text.AlignHCenter
- text: catalog.i18nc("@label", "Add printer by IP address")
- color: UM.Theme.getColor("primary_button")
- font: UM.Theme.getFont("large_bold")
- renderType: Text.NativeRendering
- }
- Rectangle
- {
- anchors.top: titleLabel.bottom
- anchors.bottom: connectButton.top
- anchors.topMargin: 40
- anchors.bottomMargin: 40
- anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width * 3 / 4
- Item
- {
- width: parent.width
- Label
- {
- id: explainLabel
- height: contentHeight
- width: parent.width
- anchors.top: parent.top
- anchors.margins: 20
- //anchors.bottomMargin: 20
- font: UM.Theme.getFont("default")
- text: catalog.i18nc("@label", "Enter the IP address or hostname of your printer on the network.")
- }
- Item
- {
- id: userInputFields
- height: childrenRect.height
- width: parent.width
- anchors.top: explainLabel.bottom
- TextField
- {
- id: hostnameField
- anchors.verticalCenter: addPrinterButton.verticalCenter
- anchors.left: parent.left
- height: addPrinterButton.height
- anchors.right: addPrinterButton.left
- anchors.margins: 20
- font: UM.Theme.getFont("default")
- text: ""
- validator: RegExpValidator
- {
- regExp: /[a-zA-Z0-9\.\-\_]*/
- }
- onAccepted: addPrinterButton.clicked()
- }
- Cura.PrimaryButton
- {
- id: addPrinterButton
- anchors.top: parent.top
- anchors.right: parent.right
- anchors.margins: 20
- width: 140
- fixedWidthMode: true
- text: catalog.i18nc("@button", "Add")
- onClicked:
- {
- // TEMP: Simulate successfull connection to printer with 127.0.0.1 or unsuccessful with anything else
- // TODO, alter after review interface, now it just starts the timers.
- if (hostnameField.text.trim() != "")
- {
- addPrinterByIpScreen.hasPushedAdd = true
- tempTimerRequest.running = true
- UM.OutputDeviceManager.addManualDevice(hostnameField.text, hostnameField.text)
- }
- }
- enabled: ! addPrinterByIpScreen.hasPushedAdd
- BusyIndicator
- {
- anchors.fill: parent
- running: { ! parent.enabled && ! addPrinterByIpScreen.hasSentRequest }
- }
- }
- }
- Rectangle
- {
- width: parent.width
- anchors.top: userInputFields.bottom
- anchors.margins: 20
- Label
- {
- id: waitResponseLabel
- anchors.top: parent.top
- anchors.margins: 20
- font: UM.Theme.getFont("default")
- visible: { addPrinterByIpScreen.hasSentRequest && ! addPrinterByIpScreen.haveConnection }
- text: catalog.i18nc("@label", "The printer at this address has not responded yet.")
- }
- Rectangle
- {
- id: printerInfoLabels
- anchors.top: parent.top
- anchors.margins: 20
- visible: addPrinterByIpScreen.haveConnection
- Label
- {
- id: printerNameLabel
- anchors.top: parent.top
- font: UM.Theme.getFont("large")
- text: "???"
- }
- GridLayout
- {
- id: printerInfoGrid
- anchors.top: printerNameLabel.bottom
- columns: 2
- columnSpacing: 20
- Text { font: UM.Theme.getFont("default"); text: catalog.i18nc("@label", "Type") }
- Label { id: typeText; font: UM.Theme.getFont("default"); text: "?" }
- Text { font: UM.Theme.getFont("default"); text: catalog.i18nc("@label", "Firmware version") }
- Label { id: firmwareText; font: UM.Theme.getFont("default"); text: "0.0.0.0" }
- Text { font: UM.Theme.getFont("default"); text: catalog.i18nc("@label", "Address") }
- Label { id: addressText; font: UM.Theme.getFont("default"); text: "0.0.0.0" }
- Connections
- {
- target: UM.OutputDeviceManager
- onManualDeviceChanged:
- {
- typeText.text = UM.OutputDeviceManager.manualDeviceProperty("printer_type")
- firmwareText.text = UM.OutputDeviceManager.manualDeviceProperty("firmware_version")
- addressText.text = UM.OutputDeviceManager.manualDeviceProperty("address")
- }
- }
- }
- Connections
- {
- target: UM.OutputDeviceManager
- onManualDeviceChanged:
- {
- printerNameLabel.text = UM.OutputDeviceManager.manualDeviceProperty("name")
- }
- }
- }
- }
- }
- }
- Cura.PrimaryButton
- {
- id: backButton
- anchors.left: parent.left
- anchors.bottom: parent.bottom
- anchors.margins: 40
- text: catalog.i18nc("@button", "Cancel")
- width: 140
- fixedWidthMode: true
- onClicked: base.showPreviousPage()
- enabled: true
- }
- Cura.PrimaryButton
- {
- id: connectButton
- anchors.right: parent.right
- anchors.bottom: parent.bottom
- anchors.margins: 40
- text: catalog.i18nc("@button", "Connect")
- width: 140
- fixedWidthMode: true
- onClicked: base.showNextPage()
- enabled: addPrinterByIpScreen.haveConnection
- }
- }
|