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

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

import QtQuick 2.15
import QtQuick.Controls 2.15
import UM 1.5 as UM

TabButton
{
    property string pageTitle
    padding: UM.Theme.getSize("narrow_margin").width
    horizontalPadding: UM.Theme.getSize("default_margin").width
    hoverEnabled: true
    property color inactiveBackgroundColor : hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("detail_background")
    property color activeBackgroundColor : UM.Theme.getColor("main_background")

    background: Rectangle
    {
        anchors.fill: parent
        color: parent.checked ? activeBackgroundColor : inactiveBackgroundColor
        border.color: UM.Theme.getColor("detail_background")
        border.width: UM.Theme.getSize("thick_lining").width
    }

    contentItem: UM.Label
    {
        text: parent.text
        font: UM.Theme.getFont("medium_bold")
        width: contentWidth
        anchors.centerIn: parent
    }
}