Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PrinterTypeLabel.qml « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2e8dc6f481ec18c59c42bc7557ff14fa087e428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2018 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.7
import QtQuick.Controls 2.1

import UM 1.1 as UM

// This component creates a label with the abbreviated name of a printer, with a rectangle surrounding the label.
// It is created in a separated place in order to be reused whenever needed.
Item
{
    property alias text: printerTypeLabel.text

    property bool autoFit: false

    width: autoFit ? (printerTypeLabel.width + UM.Theme.getSize("default_margin").width) : UM.Theme.getSize("printer_type_label").width
    height: UM.Theme.getSize("printer_type_label").height

    Rectangle
    {
        anchors.fill: parent
        color: UM.Theme.getColor("printer_type_label_background")
        radius: UM.Theme.getSize("checkbox_radius").width
    }

    Label
    {
        id: printerTypeLabel
        text: "CFFFP" // As an abbreviated name of the Custom FFF Printer
        anchors.verticalCenter: parent.verticalCenter
        anchors.horizontalCenter: parent.horizontalCenter
        renderType: Text.NativeRendering
        font: UM.Theme.getFont("default")
        color: UM.Theme.getColor("text")
    }
}