mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-18 20:28:01 -06:00
Replaced print job context menu
Contributes to CL-897, CL-1051
This commit is contained in:
parent
302f9a95b3
commit
fc333d53c5
3 changed files with 253 additions and 696 deletions
|
@ -21,7 +21,7 @@ Item {
|
||||||
|
|
||||||
// Loading skeleton
|
// Loading skeleton
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: !extruderInfo.printCoreConfiguration;
|
visible: !printCoreConfiguration;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
radius: Math.round(width / 2);
|
radius: Math.round(width / 2);
|
||||||
color: UM.Theme.getColor("viewport_background");
|
color: UM.Theme.getColor("viewport_background");
|
||||||
|
@ -29,7 +29,7 @@ Item {
|
||||||
|
|
||||||
// Actual content
|
// Actual content
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: extruderInfo.printCoreConfiguration;
|
visible: printCoreConfiguration;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
radius: Math.round(width / 2);
|
radius: Math.round(width / 2);
|
||||||
border.width: UM.Theme.getSize("monitor_tab_thick_lining").width;
|
border.width: UM.Theme.getSize("monitor_tab_thick_lining").width;
|
||||||
|
@ -44,7 +44,7 @@ Item {
|
||||||
Label {
|
Label {
|
||||||
anchors.centerIn: parent;
|
anchors.centerIn: parent;
|
||||||
font: UM.Theme.getFont("default_bold");
|
font: UM.Theme.getFont("default_bold");
|
||||||
text: printCoreConfiguration.position + 1;
|
text: printCoreConfiguration ? printCoreConfiguration.position + 1 : 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
199
plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenu.qml
Normal file
199
plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenu.qml
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
import QtQuick 2.2
|
||||||
|
import QtQuick.Dialogs 1.1
|
||||||
|
import QtQuick.Controls 2.0
|
||||||
|
import QtQuick.Controls.Styles 1.4
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
import QtQuick.Layouts 1.1
|
||||||
|
import QtQuick.Dialogs 1.1
|
||||||
|
import UM 1.3 as UM
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root;
|
||||||
|
property var printJob: null;
|
||||||
|
|
||||||
|
Button {
|
||||||
|
id: button;
|
||||||
|
background: Rectangle {
|
||||||
|
color: UM.Theme.getColor("viewport_background");
|
||||||
|
height: button.height;
|
||||||
|
opacity: button.down || button.hovered ? 1 : 0;
|
||||||
|
radius: 0.5 * width;
|
||||||
|
width: button.width;
|
||||||
|
}
|
||||||
|
contentItem: Label {
|
||||||
|
color: UM.Theme.getColor("monitor_tab_text_inactive");
|
||||||
|
font.pixelSize: 25;
|
||||||
|
horizontalAlignment: Text.AlignHCenter;
|
||||||
|
text: button.text;
|
||||||
|
verticalAlignment: Text.AlignVCenter;
|
||||||
|
}
|
||||||
|
height: width;
|
||||||
|
hoverEnabled: true;
|
||||||
|
onClicked: parent.switchPopupState();
|
||||||
|
text: "\u22EE"; //Unicode; Three stacked points.
|
||||||
|
width: 35;
|
||||||
|
}
|
||||||
|
|
||||||
|
Popup {
|
||||||
|
id: popup;
|
||||||
|
clip: true;
|
||||||
|
closePolicy: Popup.CloseOnPressOutside;
|
||||||
|
height: contentItem.height + 2 * padding;
|
||||||
|
padding: 5 * screenScaleFactor; // Because shadow
|
||||||
|
transformOrigin: Popup.Top;
|
||||||
|
visible: false;
|
||||||
|
width: 182 * screenScaleFactor;
|
||||||
|
x: (button.width - width) + 26 * screenScaleFactor;
|
||||||
|
y: button.height + 5 * screenScaleFactor; // Because shadow
|
||||||
|
contentItem: Item {
|
||||||
|
width: popup.width
|
||||||
|
height: childrenRect.height + 36 * screenScaleFactor
|
||||||
|
anchors.topMargin: 10 * screenScaleFactor
|
||||||
|
anchors.bottomMargin: 10 * screenScaleFactor
|
||||||
|
Button {
|
||||||
|
id: sendToTopButton
|
||||||
|
text: catalog.i18nc("@label", "Move to top")
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
sendToTopConfirmationDialog.visible = true;
|
||||||
|
popup.close();
|
||||||
|
}
|
||||||
|
width: parent.width
|
||||||
|
enabled: printJob ? OutputDevice.queuedPrintJobs[0].key != printJob.key : false;
|
||||||
|
visible: enabled
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: 18 * screenScaleFactor
|
||||||
|
height: visible ? 39 * screenScaleFactor : 0 * screenScaleFactor
|
||||||
|
hoverEnabled: true
|
||||||
|
background: Rectangle
|
||||||
|
{
|
||||||
|
opacity: sendToTopButton.down || sendToTopButton.hovered ? 1 : 0
|
||||||
|
color: UM.Theme.getColor("viewport_background")
|
||||||
|
}
|
||||||
|
contentItem: Label
|
||||||
|
{
|
||||||
|
text: sendToTopButton.text
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MessageDialog
|
||||||
|
{
|
||||||
|
id: sendToTopConfirmationDialog
|
||||||
|
title: catalog.i18nc("@window:title", "Move print job to top")
|
||||||
|
icon: StandardIcon.Warning
|
||||||
|
text: printJob ? catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to move %1 to the top of the queue?").arg(printJob.name) : "";
|
||||||
|
standardButtons: StandardButton.Yes | StandardButton.No
|
||||||
|
Component.onCompleted: visible = false
|
||||||
|
onYes: {
|
||||||
|
if (printJob) {
|
||||||
|
OutputDevice.sendJobToTop(printJob.key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
id: deleteButton
|
||||||
|
text: catalog.i18nc("@label", "Delete")
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
deleteConfirmationDialog.visible = true;
|
||||||
|
popup.close();
|
||||||
|
}
|
||||||
|
width: parent.width
|
||||||
|
height: 39 * screenScaleFactor
|
||||||
|
anchors.top: sendToTopButton.bottom
|
||||||
|
hoverEnabled: true
|
||||||
|
background: Rectangle
|
||||||
|
{
|
||||||
|
opacity: deleteButton.down || deleteButton.hovered ? 1 : 0
|
||||||
|
color: UM.Theme.getColor("viewport_background")
|
||||||
|
}
|
||||||
|
contentItem: Label
|
||||||
|
{
|
||||||
|
text: deleteButton.text
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MessageDialog
|
||||||
|
{
|
||||||
|
id: deleteConfirmationDialog
|
||||||
|
title: catalog.i18nc("@window:title", "Delete print job")
|
||||||
|
icon: StandardIcon.Warning
|
||||||
|
text: printJob ? catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to delete %1?").arg(printJob.name) : "";
|
||||||
|
standardButtons: StandardButton.Yes | StandardButton.No
|
||||||
|
Component.onCompleted: visible = false
|
||||||
|
onYes: OutputDevice.deleteJobFromQueue(printJob.key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
background: Item
|
||||||
|
{
|
||||||
|
width: popup.width
|
||||||
|
height: popup.height
|
||||||
|
|
||||||
|
DropShadow
|
||||||
|
{
|
||||||
|
anchors.fill: pointedRectangle
|
||||||
|
radius: 5
|
||||||
|
color: "#3F000000" // 25% shadow
|
||||||
|
source: pointedRectangle
|
||||||
|
transparentBorder: true
|
||||||
|
verticalOffset: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
Item
|
||||||
|
{
|
||||||
|
id: pointedRectangle
|
||||||
|
width: parent.width - 10 * screenScaleFactor // Because of the shadow
|
||||||
|
height: parent.height - 10 * screenScaleFactor // Because of the shadow
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
|
Rectangle
|
||||||
|
{
|
||||||
|
id: point
|
||||||
|
height: 14 * screenScaleFactor
|
||||||
|
width: 14 * screenScaleFactor
|
||||||
|
color: UM.Theme.getColor("setting_control")
|
||||||
|
transform: Rotation { angle: 45}
|
||||||
|
anchors.right: bloop.right
|
||||||
|
anchors.rightMargin: 24
|
||||||
|
y: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle
|
||||||
|
{
|
||||||
|
id: bloop
|
||||||
|
color: UM.Theme.getColor("setting_control")
|
||||||
|
width: parent.width
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: 8 * screenScaleFactor // Because of the shadow + point
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.bottomMargin: 8 * screenScaleFactor // Because of the shadow
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
exit: Transition
|
||||||
|
{
|
||||||
|
NumberAnimation { property: "visible"; duration: 75; }
|
||||||
|
}
|
||||||
|
enter: Transition
|
||||||
|
{
|
||||||
|
NumberAnimation { property: "visible"; duration: 75; }
|
||||||
|
}
|
||||||
|
|
||||||
|
onClosed: visible = false
|
||||||
|
onOpened: visible = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Utils
|
||||||
|
function switchPopupState() {
|
||||||
|
popup.visible ? popup.close() : popup.open()
|
||||||
|
}
|
||||||
|
}
|
|
@ -72,14 +72,14 @@ Item {
|
||||||
height: UM.Theme.getSize("monitor_tab_text_line").height;
|
height: UM.Theme.getSize("monitor_tab_text_line").height;
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: !root.printJob;
|
visible: !printJob;
|
||||||
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
||||||
height: parent.height;
|
height: parent.height;
|
||||||
width: parent.width / 3;
|
width: parent.width / 3;
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
visible: root.printJob;
|
visible: printJob;
|
||||||
text: root.printJob ? root.printJob.name : ""; // Supress QML warnings
|
text: printJob ? printJob.name : ""; // Supress QML warnings
|
||||||
font: UM.Theme.getFont("default_bold");
|
font: UM.Theme.getFont("default_bold");
|
||||||
elide: Text.ElideRight;
|
elide: Text.ElideRight;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
|
@ -97,14 +97,14 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: !root.printJob;
|
visible: !printJob;
|
||||||
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
||||||
height: parent.height;
|
height: parent.height;
|
||||||
width: parent.width / 2;
|
width: parent.width / 2;
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
visible: root.printJob;
|
visible: printJob;
|
||||||
text: root.printJob ? root.printJob.owner : ""; // Supress QML warnings
|
text: printJob ? printJob.owner : ""; // Supress QML warnings
|
||||||
font: UM.Theme.getFont("default");
|
font: UM.Theme.getFont("default");
|
||||||
elide: Text.ElideRight;
|
elide: Text.ElideRight;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
|
@ -124,7 +124,7 @@ Item {
|
||||||
|
|
||||||
// Skeleton
|
// Skeleton
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: !root.printJob;
|
visible: !printJob;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
radius: UM.Theme.getSize("default_margin").width; // TODO: Theme!
|
radius: UM.Theme.getSize("default_margin").width; // TODO: Theme!
|
||||||
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
||||||
|
@ -133,9 +133,9 @@ Item {
|
||||||
// Actual content
|
// Actual content
|
||||||
Image {
|
Image {
|
||||||
id: previewImage;
|
id: previewImage;
|
||||||
visible: root.printJob;
|
visible: printJob;
|
||||||
source: root.printJob.previewImageUrl;
|
source: printJob ? printJob.previewImageUrl : "";
|
||||||
opacity: root.printJob.state == "error" ? 0.5 : 1.0;
|
opacity: printJob && printJob.state == "error" ? 0.5 : 1.0;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ Item {
|
||||||
source: "../svg/ultibot.svg";
|
source: "../svg/ultibot.svg";
|
||||||
/* Since print jobs ALWAYS have an image url, we have to check if that image URL errors or
|
/* Since print jobs ALWAYS have an image url, we have to check if that image URL errors or
|
||||||
not in order to determine if we show the placeholder (ultibot) image instead. */
|
not in order to determine if we show the placeholder (ultibot) image instead. */
|
||||||
visible: root.printJob && previewImage.status == Image.Error;
|
visible: printJob && previewImage.status == Image.Error;
|
||||||
width: printJobPreview.width;
|
width: printJobPreview.width;
|
||||||
height: printJobPreview.height;
|
height: printJobPreview.height;
|
||||||
sourceSize.width: width;
|
sourceSize.width: width;
|
||||||
|
@ -156,7 +156,7 @@ Item {
|
||||||
UM.RecolorImage {
|
UM.RecolorImage {
|
||||||
id: statusImage;
|
id: statusImage;
|
||||||
anchors.centerIn: printJobPreview;
|
anchors.centerIn: printJobPreview;
|
||||||
source: printJob.state == "error" ? "../svg/aborted-icon.svg" : "";
|
source: printJob && printJob.state == "error" ? "../svg/aborted-icon.svg" : "";
|
||||||
visible: source != "";
|
visible: source != "";
|
||||||
width: 0.5 * printJobPreview.width;
|
width: 0.5 * printJobPreview.width;
|
||||||
height: 0.5 * printJobPreview.height;
|
height: 0.5 * printJobPreview.height;
|
||||||
|
@ -171,7 +171,7 @@ Item {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
height: parent.height - 2 * UM.Theme.getSize("default_margin").height;
|
height: parent.height - 2 * UM.Theme.getSize("default_margin").height;
|
||||||
width: UM.Theme.getSize("default_lining").width;
|
width: UM.Theme.getSize("default_lining").width;
|
||||||
color: !root.printJob ? UM.Theme.getColor("viewport_background") : "#e6e6e6"; // TODO: Theme!
|
color: !printJob ? UM.Theme.getColor("viewport_background") : "#e6e6e6"; // TODO: Theme!
|
||||||
anchors {
|
anchors {
|
||||||
horizontalCenter: parent.horizontalCenter;
|
horizontalCenter: parent.horizontalCenter;
|
||||||
verticalCenter: parent.verticalCenter;
|
verticalCenter: parent.verticalCenter;
|
||||||
|
@ -191,28 +191,29 @@ Item {
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: targetPrinterLabel;
|
id: targetPrinterLabel;
|
||||||
|
|
||||||
width: parent.width;
|
width: parent.width;
|
||||||
height: UM.Theme.getSize("monitor_tab_text_line").height;
|
height: UM.Theme.getSize("monitor_tab_text_line").height;
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: !root.printJob;
|
visible: !printJob;
|
||||||
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
visible: root.printJob;
|
visible: printJob;
|
||||||
elide: Text.ElideRight;
|
elide: Text.ElideRight;
|
||||||
font: UM.Theme.getFont("default_bold");
|
font: UM.Theme.getFont("default_bold");
|
||||||
text: {
|
text: {
|
||||||
if (root.printJob.assignedPrinter == null) {
|
if (printJob) {
|
||||||
if (root.printJob.state == "error") {
|
if (printJob.assignedPrinter == null) {
|
||||||
return catalog.i18nc("@label", "Waiting for: Unavailable printer");
|
if (printJob.state == "error") {
|
||||||
|
return catalog.i18nc("@label", "Waiting for: Unavailable printer");
|
||||||
|
}
|
||||||
|
return catalog.i18nc("@label", "Waiting for: First available");
|
||||||
|
} else {
|
||||||
|
return catalog.i18nc("@label", "Waiting for: ") + printJob.assignedPrinter.name;
|
||||||
}
|
}
|
||||||
return catalog.i18nc("@label", "Waiting for: First available");
|
|
||||||
} else {
|
|
||||||
return catalog.i18nc("@label", "Waiting for: ") + root.printJob.assignedPrinter.name;
|
|
||||||
}
|
}
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -220,7 +221,7 @@ Item {
|
||||||
// Printer family pills
|
// Printer family pills
|
||||||
Row {
|
Row {
|
||||||
id: printerFamilyPills;
|
id: printerFamilyPills;
|
||||||
visible: root.printJob;
|
visible: printJob;
|
||||||
spacing: Math.round(0.5 * UM.Theme.getSize("default_margin").width);
|
spacing: Math.round(0.5 * UM.Theme.getSize("default_margin").width);
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left;
|
left: parent.left;
|
||||||
|
@ -230,7 +231,7 @@ Item {
|
||||||
}
|
}
|
||||||
height: childrenRect.height;
|
height: childrenRect.height;
|
||||||
Repeater {
|
Repeater {
|
||||||
model: printJob.compatibleMachineFamilies;
|
model: printJob ? printJob.compatibleMachineFamilies : [];
|
||||||
delegate: PrinterFamilyPill {
|
delegate: PrinterFamilyPill {
|
||||||
text: modelData;
|
text: modelData;
|
||||||
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
color: UM.Theme.getColor("viewport_background"); // TODO: Theme!
|
||||||
|
@ -253,22 +254,34 @@ Item {
|
||||||
PrintCoreConfiguration {
|
PrintCoreConfiguration {
|
||||||
id: leftExtruderInfo;
|
id: leftExtruderInfo;
|
||||||
width: Math.round(parent.width / 2) * screenScaleFactor;
|
width: Math.round(parent.width / 2) * screenScaleFactor;
|
||||||
printCoreConfiguration: root.printJob !== null ? printJob.configuration.extruderConfigurations[0] : null;
|
printCoreConfiguration: printJob !== null ? printJob.configuration.extruderConfigurations[0] : null;
|
||||||
}
|
}
|
||||||
PrintCoreConfiguration {
|
PrintCoreConfiguration {
|
||||||
id: rightExtruderInfo;
|
id: rightExtruderInfo;
|
||||||
width: Math.round(parent.width / 2) * screenScaleFactor;
|
width: Math.round(parent.width / 2) * screenScaleFactor;
|
||||||
printCoreConfiguration: root.printJob !== null ? printJob.configuration.extruderConfigurations[1] : null;
|
printCoreConfiguration: printJob !== null ? printJob.configuration.extruderConfigurations[1] : null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PrintJobContextMenu {
|
||||||
|
id: contextButton;
|
||||||
|
anchors {
|
||||||
|
right: mainContent.right;
|
||||||
|
rightMargin: UM.Theme.getSize("default_margin").width * 3 + root.shadowRadius;
|
||||||
|
top: mainContent.top;
|
||||||
|
topMargin: UM.Theme.getSize("default_margin").height;
|
||||||
|
}
|
||||||
|
printJob: root.printJob;
|
||||||
|
visible: root.printJob;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: configChangesBox;
|
id: configChangesBox;
|
||||||
width: parent.width;
|
width: parent.width;
|
||||||
height: childrenRect.height;
|
height: childrenRect.height;
|
||||||
visible: root.printJob && root.printJob.configurationChanges.length !== 0;
|
visible: printJob && printJob.configurationChanges.length !== 0;
|
||||||
|
|
||||||
// Config change toggle
|
// Config change toggle
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -375,18 +388,18 @@ Item {
|
||||||
elide: Text.ElideRight;
|
elide: Text.ElideRight;
|
||||||
font: UM.Theme.getFont("large_nonbold");
|
font: UM.Theme.getFont("large_nonbold");
|
||||||
text: {
|
text: {
|
||||||
if (root.printJob.configurationChanges.length === 0) {
|
if (!printJob || printJob.configurationChanges.length === 0) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
var topLine;
|
var topLine;
|
||||||
if (materialsAreKnown(root.printJob)) {
|
if (materialsAreKnown(printJob)) {
|
||||||
topLine = catalog.i18nc("@label", "The assigned printer, %1, requires the following configuration change(s):").arg(root.printJob.assignedPrinter.name);
|
topLine = catalog.i18nc("@label", "The assigned printer, %1, requires the following configuration change(s):").arg(printJob.assignedPrinter.name);
|
||||||
} else {
|
} else {
|
||||||
topLine = catalog.i18nc("@label", "The printer %1 is assigned, but the job contains an unknown material configuration.").arg(root.printJob.assignedPrinter.name);
|
topLine = catalog.i18nc("@label", "The printer %1 is assigned, but the job contains an unknown material configuration.").arg(printJob.assignedPrinter.name);
|
||||||
}
|
}
|
||||||
var result = "<p>" + topLine +"</p>";
|
var result = "<p>" + topLine +"</p>";
|
||||||
for (var i = 0; i < root.printJob.configurationChanges.length; i++) {
|
for (var i = 0; i < printJob.configurationChanges.length; i++) {
|
||||||
var change = root.printJob.configurationChanges[i];
|
var change = printJob.configurationChanges[i];
|
||||||
var text;
|
var text;
|
||||||
switch (change.typeOfChange) {
|
switch (change.typeOfChange) {
|
||||||
case "material_change":
|
case "material_change":
|
||||||
|
@ -416,9 +429,9 @@ Item {
|
||||||
left: parent.left;
|
left: parent.left;
|
||||||
}
|
}
|
||||||
visible: {
|
visible: {
|
||||||
var length = root.printJob.configurationChanges.length;
|
var length = printJob.configurationChanges.length;
|
||||||
for (var i = 0; i < length; i++) {
|
for (var i = 0; i < length; i++) {
|
||||||
var typeOfChange = root.printJob.configurationChanges[i].typeOfChange;
|
var typeOfChange = printJob.configurationChanges[i].typeOfChange;
|
||||||
if (typeOfChange === "material_insert" || typeOfChange === "buildplate_change") {
|
if (typeOfChange === "material_insert" || typeOfChange === "buildplate_change") {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -438,13 +451,13 @@ Item {
|
||||||
title: catalog.i18nc("@window:title", "Override configuration configuration and start print");
|
title: catalog.i18nc("@window:title", "Override configuration configuration and start print");
|
||||||
icon: StandardIcon.Warning;
|
icon: StandardIcon.Warning;
|
||||||
text: {
|
text: {
|
||||||
var printJobName = formatPrintJobName(root.printJob.name);
|
var printJobName = formatPrintJobName(printJob.name);
|
||||||
var confirmText = catalog.i18nc("@label", "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?").arg(printJobName);
|
var confirmText = catalog.i18nc("@label", "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?").arg(printJobName);
|
||||||
return confirmText;
|
return confirmText;
|
||||||
}
|
}
|
||||||
standardButtons: StandardButton.Yes | StandardButton.No;
|
standardButtons: StandardButton.Yes | StandardButton.No;
|
||||||
Component.onCompleted: visible = false;
|
Component.onCompleted: visible = false;
|
||||||
onYes: OutputDevice.forceSendJob(root.printJob.key);
|
onYes: OutputDevice.forceSendJob(printJob.key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -486,658 +499,3 @@ Item {
|
||||||
return translationText;
|
return translationText;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// id: base
|
|
||||||
|
|
||||||
// function haveAlert() {
|
|
||||||
// return printJob.configurationChanges.length !== 0;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function alertHeight() {
|
|
||||||
// return haveAlert() ? 230 : 0;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function alertText() {
|
|
||||||
// if (printJob.configurationChanges.length === 0) {
|
|
||||||
// return "";
|
|
||||||
// }
|
|
||||||
|
|
||||||
// var topLine;
|
|
||||||
// if (materialsAreKnown(printJob)) {
|
|
||||||
// topLine = catalog.i18nc("@label", "The assigned printer, %1, requires the following configuration change(s):").arg(printJob.assignedPrinter.name);
|
|
||||||
// } else {
|
|
||||||
// topLine = catalog.i18nc("@label", "The printer %1 is assigned, but the job contains an unknown material configuration.").arg(printJob.assignedPrinter.name);
|
|
||||||
// }
|
|
||||||
// var result = "<p>" + topLine +"</p>";
|
|
||||||
|
|
||||||
// for (var i=0; i<printJob.configurationChanges.length; i++) {
|
|
||||||
// var change = printJob.configurationChanges[i];
|
|
||||||
// var text = "";
|
|
||||||
// if (change.typeOfChange === 'material_change') {
|
|
||||||
// text = catalog.i18nc("@label", "Change material %1 from %2 to %3.").arg(change.index + 1).arg(change.originName).arg(change.targetName);
|
|
||||||
// } else if (change.typeOfChange === 'material_insert') {
|
|
||||||
// text = catalog.i18nc("@label", "Load %3 as material %1 (This cannot be overridden).").arg(change.index + 1).arg(change.targetName);
|
|
||||||
// } else if (change.typeOfChange === 'print_core_change') {
|
|
||||||
// text = catalog.i18nc("@label", "Change print core %1 from %2 to %3.").arg(change.index + 1).arg(change.originName).arg(change.targetName);
|
|
||||||
// } else if (change.typeOfChange === 'buildplate_change') {
|
|
||||||
// var target_name = formatBuildPlateType(change.target_name);
|
|
||||||
// text = catalog.i18nc("@label", "Change build plate to %1 (This cannot be overridden).").arg(target_name);
|
|
||||||
// }
|
|
||||||
// result += "<p><b>" + text + "</b></p>";
|
|
||||||
// }
|
|
||||||
// return result;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function materialsAreKnown(printJob) {
|
|
||||||
// var conf0 = printJob.configuration[0];
|
|
||||||
// if (conf0 && !conf0.material.material) {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// var conf1 = printJob.configuration[1];
|
|
||||||
// if (conf1 && !conf1.material.material) {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return true;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function formatBuildPlateType(buildPlateType) {
|
|
||||||
// var translationText = "";
|
|
||||||
|
|
||||||
// switch (buildPlateType) {
|
|
||||||
// case 'glass':
|
|
||||||
// translationText = catalog.i18nc("@label", "Glass");
|
|
||||||
// break;
|
|
||||||
// case 'aluminum':
|
|
||||||
// translationText = catalog.i18nc("@label", "Aluminum");
|
|
||||||
// break;
|
|
||||||
// default:
|
|
||||||
// translationText = null;
|
|
||||||
// }
|
|
||||||
// return translationText;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function formatPrintJobName(name) {
|
|
||||||
// var extensionsToRemove = [
|
|
||||||
// '.gz',
|
|
||||||
// '.gcode',
|
|
||||||
// '.ufp'
|
|
||||||
// ];
|
|
||||||
|
|
||||||
// for (var i = 0; i < extensionsToRemove.length; i++) {
|
|
||||||
// var extension = extensionsToRemove[i];
|
|
||||||
|
|
||||||
// if (name.slice(-extension.length) === extension) {
|
|
||||||
// name = name.substring(0, name.length - extension.length);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return name;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// function isPrintJobForcable(printJob) {
|
|
||||||
// var forcable = true;
|
|
||||||
|
|
||||||
// for (var i = 0; i < printJob.configurationChanges.length; i++) {
|
|
||||||
// var typeOfChange = printJob.configurationChanges[i].typeOfChange;
|
|
||||||
// if (typeOfChange === 'material_insert' || typeOfChange === 'buildplate_change') {
|
|
||||||
// forcable = false;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return forcable;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// property var cardHeight: 175
|
|
||||||
|
|
||||||
// height: (cardHeight + alertHeight()) * screenScaleFactor
|
|
||||||
// property var printJob: null
|
|
||||||
// property var shadowRadius: 5 * screenScaleFactor
|
|
||||||
// function getPrettyTime(time)
|
|
||||||
// {
|
|
||||||
// return OutputDevice.formatDuration(time)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// width: parent.width
|
|
||||||
|
|
||||||
// UM.I18nCatalog
|
|
||||||
// {
|
|
||||||
// id: catalog
|
|
||||||
// name: "cura"
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// id: background
|
|
||||||
|
|
||||||
// height: (cardHeight + alertHeight()) * screenScaleFactor
|
|
||||||
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// top: parent.top
|
|
||||||
// topMargin: 3 * screenScaleFactor
|
|
||||||
// left: parent.left
|
|
||||||
// leftMargin: base.shadowRadius
|
|
||||||
// rightMargin: base.shadowRadius
|
|
||||||
// right: parent.right
|
|
||||||
// //bottom: parent.bottom - alertHeight() * screenScaleFactor
|
|
||||||
// bottomMargin: base.shadowRadius
|
|
||||||
// }
|
|
||||||
|
|
||||||
// layer.enabled: true
|
|
||||||
// layer.effect: DropShadow
|
|
||||||
// {
|
|
||||||
// radius: base.shadowRadius
|
|
||||||
// verticalOffset: 2 * screenScaleFactor
|
|
||||||
// color: "#3F000000" // 25% shadow
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// height: cardHeight * screenScaleFactor
|
|
||||||
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// top: parent.top
|
|
||||||
// left: parent.left
|
|
||||||
// right: parent.right
|
|
||||||
// // bottom: parent.bottom
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// // Content on the left of the infobox
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// top: parent.top
|
|
||||||
// bottom: parent.bottom
|
|
||||||
// left: parent.left
|
|
||||||
// right: parent.horizontalCenter
|
|
||||||
// margins: UM.Theme.getSize("wide_margin").width
|
|
||||||
// rightMargin: UM.Theme.getSize("default_margin").width
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Label
|
|
||||||
// {
|
|
||||||
// id: printJobName
|
|
||||||
// text: printJob.name
|
|
||||||
// font: UM.Theme.getFont("default_bold")
|
|
||||||
// width: parent.width
|
|
||||||
// elide: Text.ElideRight
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Label
|
|
||||||
// {
|
|
||||||
// id: ownerName
|
|
||||||
// anchors.top: printJobName.bottom
|
|
||||||
// text: printJob.owner
|
|
||||||
// font: UM.Theme.getFont("default")
|
|
||||||
// opacity: 0.6
|
|
||||||
// width: parent.width
|
|
||||||
// elide: Text.ElideRight
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Image
|
|
||||||
// {
|
|
||||||
// id: printJobPreview
|
|
||||||
// source: printJob.previewImageUrl
|
|
||||||
// anchors.top: ownerName.bottom
|
|
||||||
// anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
// anchors.bottom: totalTimeLabel.bottom
|
|
||||||
// width: height
|
|
||||||
// opacity: printJob.state == "error" ? 0.5 : 1.0
|
|
||||||
// }
|
|
||||||
|
|
||||||
// UM.RecolorImage
|
|
||||||
// {
|
|
||||||
// id: statusImage
|
|
||||||
// anchors.centerIn: printJobPreview
|
|
||||||
// source: printJob.state == "error" ? "../svg/aborted-icon.svg" : ""
|
|
||||||
// visible: source != ""
|
|
||||||
// width: 0.5 * printJobPreview.width
|
|
||||||
// height: 0.5 * printJobPreview.height
|
|
||||||
// sourceSize.width: width
|
|
||||||
// sourceSize.height: height
|
|
||||||
// color: "black"
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Label
|
|
||||||
// {
|
|
||||||
// id: totalTimeLabel
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
// anchors.right: parent.right
|
|
||||||
// font: UM.Theme.getFont("default")
|
|
||||||
// text: printJob != null ? getPrettyTime(printJob.timeTotal) : ""
|
|
||||||
// elide: Text.ElideRight
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// // Content on the right side of the infobox.
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// top: parent.top
|
|
||||||
// bottom: parent.bottom
|
|
||||||
// left: parent.horizontalCenter
|
|
||||||
// right: parent.right
|
|
||||||
// margins: 2 * UM.Theme.getSize("default_margin").width
|
|
||||||
// leftMargin: UM.Theme.getSize("default_margin").width
|
|
||||||
// rightMargin: UM.Theme.getSize("default_margin").width / 2
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Label
|
|
||||||
// {
|
|
||||||
// id: targetPrinterLabel
|
|
||||||
// elide: Text.ElideRight
|
|
||||||
// font: UM.Theme.getFont("default_bold")
|
|
||||||
// text:
|
|
||||||
// {
|
|
||||||
// if(printJob.assignedPrinter == null)
|
|
||||||
// {
|
|
||||||
// if(printJob.state == "error")
|
|
||||||
// {
|
|
||||||
// return catalog.i18nc("@label", "Waiting for: Unavailable printer")
|
|
||||||
// }
|
|
||||||
// return catalog.i18nc("@label", "Waiting for: First available")
|
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// {
|
|
||||||
// return catalog.i18nc("@label", "Waiting for: ") + printJob.assignedPrinter.name
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// left: parent.left
|
|
||||||
// right: contextButton.left
|
|
||||||
// rightMargin: UM.Theme.getSize("default_margin").width
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
// function switchPopupState()
|
|
||||||
// {
|
|
||||||
// popup.visible ? popup.close() : popup.open()
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Button
|
|
||||||
// {
|
|
||||||
// id: contextButton
|
|
||||||
// text: "\u22EE" //Unicode; Three stacked points.
|
|
||||||
// width: 35
|
|
||||||
// height: width
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// right: parent.right
|
|
||||||
// top: parent.top
|
|
||||||
// }
|
|
||||||
// hoverEnabled: true
|
|
||||||
|
|
||||||
// background: Rectangle
|
|
||||||
// {
|
|
||||||
// opacity: contextButton.down || contextButton.hovered ? 1 : 0
|
|
||||||
// width: contextButton.width
|
|
||||||
// height: contextButton.height
|
|
||||||
// radius: 0.5 * width
|
|
||||||
// color: UM.Theme.getColor("viewport_background")
|
|
||||||
// }
|
|
||||||
// contentItem: Label
|
|
||||||
// {
|
|
||||||
// text: contextButton.text
|
|
||||||
// color: UM.Theme.getColor("monitor_tab_text_inactive")
|
|
||||||
// font.pixelSize: 25
|
|
||||||
// verticalAlignment: Text.AlignVCenter
|
|
||||||
// horizontalAlignment: Text.AlignHCenter
|
|
||||||
// }
|
|
||||||
|
|
||||||
// onClicked: parent.switchPopupState()
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Popup
|
|
||||||
// {
|
|
||||||
// // TODO Change once updating to Qt5.10 - The 'opened' property is in 5.10 but the behavior is now implemented with the visible property
|
|
||||||
// id: popup
|
|
||||||
// clip: true
|
|
||||||
// closePolicy: Popup.CloseOnPressOutside
|
|
||||||
// x: (parent.width - width) + 26 * screenScaleFactor
|
|
||||||
// y: contextButton.height - 5 * screenScaleFactor // Because shadow
|
|
||||||
// width: 182 * screenScaleFactor
|
|
||||||
// height: contentItem.height + 2 * padding
|
|
||||||
// visible: false
|
|
||||||
// padding: 5 * screenScaleFactor // Because shadow
|
|
||||||
|
|
||||||
// transformOrigin: Popup.Top
|
|
||||||
// contentItem: Item
|
|
||||||
// {
|
|
||||||
// width: popup.width
|
|
||||||
// height: childrenRect.height + 36 * screenScaleFactor
|
|
||||||
// anchors.topMargin: 10 * screenScaleFactor
|
|
||||||
// anchors.bottomMargin: 10 * screenScaleFactor
|
|
||||||
// Button
|
|
||||||
// {
|
|
||||||
// id: sendToTopButton
|
|
||||||
// text: catalog.i18nc("@label", "Move to top")
|
|
||||||
// onClicked:
|
|
||||||
// {
|
|
||||||
// sendToTopConfirmationDialog.visible = true;
|
|
||||||
// popup.close();
|
|
||||||
// }
|
|
||||||
// width: parent.width
|
|
||||||
// enabled: OutputDevice.queuedPrintJobs[0].key != printJob.key
|
|
||||||
// visible: enabled
|
|
||||||
// anchors.top: parent.top
|
|
||||||
// anchors.topMargin: 18 * screenScaleFactor
|
|
||||||
// height: visible ? 39 * screenScaleFactor : 0 * screenScaleFactor
|
|
||||||
// hoverEnabled: true
|
|
||||||
// background: Rectangle
|
|
||||||
// {
|
|
||||||
// opacity: sendToTopButton.down || sendToTopButton.hovered ? 1 : 0
|
|
||||||
// color: UM.Theme.getColor("viewport_background")
|
|
||||||
// }
|
|
||||||
// contentItem: Label
|
|
||||||
// {
|
|
||||||
// text: sendToTopButton.text
|
|
||||||
// horizontalAlignment: Text.AlignLeft
|
|
||||||
// verticalAlignment: Text.AlignVCenter
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// MessageDialog
|
|
||||||
// {
|
|
||||||
// id: sendToTopConfirmationDialog
|
|
||||||
// title: catalog.i18nc("@window:title", "Move print job to top")
|
|
||||||
// icon: StandardIcon.Warning
|
|
||||||
// text: catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to move %1 to the top of the queue?").arg(printJob.name)
|
|
||||||
// standardButtons: StandardButton.Yes | StandardButton.No
|
|
||||||
// Component.onCompleted: visible = false
|
|
||||||
// onYes: OutputDevice.sendJobToTop(printJob.key)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Button
|
|
||||||
// {
|
|
||||||
// id: deleteButton
|
|
||||||
// text: catalog.i18nc("@label", "Delete")
|
|
||||||
// onClicked:
|
|
||||||
// {
|
|
||||||
// deleteConfirmationDialog.visible = true;
|
|
||||||
// popup.close();
|
|
||||||
// }
|
|
||||||
// width: parent.width
|
|
||||||
// height: 39 * screenScaleFactor
|
|
||||||
// anchors.top: sendToTopButton.bottom
|
|
||||||
// hoverEnabled: true
|
|
||||||
// background: Rectangle
|
|
||||||
// {
|
|
||||||
// opacity: deleteButton.down || deleteButton.hovered ? 1 : 0
|
|
||||||
// color: UM.Theme.getColor("viewport_background")
|
|
||||||
// }
|
|
||||||
// contentItem: Label
|
|
||||||
// {
|
|
||||||
// text: deleteButton.text
|
|
||||||
// horizontalAlignment: Text.AlignLeft
|
|
||||||
// verticalAlignment: Text.AlignVCenter
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// MessageDialog
|
|
||||||
// {
|
|
||||||
// id: deleteConfirmationDialog
|
|
||||||
// title: catalog.i18nc("@window:title", "Delete print job")
|
|
||||||
// icon: StandardIcon.Warning
|
|
||||||
// text: catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to delete %1?").arg(printJob.name)
|
|
||||||
// standardButtons: StandardButton.Yes | StandardButton.No
|
|
||||||
// Component.onCompleted: visible = false
|
|
||||||
// onYes: OutputDevice.deleteJobFromQueue(printJob.key)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// background: Item
|
|
||||||
// {
|
|
||||||
// width: popup.width
|
|
||||||
// height: popup.height
|
|
||||||
|
|
||||||
// DropShadow
|
|
||||||
// {
|
|
||||||
// anchors.fill: pointedRectangle
|
|
||||||
// radius: 5
|
|
||||||
// color: "#3F000000" // 25% shadow
|
|
||||||
// source: pointedRectangle
|
|
||||||
// transparentBorder: true
|
|
||||||
// verticalOffset: 2
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// id: pointedRectangle
|
|
||||||
// width: parent.width - 10 * screenScaleFactor // Because of the shadow
|
|
||||||
// height: parent.height - 10 * screenScaleFactor // Because of the shadow
|
|
||||||
// anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
// anchors.verticalCenter: parent.verticalCenter
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// id: point
|
|
||||||
// height: 14 * screenScaleFactor
|
|
||||||
// width: 14 * screenScaleFactor
|
|
||||||
// color: UM.Theme.getColor("setting_control")
|
|
||||||
// transform: Rotation { angle: 45}
|
|
||||||
// anchors.right: bloop.right
|
|
||||||
// anchors.rightMargin: 24
|
|
||||||
// y: 1
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// id: bloop
|
|
||||||
// color: UM.Theme.getColor("setting_control")
|
|
||||||
// width: parent.width
|
|
||||||
// anchors.top: parent.top
|
|
||||||
// anchors.topMargin: 8 * screenScaleFactor // Because of the shadow + point
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
// anchors.bottomMargin: 8 * screenScaleFactor // Because of the shadow
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// exit: Transition
|
|
||||||
// {
|
|
||||||
// // This applies a default NumberAnimation to any changes a state change makes to x or y properties
|
|
||||||
// NumberAnimation { property: "visible"; duration: 75; }
|
|
||||||
// }
|
|
||||||
// enter: Transition
|
|
||||||
// {
|
|
||||||
// // This applies a default NumberAnimation to any changes a state change makes to x or y properties
|
|
||||||
// NumberAnimation { property: "visible"; duration: 75; }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// onClosed: visible = false
|
|
||||||
// onOpened: visible = true
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Row
|
|
||||||
// {
|
|
||||||
// id: printerFamilyPills
|
|
||||||
// spacing: 0.5 * UM.Theme.getSize("default_margin").width
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// left: parent.left
|
|
||||||
// right: parent.right
|
|
||||||
// bottom: extrudersInfo.top
|
|
||||||
// bottomMargin: UM.Theme.getSize("default_margin").height
|
|
||||||
// }
|
|
||||||
// height: childrenRect.height
|
|
||||||
// Repeater
|
|
||||||
// {
|
|
||||||
// model: printJob.compatibleMachineFamilies
|
|
||||||
|
|
||||||
// delegate: PrinterFamilyPill
|
|
||||||
// {
|
|
||||||
// text: modelData
|
|
||||||
// color: UM.Theme.getColor("viewport_background")
|
|
||||||
// padding: 3 * screenScaleFactor
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // PrintCore && Material config
|
|
||||||
// Row
|
|
||||||
// {
|
|
||||||
// id: extrudersInfo
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
|
|
||||||
// anchors
|
|
||||||
// {
|
|
||||||
// left: parent.left
|
|
||||||
// right: parent.right
|
|
||||||
// }
|
|
||||||
// height: childrenRect.height
|
|
||||||
|
|
||||||
// spacing: UM.Theme.getSize("default_margin").width
|
|
||||||
|
|
||||||
// PrintCoreConfiguration
|
|
||||||
// {
|
|
||||||
// id: leftExtruderInfo
|
|
||||||
// width: Math.round(parent.width / 2) * screenScaleFactor
|
|
||||||
// printCoreConfiguration: printJob.configuration.extruderConfigurations[0]
|
|
||||||
// }
|
|
||||||
|
|
||||||
// PrintCoreConfiguration
|
|
||||||
// {
|
|
||||||
// id: rightExtruderInfo
|
|
||||||
// width: Math.round(parent.width / 2) * screenScaleFactor
|
|
||||||
// printCoreConfiguration: printJob.configuration.extruderConfigurations[1]
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// height: cardHeight * screenScaleFactor
|
|
||||||
// color: UM.Theme.getColor("viewport_background")
|
|
||||||
// width: 2 * screenScaleFactor
|
|
||||||
// anchors.top: parent.top
|
|
||||||
// anchors.margins: UM.Theme.getSize("default_margin").height
|
|
||||||
// anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Alert / Configuration change box
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// height: alertHeight() * screenScaleFactor
|
|
||||||
|
|
||||||
// anchors.left: parent.left
|
|
||||||
// anchors.right: parent.right
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
|
|
||||||
// color: "#ff00ff"
|
|
||||||
// ColumnLayout
|
|
||||||
// {
|
|
||||||
// anchors.fill: parent
|
|
||||||
// RowLayout
|
|
||||||
// {
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// Layout.fillWidth: true
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Label
|
|
||||||
// {
|
|
||||||
// font: UM.Theme.getFont("default_bold")
|
|
||||||
// text: "Configuration change"
|
|
||||||
// }
|
|
||||||
|
|
||||||
// UM.RecolorImage
|
|
||||||
// {
|
|
||||||
// id: collapseIcon
|
|
||||||
// width: 15
|
|
||||||
// height: 15
|
|
||||||
// sourceSize.width: width
|
|
||||||
// sourceSize.height: height
|
|
||||||
|
|
||||||
// // FIXME
|
|
||||||
// source: base.collapsed ? UM.Theme.getIcon("arrow_left") : UM.Theme.getIcon("arrow_bottom")
|
|
||||||
// color: "black"
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// Layout.fillWidth: true
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// Layout.fillHeight: true
|
|
||||||
// Layout.fillWidth: true
|
|
||||||
// color: "red"
|
|
||||||
|
|
||||||
// Rectangle
|
|
||||||
// {
|
|
||||||
// color: "green"
|
|
||||||
// width: childrenRect.width
|
|
||||||
|
|
||||||
// anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
// anchors.top: parent.top
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
|
|
||||||
// ColumnLayout
|
|
||||||
// {
|
|
||||||
// width: childrenRect.width
|
|
||||||
|
|
||||||
// anchors.top: parent.top
|
|
||||||
// anchors.bottom: parent.bottom
|
|
||||||
|
|
||||||
// Text
|
|
||||||
// {
|
|
||||||
// Layout.alignment: Qt.AlignTop
|
|
||||||
|
|
||||||
// textFormat: Text.StyledText
|
|
||||||
// font: UM.Theme.getFont("default_bold")
|
|
||||||
// text: alertText()
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Button
|
|
||||||
// {
|
|
||||||
// visible: isPrintJobForcable(printJob)
|
|
||||||
// text: catalog.i18nc("@label", "Override")
|
|
||||||
// onClicked: {
|
|
||||||
// overrideConfirmationDialog.visible = true;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Spacer
|
|
||||||
// Item
|
|
||||||
// {
|
|
||||||
// Layout.fillHeight: true
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// MessageDialog
|
|
||||||
// {
|
|
||||||
// id: overrideConfirmationDialog
|
|
||||||
// title: catalog.i18nc("@window:title", "Override configuration configuration and start print")
|
|
||||||
// icon: StandardIcon.Warning
|
|
||||||
// text: {
|
|
||||||
// var printJobName = formatPrintJobName(printJob.name);
|
|
||||||
// var confirmText = catalog.i18nc("@label", "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?").arg(printJobName);
|
|
||||||
// return confirmText;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// standardButtons: StandardButton.Yes | StandardButton.No
|
|
||||||
// Component.onCompleted: visible = false
|
|
||||||
// onYes: OutputDevice.forceSendJob(printJob.key)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
Loading…
Add table
Add a link
Reference in a new issue