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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
// Copyright (c) 2021 Ultimaker B.V.
// Uranium is released under the terms of the LGPLv3 or higher.
import QtQuick 2.2
import UM 1.5 as UM
Item
{
width: childrenRect.width
height: childrenRect.height
UM.I18nCatalog { id: catalog; name: "uranium"}
UM.ToolbarButton
{
id: resetRotationButton
anchors.left: parent.left;
text: catalog.i18nc("@action:button", "Reset")
toolItem: UM.ColorImage
{
source: UM.Theme.getIcon("ArrowReset")
color: UM.Theme.getColor("icon")
}
property bool needBorder: true
z: 2
onClicked: UM.ActiveTool.triggerAction("resetRotation")
}
UM.ToolbarButton
{
id: layFlatButton
anchors.left: resetRotationButton.right
anchors.leftMargin: UM.Theme.getSize("default_margin").width
//: Lay Flat tool button
text: catalog.i18nc("@action:button", "Lay flat")
toolItem: UM.ColorImage
{
source: UM.Theme.getIcon("LayFlat")
color: UM.Theme.getColor("icon")
}
z: 1
onClicked: UM.ActiveTool.triggerAction("layFlat");
// (Not yet:) Alternative 'lay flat' when legacy OpenGL makes selection of a face in an indexed model impossible.
// visible: ! UM.ActiveTool.properties.getValue("SelectFaceSupported");
}
UM.ToolbarButton{
id: alignFaceButton
anchors.left: layFlatButton.visible ? layFlatButton.right : resetRotationButton.right
anchors.leftMargin: UM.Theme.getSize("default_margin").width
width: visible ? UM.Theme.getIcon("LayFlatOnFace").width : 0
text: catalog.i18nc("@action:button", "Select face to align to the build plate")
toolItem: UM.ColorImage
{
source: UM.Theme.getIcon("LayFlatOnFace")
color: UM.Theme.getColor("icon")
}
checkable: true
enabled: UM.Selection.selectionCount == 1
checked: UM.ActiveTool.properties.getValue("SelectFaceToLayFlatMode")
onClicked: UM.ActiveTool.setProperty("SelectFaceToLayFlatMode", checked)
visible: UM.ActiveTool.properties.getValue("SelectFaceSupported") == true //Might be undefined if we're switching away from the RotateTool!
}
UM.CheckBox
{
id: snapRotationCheckbox
anchors.top: resetRotationButton.bottom
anchors.topMargin: UM.Theme.getSize("default_margin").width
//: Snap Rotation checkbox
text: catalog.i18nc("@action:checkbox","Snap Rotation")
checked: UM.ActiveTool.properties.getValue("RotationSnap")
onClicked: UM.ActiveTool.setProperty("RotationSnap", checked)
}
Binding
{
target: snapRotationCheckbox
property: "checked"
value: UM.ActiveTool.properties.getValue("RotationSnap")
}
Binding
{
target: alignFaceButton
property: "checked"
value: UM.ActiveTool.properties.getValue("SelectFaceToLayFlatMode")
}
}
|