mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-05 23:04:30 +08:00
64 lines
1.7 KiB
QML
64 lines
1.7 KiB
QML
// Copyright (c) 2015 Ultimaker B.V.
|
|
// Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Layouts 1.1
|
|
|
|
Rectangle
|
|
{
|
|
width: 300; height: 100
|
|
ColumnLayout
|
|
{
|
|
RowLayout
|
|
{
|
|
Text
|
|
{
|
|
//: USB Printing dialog label, %1 is head temperature
|
|
text: qsTr("Extruder Temperature %1").arg(manager.extruderTemperature)
|
|
}
|
|
Text
|
|
{
|
|
//: USB Printing dialog label, %1 is bed temperature
|
|
text: qsTr("Bed Temperature %1").arg(manager.bedTemperature)
|
|
}
|
|
Text
|
|
{
|
|
text: "" + manager.error
|
|
}
|
|
|
|
}
|
|
RowLayout
|
|
{
|
|
Button
|
|
{
|
|
//: USB Printing dialog start print button
|
|
text: qsTr("Print");
|
|
onClicked: { manager.startPrint() }
|
|
enabled: manager.progress == 0 ? true : false
|
|
}
|
|
Button
|
|
{
|
|
//: USB Printing dialog cancel print button
|
|
text: qsTr("Cancel");
|
|
onClicked: { manager.cancelPrint() }
|
|
enabled: manager.progress == 0 ? false: true
|
|
}
|
|
}
|
|
ProgressBar
|
|
{
|
|
id: prog;
|
|
value: manager.progress
|
|
minimumValue: 0;
|
|
maximumValue: 100;
|
|
Layout.maximumWidth:parent.width
|
|
Layout.preferredWidth:230
|
|
Layout.preferredHeight:25
|
|
Layout.minimumWidth:230
|
|
Layout.minimumHeight:25
|
|
width: 230
|
|
height: 25
|
|
}
|
|
}
|
|
}
|