mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-10 16:27:51 -06:00
29 lines
No EOL
617 B
QML
29 lines
No EOL
617 B
QML
import QtQuick 2.1
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Layouts 1.1
|
|
Rectangle
|
|
{
|
|
width: 300; height: 100
|
|
ColumnLayout
|
|
{
|
|
|
|
Text
|
|
{
|
|
text: "Updating firmware"
|
|
}
|
|
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
|
|
}
|
|
}
|
|
} |