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

ExpandableComponentHeader.qml « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7176f0978bedfebbedef106daa8a00045fa67a97 (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
// 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.3

import UM 1.5 as UM
import Cura 1.0 as Cura

// Header of the popup
Cura.RoundedRectangle
{
    id: header

    property alias headerTitle: headerLabel.text
    property alias xPosCloseButton: closeButton.left

    height: UM.Theme.getSize("expandable_component_content_header").height
    color: UM.Theme.getColor("background_1")
    cornerSide: Cura.RoundedRectangle.Direction.Up
    border.width: UM.Theme.getSize("default_lining").width
    border.color: UM.Theme.getColor("lining")
    radius: UM.Theme.getSize("default_radius").width

    UM.Label
    {
        id: headerLabel
        text: ""
        font: UM.Theme.getFont("medium")
        height: parent.height

        anchors
        {
            topMargin: UM.Theme.getSize("default_margin").height
            left: parent.left
            leftMargin: UM.Theme.getSize("default_margin").height
        }
    }

    Button
    {
        id: closeButton
        width: UM.Theme.getSize("message_close").width
        height: UM.Theme.getSize("message_close").height
        hoverEnabled: true

        anchors
        {
            right: parent.right
            rightMargin: UM.Theme.getSize("default_margin").width
            verticalCenter: parent.verticalCenter
        }

        contentItem: UM.RecolorImage
        {
            anchors.fill: parent
            sourceSize.width: width
            color: closeButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
            source: UM.Theme.getIcon("Cancel")
        }

        background: Item {}

        onClicked: toggleContent() // Will hide the popup item
    }
}