123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- // Copyright (c) 2018 Ultimaker B.V.
- // Cura is released under the terms of the LGPLv3 or higher.
- import QtQuick 2.2
- import QtQuick.Controls 2.3
- import UM 1.5 as UM
- import Cura 1.7 as Cura
- Item
- {
- id: base
- width: buttons.width
- height: buttons.height
- property int activeY
- Item
- {
- id: buttons
- width: parent.visible ? toolButtons.width : 0
- height: childrenRect.height
- Behavior on width { NumberAnimation { duration: 100 } }
- // Used to create a rounded rectangle behind the toolButtons
- Rectangle
- {
- anchors
- {
- fill: toolButtons
- leftMargin: -radius - border.width // Removes border on left side
- }
- radius: UM.Theme.getSize("default_radius").width
- color: UM.Theme.getColor("toolbar_background")
- border.color: UM.Theme.getColor("lining")
- border.width: UM.Theme.getSize("default_lining").width
- }
- Column
- {
- id: toolButtons
- anchors.top: parent.top
- anchors.right: parent.right
- Repeater
- {
- id: repeat
- model: UM.ToolModel { id: toolsModel }
- width: childrenRect.width
- height: childrenRect.height
- delegate: UM.ToolbarButton
- {
- text: model.name + (model.shortcut ? ` ("${model.shortcut}")` : "")
- checkable: true
- checked: model.active
- enabled: model.enabled && UM.Selection.hasSelection && UM.Controller.toolsEnabled
- isTopElement: toolsModel.getItem(0).id == model.id
- isBottomElement: toolsModel.getItem(toolsModel.count - 1).id == model.id
- toolItem: UM.ColorImage
- {
- source: UM.Theme.getIcon(model.icon) != "" ? UM.Theme.getIcon(model.icon) : "file:///" + model.location + "/" + model.icon
- color: UM.Theme.getColor("icon")
- }
- onCheckedChanged:
- {
- if (checked)
- {
- base.activeY = y;
- }
- //Clear focus when tools change. This prevents the tool grabbing focus when activated.
- //Grabbing focus prevents items from being deleted.
- //Apparently this was only a problem on MacOS.
- forceActiveFocus();
- }
- //Workaround since using ToolButton's onClicked would break the binding of the checked property, instead
- //just catch the click so we do not trigger that behaviour.
- MouseArea
- {
- anchors.fill: parent;
- onClicked:
- {
- forceActiveFocus() //First grab focus, so all the text fields are updated
- if(parent.checked)
- {
- UM.Controller.setActiveTool(null);
- }
- else
- {
- UM.Controller.setActiveTool(model.id);
- }
- base.state = (index < toolsModel.count/2) ? "anchorAtTop" : "anchorAtBottom";
- }
- }
- }
- }
- }
- // Used to create a rounded rectangle behind the extruderButtons
- Rectangle
- {
- anchors
- {
- fill: extruderButtons
- leftMargin: -radius - border.width // Removes border on left side
- }
- radius: UM.Theme.getSize("default_radius").width
- color: UM.Theme.getColor("toolbar_background")
- border.color: UM.Theme.getColor("lining")
- border.width: UM.Theme.getSize("default_lining").width
- visible: extrudersModel.items.length > 1
- }
- Column
- {
- id: extruderButtons
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- anchors.top: toolButtons.bottom
- anchors.right: parent.right
- Repeater
- {
- width: childrenRect.width
- height: childrenRect.height
- model: extrudersModel.items.length > 1 ? extrudersModel : 0
- delegate: Cura.ExtruderButton
- {
- extruder: model
- isTopElement: extrudersModel.getItem(0).id === model.id
- isBottomElement: extrudersModel.getItem(extrudersModel.rowCount() - 1).id === model.id
- text: catalog.i18ncp("@label %1 is filled in with the name of an extruder", "Print Selected Model with %1", "Print Selected Models with %1", UM.Selection.selectionCount).arg(extruder.name)
- checked: Cura.ExtruderManager.selectedObjectExtruders.indexOf(extruder.id) !== -1
- enabled: UM.Selection.hasSelection && extruder.stack.isEnabled
- font: UM.Theme.getFont("small_emphasis")
- onClicked:
- {
- forceActiveFocus() //First grab focus, so all the text fields are updated
- CuraActions.setExtruderForSelection(extruder.id)
- }
- }
- }
- }
- }
- property var extrudersModel: CuraApplication.getExtrudersModel()
- UM.PointingRectangle
- {
- id: panelBorder
- anchors.left: parent.right
- anchors.leftMargin: UM.Theme.getSize("default_margin").width
- anchors.top: base.top
- anchors.topMargin: base.activeY
- z: buttons.z - 1
- target: Qt.point(-1, base.activeY + Math.round(UM.Theme.getSize("button").height / 2))
- arrowSize: UM.Theme.getSize("default_arrow").width
- width:
- {
- if (panel.item && panel.width > 0)
- {
- return Math.max(panel.width + 2 * UM.Theme.getSize("default_margin").width)
- }
- else
- {
- return 0;
- }
- }
- height: panel.item ? panel.height + 2 * UM.Theme.getSize("default_margin").height : 0
- opacity: panel.item && panel.width > 0 ? 1 : 0
- Behavior on opacity { NumberAnimation { duration: 100 } }
- color: UM.Theme.getColor("tool_panel_background")
- borderColor: UM.Theme.getColor("lining")
- borderWidth: UM.Theme.getSize("default_lining").width
- MouseArea //Catch all mouse events (so scene doesn't handle them)
- {
- anchors.fill: parent
- acceptedButtons: Qt.AllButtons
- onWheel: wheel.accepted = true
- }
- Loader
- {
- id: panel
- x: UM.Theme.getSize("default_margin").width
- y: UM.Theme.getSize("default_margin").height
- source: UM.ActiveTool.valid ? UM.ActiveTool.activeToolPanel : ""
- enabled: UM.Controller.toolsEnabled
- }
- }
- // This rectangle displays the information about the current angle etc. when
- // dragging a tool handle.
- Rectangle
- {
- id: toolInfo
- x: visible ? -base.x + base.mouseX + UM.Theme.getSize("default_margin").width: 0
- y: visible ? -base.y + base.mouseY + UM.Theme.getSize("default_margin").height: 0
- width: toolHint.width + UM.Theme.getSize("default_margin").width
- height: toolHint.height;
- color: UM.Theme.getColor("tooltip")
- UM.Label
- {
- id: toolHint
- text: UM.ActiveTool.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : ""
- color: UM.Theme.getColor("tooltip_text")
- anchors.horizontalCenter: parent.horizontalCenter
- }
- visible: toolHint.text != ""
- }
- states: [
- State {
- name: "anchorAtTop"
- AnchorChanges {
- target: panelBorder
- anchors.top: base.top
- anchors.bottom: undefined
- }
- PropertyChanges {
- target: panelBorder
- anchors.topMargin: base.activeY
- }
- },
- State {
- name: "anchorAtBottom"
- AnchorChanges {
- target: panelBorder
- anchors.top: undefined
- anchors.bottom: base.top
- }
- PropertyChanges {
- target: panelBorder
- anchors.bottomMargin: {
- if (panelBorder.height > (base.activeY + UM.Theme.getSize("button").height)) {
- // panel is tall, align the top of the panel with the top of the first tool button
- return -panelBorder.height
- }
- // align the bottom of the panel with the bottom of the selected tool button
- return -(base.activeY + UM.Theme.getSize("button").height)
- }
- }
- }
- ]
- }
|