mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-07 22:01:50 +08:00
Added send to top context item
CL-894
This commit is contained in:
parent
28dc918e03
commit
ef00550df6
@ -366,6 +366,13 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice):
|
|||||||
datetime_completed = datetime.fromtimestamp(current_time + time_remaining)
|
datetime_completed = datetime.fromtimestamp(current_time + time_remaining)
|
||||||
return (datetime_completed.strftime("%a %b ") + "{day}".format(day=datetime_completed.day)).upper()
|
return (datetime_completed.strftime("%a %b ") + "{day}".format(day=datetime_completed.day)).upper()
|
||||||
|
|
||||||
|
@pyqtSlot(str)
|
||||||
|
def sendJobToTop(self, print_job_uuid: str) -> None:
|
||||||
|
# This function is part of the output device (and not of the printjob output model) as this type of operation
|
||||||
|
# is a modification of the cluster queue and not of the actual job.
|
||||||
|
data = "{\"to_position\": 0}"
|
||||||
|
self.put("print_jobs/{uuid}/move_to_position".format(uuid = print_job_uuid), data, on_finished=None)
|
||||||
|
|
||||||
def _printJobStateChanged(self) -> None:
|
def _printJobStateChanged(self) -> None:
|
||||||
username = self._getUserName()
|
username = self._getUserName()
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import QtQuick 2.2
|
import QtQuick 2.2
|
||||||
import QtQuick.Controls 1.4
|
import QtQuick.Controls 2.0
|
||||||
import QtQuick.Controls.Styles 1.4
|
import QtQuick.Controls.Styles 1.4
|
||||||
|
|
||||||
|
|
||||||
import UM 1.3 as UM
|
import UM 1.3 as UM
|
||||||
|
|
||||||
|
|
||||||
@ -83,16 +84,73 @@ Item
|
|||||||
text: "Waiting for: first available"
|
text: "Waiting for: first available"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function switchPopupState()
|
||||||
|
{
|
||||||
|
popup.visible ? popup.close() : popup.open()
|
||||||
|
}
|
||||||
Button
|
Button
|
||||||
{
|
{
|
||||||
|
id: contextButton
|
||||||
text: "..."
|
text: "..."
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
right: parent.right
|
right: parent.right
|
||||||
top: parent.top
|
top: parent.top
|
||||||
}
|
}
|
||||||
|
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.CloseOnPressOutsideParent
|
||||||
|
x: parent.width - width
|
||||||
|
y: contextButton.height
|
||||||
|
//y: configurationSelector.height - UM.Theme.getSize("default_lining").height
|
||||||
|
//x: configurationSelector.width - width
|
||||||
|
width: 200
|
||||||
|
height: childrenRect.height
|
||||||
|
visible: false
|
||||||
|
padding: UM.Theme.getSize("default_lining").width
|
||||||
|
transformOrigin: Popup.Top
|
||||||
|
contentItem: Item
|
||||||
|
{
|
||||||
|
width: panelWidth - 2 * popup.padding
|
||||||
|
height: cildrenRect.height
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
text: "Send to top"
|
||||||
|
onClicked: OutputDevice.sendJobToTop(printJob.key)
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
background: Rectangle
|
||||||
|
{
|
||||||
|
color: UM.Theme.getColor("setting_control")
|
||||||
|
border.color: UM.Theme.getColor("setting_control_border")
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// PrintCore && Material config
|
// PrintCore && Material config
|
||||||
Row
|
Row
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user