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

PrintJobContextMenuItem.qml « qml « resources « UM3NetworkPrinting « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3288896572f020fa0551d2739457d0785fad11de (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
// Copyright (c) 2019 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 2.0
import QtQuick.Controls.Styles 1.4
import UM 1.3 as UM

Button {
    background: Rectangle {
        opacity: parent.down || parent.hovered ? 1 : 0;
        color: UM.Theme.getColor("monitor_context_menu_hover")
    }
    contentItem: Label {
        color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled");
        text: parent.text
        horizontalAlignment: Text.AlignLeft;
        verticalAlignment: Text.AlignVCenter;
        renderType: Text.NativeRendering;
    }
    height: visible ? 39 * screenScaleFactor : 0; // TODO: Theme!
    hoverEnabled: true;
    width: parent.width;
}