mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 00:04:27 +08:00
37 lines
1.1 KiB
QML
37 lines
1.1 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.4
|
|
import UM 1.2 as UM
|
|
|
|
/**
|
|
* A MonitorPrinterPill is a blue-colored tag indicating which printers a print
|
|
* job is compatible with. It is used by the MonitorPrintJobCard component.
|
|
*/
|
|
Item
|
|
{
|
|
id: monitorPrinterPill
|
|
property var text: ""
|
|
|
|
implicitHeight: 18 * screenScaleFactor // TODO: Theme!
|
|
implicitWidth: Math.max(printerNameLabel.contentWidth + 12 * screenScaleFactor, 36 * screenScaleFactor) // TODO: Theme!
|
|
|
|
Rectangle {
|
|
id: background
|
|
anchors.fill: parent
|
|
color: printerNameLabel.visible ? UM.Theme.getColor("monitor_printer_family_tag") : UM.Theme.getColor("monitor_skeleton_loading")
|
|
radius: 2 * screenScaleFactor // TODO: Theme!
|
|
}
|
|
|
|
Label {
|
|
id: printerNameLabel
|
|
anchors.centerIn: parent
|
|
color: UM.Theme.getColor("monitor_text_primary")
|
|
text: monitorPrinterPill.text
|
|
font.pointSize: 10 // TODO: Theme!
|
|
visible: monitorPrinterPill.text !== ""
|
|
renderType: Text.NativeRendering
|
|
}
|
|
}
|