mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 09:35:53 +08:00
parent
9d50b1fb26
commit
fa671225c8
@ -86,11 +86,36 @@ QtObject {
|
|||||||
|
|
||||||
property Component tool_button: Component {
|
property Component tool_button: Component {
|
||||||
ButtonStyle {
|
ButtonStyle {
|
||||||
background: UM.AngledCornerRectangle {
|
background: Item {
|
||||||
property bool down: control.pressed || (control.checkable && control.checked);
|
|
||||||
|
|
||||||
implicitWidth: UM.Theme.sizes.button.width;
|
implicitWidth: UM.Theme.sizes.button.width;
|
||||||
implicitHeight: UM.Theme.sizes.button.height;
|
implicitHeight: UM.Theme.sizes.button.height;
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.bottom: parent.verticalCenter;
|
||||||
|
|
||||||
|
width: parent.width;
|
||||||
|
height: control.hovered ? parent.height / 2 + label.height : 0;
|
||||||
|
Behavior on height { NumberAnimation { duration: 100; } }
|
||||||
|
|
||||||
|
opacity: control.hovered ? 1.0 : 0.0;
|
||||||
|
Behavior on opacity { NumberAnimation { duration: 100; } }
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: label
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter;
|
||||||
|
text: control.text.replace("&", "");
|
||||||
|
font: UM.Theme.fonts.button_tooltip;
|
||||||
|
color: UM.Theme.colors.button_tooltip_text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UM.AngledCornerRectangle {
|
||||||
|
id: buttonFace;
|
||||||
|
|
||||||
|
anchors.fill: parent;
|
||||||
|
|
||||||
|
property bool down: control.pressed || (control.checkable && control.checked);
|
||||||
|
|
||||||
color: {
|
color: {
|
||||||
if(!control.enabled) {
|
if(!control.enabled) {
|
||||||
return UM.Theme.colors.button_disabled;
|
return UM.Theme.colors.button_disabled;
|
||||||
@ -106,24 +131,6 @@ QtObject {
|
|||||||
}
|
}
|
||||||
Behavior on color { ColorAnimation { duration: 50; } }
|
Behavior on color { ColorAnimation { duration: 50; } }
|
||||||
cornerSize: UM.Theme.sizes.default_margin.width;
|
cornerSize: UM.Theme.sizes.default_margin.width;
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
anchors.bottom: parent.top;
|
|
||||||
|
|
||||||
width: parent.width;
|
|
||||||
height: control.hovered ? label.height : 0;
|
|
||||||
Behavior on height { NumberAnimation { duration: 75; } }
|
|
||||||
|
|
||||||
opacity: control.hovered ? 1.0 : 0.0;
|
|
||||||
Behavior on opacity { NumberAnimation { duration: 75; } }
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: label
|
|
||||||
anchors.horizontalCenter: parent.horizontalCenter;
|
|
||||||
text: control.text;
|
|
||||||
font: UM.Theme.fonts.button_tooltip;
|
|
||||||
color: UM.Theme.colors.button_tooltip_text;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,10 +57,10 @@
|
|||||||
"text_hover": [35, 35, 35, 255],
|
"text_hover": [35, 35, 35, 255],
|
||||||
"text_pressed": [12, 169, 227, 255],
|
"text_pressed": [12, 169, 227, 255],
|
||||||
|
|
||||||
"button": [205, 202, 201, 255],
|
"button": [160, 163, 171, 255],
|
||||||
"button_hover": [174, 174, 174, 255],
|
"button_hover": [140, 144, 154, 255],
|
||||||
"button_active": [12, 169, 227, 255],
|
"button_active": [12, 169, 227, 255],
|
||||||
"button_active_hover": [34, 150, 190, 255],
|
"button_active_hover": [34, 150, 199, 255],
|
||||||
"button_text": [255, 255, 255, 255],
|
"button_text": [255, 255, 255, 255],
|
||||||
"button_disabled": [245, 245, 245, 255],
|
"button_disabled": [245, 245, 245, 255],
|
||||||
"button_tooltip_text": [35, 35, 35, 255],
|
"button_tooltip_text": [35, 35, 35, 255],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user