123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- import QtQuick 2.2
- import QtQuick.Controls 1.4
- import QtQuick.Controls.Styles 1.4
- import UM 1.3 as UM
- Rectangle
- {
- function strPadLeft(string, pad, length)
- {
- return (new Array(length + 1).join(pad) + string).slice(-length);
- }
- function getPrettyTime(time)
- {
- return OutputDevice.formatDuration(time)
- }
- function formatPrintJobPercent(printJob)
- {
- if (printJob == null)
- {
- return "";
- }
- if (printJob.time_total === 0)
- {
- return "";
- }
- return Math.min(100, Math.round(printJob.time_elapsed / printJob.time_total * 100)) + "%";
- }
- function printerStatusText(printer)
- {
- switch (printer.status)
- {
- case "pre_print":
- return catalog.i18nc("@label", "Preparing to print")
- case "printing":
- return catalog.i18nc("@label:status", "Printing");
- case "idle":
- return catalog.i18nc("@label:status", "Available");
- case "unreachable":
- return catalog.i18nc("@label:MonitorStatus", "Lost connection with the printer");
- case "maintenance": // TODO: new string
- case "unknown":
- default:
- return catalog.i18nc("@label Printer status", "Unknown");
- }
- }
- id: printerDelegate
- property var printer
- border.width: UM.Theme.getSize("default_lining").width
- border.color: mouse.containsMouse ? emphasisColor : lineColor
- z: mouse.containsMouse ? 1 : 0 // Push this item up a bit on mouse over to ensure that the highlighted bottom border is visible.
- property var printJob:
- {
- if (printer.reserved_by != null)
- {
- // Look in another list.
- return OutputDevice.printJobsByUUID[printer.reserved_by]
- }
- return OutputDevice.printJobsByPrinterUUID[printer.uuid]
- }
- MouseArea
- {
- id: mouse
- anchors.fill:parent
- onClicked: OutputDevice.selectPrinter(printer.unique_name, printer.friendly_name)
- hoverEnabled: true;
- // Only clickable if no printer is selected
- enabled: OutputDevice.selectedPrinterName == "" && printer.status !== "unreachable"
- }
- Row
- {
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- anchors.margins: UM.Theme.getSize("default_margin").width
- Rectangle
- {
- width: Math.round(parent.width / 3)
- height: parent.height
- Label // Print job name
- {
- id: jobNameLabel
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- text: printJob != null ? printJob.name : ""
- font: UM.Theme.getFont("default_bold")
- elide: Text.ElideRight
- }
- Label
- {
- id: jobOwnerLabel
- anchors.top: jobNameLabel.bottom
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- text: printJob != null ? printJob.owner : ""
- opacity: 0.50
- elide: Text.ElideRight
- }
- Label
- {
- id: totalTimeLabel
- anchors.bottom: parent.bottom
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- text: printJob != null ? getPrettyTime(printJob.time_total) : ""
- opacity: 0.65
- font: UM.Theme.getFont("default")
- elide: Text.ElideRight
- }
- }
- Rectangle
- {
- width: Math.round(parent.width / 3 * 2)
- height: parent.height
- Label // Friendly machine name
- {
- id: printerNameLabel
- anchors.top: parent.top
- anchors.left: parent.left
- width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width - showCameraIcon.width)
- text: printer.friendly_name
- font: UM.Theme.getFont("default_bold")
- elide: Text.ElideRight
- }
- Label // Machine variant
- {
- id: printerTypeLabel
- anchors.top: printerNameLabel.bottom
- width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width)
- text: printer.machine_variant
- anchors.left: parent.left
- elide: Text.ElideRight
- font: UM.Theme.getFont("very_small")
- opacity: 0.50
- }
- Rectangle // Camera icon
- {
- id: showCameraIcon
- width: 40 * screenScaleFactor
- height: width
- radius: width
- anchors.right: printProgressArea.left
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- color: emphasisColor
- opacity: printer != null && printer.status === "unreachable" ? 0.3 : 1
- Image
- {
- width: parent.width
- height: width
- anchors.right: parent.right
- anchors.rightMargin: parent.rightMargin
- source: "camera-icon.svg"
- }
- }
- Row // PrintCore config
- {
- id: extruderInfo
- anchors.bottom: parent.bottom
- width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width)
- height: childrenRect.height
- spacing: UM.Theme.getSize("default_margin").width
- PrintCoreConfiguration
- {
- id: leftExtruderInfo
- width: Math.round((parent.width - extruderSeperator.width) / 2)
- printCoreConfiguration: printer.configuration[0]
- }
- Rectangle
- {
- id: extruderSeperator
- width: UM.Theme.getSize("default_lining").width
- height: parent.height
- color: lineColor
- }
- PrintCoreConfiguration
- {
- id: rightExtruderInfo
- width: Math.round((parent.width - extruderSeperator.width) / 2)
- printCoreConfiguration: printer.configuration[1]
- }
- }
- Rectangle // Print progress
- {
- id: printProgressArea
- anchors.right: parent.right
- anchors.top: parent.top
- height: showExtended ? parent.height: printProgressTitleBar.height
- width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width)
- border.width: UM.Theme.getSize("default_lining").width
- border.color: lineColor
- radius: cornerRadius
- property var showExtended: {
- if(printJob != null)
- {
- var extendStates = ["sent_to_printer", "wait_for_configuration", "printing", "pre_print", "post_print", "wait_cleanup", "queued"];
- return extendStates.indexOf(printJob.status) !== -1;
- }
- return !printer.enabled;
- }
- Item // Status and Percent
- {
- id: printProgressTitleBar
- property var showPercent: {
- return printJob != null && (["printing", "post_print", "pre_print", "sent_to_printer"].indexOf(printJob.status) !== -1);
- }
- width: parent.width
- //TODO: hardcoded value
- height: 40 * screenScaleFactor
- anchors.left: parent.left
- Label
- {
- id: statusText
- anchors.left: parent.left
- anchors.leftMargin: UM.Theme.getSize("default_margin").width
- anchors.right: progressText.left
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- anchors.verticalCenter: parent.verticalCenter
- text: {
- if (!printer.enabled)
- {
- return catalog.i18nc("@label:status", "Disabled");
- }
- if (printer.status === "unreachable")
- {
- return printerStatusText(printer);
- }
- if (printJob != null)
- {
- switch (printJob.status)
- {
- case "printing":
- case "post_print":
- return catalog.i18nc("@label:status", "Printing")
- case "wait_for_configuration":
- return catalog.i18nc("@label:status", "Reserved")
- case "wait_cleanup":
- return catalog.i18nc("@label:status", "Finished")
- case "pre_print":
- case "sent_to_printer":
- return catalog.i18nc("@label", "Preparing to print")
- case "queued":
- if (printJob.configuration_changes_required != null && printJob.configuration_changes_required.length !== 0)
- {
- return catalog.i18nc("@label:status", "Action required");
- }
- else
- {
- return "";
- }
- case "pausing":
- case "paused":
- return catalog.i18nc("@label:status", "Paused");
- case "resuming":
- return catalog.i18nc("@label:status", "Resuming");
- case "aborted":
- return catalog.i18nc("@label:status", "Print aborted");
- default:
- return printerStatusText(printer);
- }
- }
- return printerStatusText(printer);
- }
- elide: Text.ElideRight
- font: UM.Theme.getFont("small")
- }
- Label
- {
- id: progressText
- anchors.right: parent.right
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- anchors.top: statusText.top
- text: formatPrintJobPercent(printJob)
- visible: printProgressTitleBar.showPercent
- //TODO: Hardcoded value
- opacity: 0.65
- font: UM.Theme.getFont("very_small")
- }
- Image
- {
- width: statusText.height
- height: width
- anchors.right: parent.right
- anchors.rightMargin: UM.Theme.getSize("default_margin").width
- anchors.top: statusText.top
- visible: !printProgressTitleBar.showPercent
- source: {
- if (!printer.enabled)
- {
- return "blocked-icon.svg";
- }
- if (printer.status === "unreachable")
- {
- return "";
- }
- if (printJob != null)
- {
- if(printJob.status === "queued")
- {
- if (printJob.configuration_changes_required != null && printJob.configuration_changes_required.length !== 0)
- {
- return "action-required-icon.svg";
- }
- }
- else if (printJob.status === "wait_cleanup")
- {
- return "checkmark-icon.svg";
- }
- }
- return ""; // We're not going to show it, so it will not be resolved as a url.
- }
- }
- Rectangle
- {
- //TODO: This will become a progress bar in the future
- width: parent.width
- height: UM.Theme.getSize("default_lining").height
- anchors.bottom: parent.bottom
- anchors.left: parent.left
- visible: printProgressArea.showExtended
- color: lineColor
- }
- }
- Column
- {
- anchors.left: parent.left
- anchors.leftMargin: UM.Theme.getSize("default_margin").width
- anchors.top: printProgressTitleBar.bottom
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- width: parent.width - 2 * UM.Theme.getSize("default_margin").width
- visible: printProgressArea.showExtended
- Label // Status detail
- {
- text:
- {
- if (!printer.enabled)
- {
- return catalog.i18nc("@label", "Not accepting print jobs");
- }
- if (printer.status === "unreachable")
- {
- return "";
- }
- if(printJob != null)
- {
- switch (printJob.status)
- {
- case "printing":
- case "post_print":
- return catalog.i18nc("@label", "Finishes at: ") + OutputDevice.getTimeCompleted(printJob.time_total - printJob.time_elapsed)
- case "wait_cleanup":
- return catalog.i18nc("@label", "Clear build plate")
- case "sent_to_printer":
- case "pre_print":
- return catalog.i18nc("@label", "Preparing to print")
- case "wait_for_configuration":
- return catalog.i18nc("@label", "Not accepting print jobs")
- case "queued":
- if (printJob.configuration_changes_required != undefined)
- {
- return catalog.i18nc("@label", "Waiting for configuration change");
- }
- default:
- return "";
- }
- }
- return "";
- }
- anchors.left: parent.left
- anchors.right: parent.right
- elide: Text.ElideRight
- wrapMode: Text.Wrap
- font: UM.Theme.getFont("default")
- }
- Label // Status 2nd row
- {
- text: {
- if(printJob != null)
- {
- if(printJob.status == "printing" || printJob.status == "post_print")
- {
- return OutputDevice.getDateCompleted(printJob.time_total - printJob.time_elapsed)
- }
- }
- return "";
- }
- elide: Text.ElideRight
- font: UM.Theme.getFont("default")
- }
- }
- }
- }
- }
- }
|