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

MachineListButton.qml « PrinterSelector « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b158cb20c00befa5eabda154dc76c3f9f08a9ce7 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copyright (c) 2022 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.10
import QtQuick.Controls 2.3

import UM 1.5 as UM
import Cura 1.0 as Cura

Loader {
    id: loader
    width: parent.width
    sourceComponent: {
        switch (model.componentType) {
            case "HIDE_BUTTON":
                hideButtonComponent
                break;
            case "SHOW_BUTTON":
                showButtonComponent
                break;
            case "MACHINE":
                machineListButtonComponent
                break;
            default:
        }
    }
    property var onClicked

    Component
    {
        id: hideButtonComponent
        Cura.TertiaryButton
        {
            text: catalog.i18nc("@label", "Hide all connected printers")
            height: UM.Theme.getSize("large_button").height
            onClicked: if (loader.onClicked) loader.onClicked()
            iconSource: UM.Theme.getIcon("ChevronSingleUp")
            width: parent.width
        }
    }

    Component
    {
        id: showButtonComponent
        Cura.TertiaryButton
        {
            text: catalog.i18nc("@label", "Show all connected printers")
            height: UM.Theme.getSize("large_button").height
            onClicked: if (loader.onClicked) loader.onClicked()
            iconSource: UM.Theme.getIcon("ChevronSingleDown")
            width: parent.width
        }
    }

    Component
    {
        id: machineListButtonComponent

        Button
        {
            id: machineListButton

            onClicked: if (loader.onClicked) loader.onClicked()

            width: parent.width
            height: UM.Theme.getSize("large_button").height
            leftPadding: UM.Theme.getSize("default_margin").width
            rightPadding: UM.Theme.getSize("default_margin").width
            checkable: true
            hoverEnabled: true

            contentItem: Item
            {
                width: machineListButton.width - machineListButton.leftPadding - machineListButton.rightPadding
                height: UM.Theme.getSize("action_button").height

                UM.ColorImage
                {
                    id: printerIcon
                    height: UM.Theme.getSize("medium_button").height
                    width: UM.Theme.getSize("medium_button").width
                    color: UM.Theme.getColor("machine_selector_printer_icon")
                    visible: model.isAbstractMachine || !model.isOnline
                    source: model.isAbstractMachine ? UM.Theme.getIcon("PrinterTriple", "medium") : UM.Theme.getIcon("Printer", "medium")

                    anchors
                    {
                        left: parent.left
                        verticalCenter: parent.verticalCenter
                    }
                }

                UM.Label
                {
                    id: buttonText
                    anchors
                    {
                        left: printerIcon.right
                        right: printerCount.left
                        verticalCenter: parent.verticalCenter
                        leftMargin: UM.Theme.getSize("default_margin").width
                    }
                    text: model.name ? model.name : ""
                    font: model.isAbstractMachine ? UM.Theme.getFont("medium_bold") : UM.Theme.getFont("medium")
                    visible: text != ""
                    elide: Text.ElideRight
                }

                Rectangle
                {
                    id: printerCount
                    color: UM.Theme.getColor("background_2")
                    radius: height
                    width: height
                    anchors
                    {
                        right: parent.right
                        top: buttonText.top
                        bottom: buttonText.bottom
                    }
                    visible: model.isAbstractMachine

                    UM.Label
                    {
                        text: model.machineCount
                        anchors.centerIn: parent
                        font: UM.Theme.getFont("default_bold")
                    }
                }
            }

            background: Rectangle
            {
                id: backgroundRect
                color: machineListButton.hovered ? UM.Theme.getColor("action_button_hovered") : "transparent"
            }
        }
    }
}