mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00
94 lines
2.3 KiB
QML
94 lines
2.3 KiB
QML
// 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.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
Button
|
|
{
|
|
id: base
|
|
|
|
property alias toolItem: contentItemLoader.sourceComponent
|
|
property bool topElement: false
|
|
property bool bottomElement: false
|
|
|
|
hoverEnabled: true
|
|
|
|
background: Rectangle
|
|
{
|
|
implicitWidth: UM.Theme.getSize("button").width
|
|
implicitHeight: UM.Theme.getSize("button").height
|
|
color:
|
|
{
|
|
if (base.checked && base.hovered)
|
|
{
|
|
return UM.Theme.getColor("toolbar_button_active_hover")
|
|
}
|
|
else if (base.checked)
|
|
{
|
|
return UM.Theme.getColor("toolbar_button_active")
|
|
}
|
|
else if(base.hovered)
|
|
{
|
|
return UM.Theme.getColor("toolbar_button_hover")
|
|
}
|
|
return UM.Theme.getColor("toolbar_background")
|
|
}
|
|
radius: UM.Theme.getSize("default_radius").width
|
|
|
|
Rectangle
|
|
{
|
|
id: topSquare
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
top: parent.top
|
|
}
|
|
height: parent.radius
|
|
color: base.topElement ? "transparent" : parent.color
|
|
}
|
|
|
|
Rectangle
|
|
{
|
|
id: bottomSquare
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
bottom: parent.bottom
|
|
}
|
|
height: parent.radius
|
|
color: base.bottomElement ? "transparent" : parent.color
|
|
}
|
|
|
|
Rectangle
|
|
{
|
|
id: leftSquare
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
top: parent.top
|
|
bottom: parent.bottom
|
|
}
|
|
width: parent.radius
|
|
color: parent.color
|
|
}
|
|
}
|
|
|
|
contentItem: Item
|
|
{
|
|
opacity: parent.enabled ? 1.0 : 0.2
|
|
Loader
|
|
{
|
|
id: contentItemLoader
|
|
anchors.centerIn: parent
|
|
width: UM.Theme.getSize("button_icon").width
|
|
height: UM.Theme.getSize("button_icon").height
|
|
}
|
|
}
|
|
}
|