// 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.0 import QtQuick.Controls 1.1 as OldControls import UM 1.3 as UM import Cura 1.6 as Cura Item { id: customPrintSetup property real padding: UM.Theme.getSize("default_margin").width property bool multipleExtruders: extrudersModel.count > 1 property var extrudersModel: CuraApplication.getExtrudersModel() Item { id: intent height: childrenRect.height anchors { top: parent.top topMargin: UM.Theme.getSize("default_margin").height left: parent.left leftMargin: parent.padding right: parent.right rightMargin: parent.padding } Label { id: profileLabel anchors { top: parent.top bottom: parent.bottom left: parent.left right: intentSelection.left } text: catalog.i18nc("@label", "Profile") font: UM.Theme.getFont("medium") renderType: Text.NativeRendering color: UM.Theme.getColor("text") verticalAlignment: Text.AlignVCenter } Button { id: intentSelection onClicked: menu.opened ? menu.close() : menu.open() text: generateActiveQualityText() anchors.right: parent.right width: UM.Theme.getSize("print_setup_big_item").width height: textLabel.contentHeight + 2 * UM.Theme.getSize("narrow_margin").height hoverEnabled: true contentItem: Label { id: textLabel text: intentSelection.text anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: intentSelection.verticalCenter height: contentHeight verticalAlignment: Text.AlignVCenter renderType: Text.NativeRendering } background: Rectangle { id: backgroundItem border.color: intentSelection.hovered ? UM.Theme.getColor("setting_control_border_highlight") : UM.Theme.getColor("setting_control_border") border.width: UM.Theme.getSize("default_lining").width radius: UM.Theme.getSize("default_radius").width color: UM.Theme.getColor("main_background") } function generateActiveQualityText() { var result = "" if(Cura.MachineManager.activeIntentCategory != "default") { result += Cura.MachineManager.activeIntentCategory + " - " } result += Cura.MachineManager.activeQualityOrQualityChangesName if (Cura.MachineManager.isActiveQualityExperimental) { result += " (Experimental)" } if (Cura.MachineManager.isActiveQualitySupported) { if (Cura.MachineManager.activeQualityLayerHeight > 0) { result += " " result += " - " result += Cura.MachineManager.activeQualityLayerHeight + "mm" result += "" } } return result } UM.SimpleButton { id: customisedSettings visible: Cura.MachineManager.hasUserSettings width: UM.Theme.getSize("print_setup_icon").width height: UM.Theme.getSize("print_setup_icon").height anchors.verticalCenter: parent.verticalCenter anchors.right: downArrow.left anchors.rightMargin: UM.Theme.getSize("default_margin").width color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button"); iconSource: UM.Theme.getIcon("star") onClicked: { forceActiveFocus(); Cura.Actions.manageProfiles.trigger() } onEntered: { var content = catalog.i18nc("@tooltip", "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager.") base.showTooltip(intent, Qt.point(-UM.Theme.getSize("default_margin").width, 0), content) } onExited: base.hideTooltip() } UM.RecolorImage { id: downArrow source: UM.Theme.getIcon("arrow_bottom") width: UM.Theme.getSize("standard_arrow").width height: UM.Theme.getSize("standard_arrow").height anchors { right: parent.right verticalCenter: parent.verticalCenter rightMargin: UM.Theme.getSize("default_margin").width } color: UM.Theme.getColor("setting_control_button") } } QualitiesWithIntentMenu { id: menu y: intentSelection.y + intentSelection.height x: intentSelection.x width: intentSelection.width } } UM.TabRow { id: tabBar visible: multipleExtruders // The tab row is only visible when there are more than 1 extruder anchors { top: intent.bottom topMargin: UM.Theme.getSize("default_margin").height left: parent.left leftMargin: parent.padding right: parent.right rightMargin: parent.padding } Repeater { id: repeater model: extrudersModel delegate: UM.TabRowButton { contentItem: Item { Cura.ExtruderIcon { anchors.horizontalCenter: parent.horizontalCenter materialColor: model.color extruderEnabled: model.enabled } } onClicked: { Cura.ExtruderManager.setActiveExtruderIndex(tabBar.currentIndex) } } } //When active extruder changes for some other reason, switch tabs. //Don't directly link currentIndex to Cura.ExtruderManager.activeExtruderIndex! //This causes a segfault in Qt 5.11. Something with VisualItemModel removing index -1. We have to use setCurrentIndex instead. Connections { target: Cura.ExtruderManager onActiveExtruderChanged: { tabBar.setCurrentIndex(Cura.ExtruderManager.activeExtruderIndex); } } //When the model of the extruders is rebuilt, the list of extruders is briefly emptied and rebuilt. //This causes the currentIndex of the tab to be in an invalid position which resets it to 0. //Therefore we need to change it back to what it was: The active extruder index. Connections { target: repeater.model onModelChanged: { tabBar.setCurrentIndex(Cura.ExtruderManager.activeExtruderIndex) } } } Rectangle { anchors { top: tabBar.visible ? tabBar.bottom : intent.bottom topMargin: -UM.Theme.getSize("default_lining").width left: parent.left leftMargin: parent.padding right: parent.right rightMargin: parent.padding bottom: parent.bottom } z: tabBar.z - 1 // Don't show the border when only one extruder border.color: tabBar.visible ? UM.Theme.getColor("lining") : "transparent" border.width: UM.Theme.getSize("default_lining").width color: UM.Theme.getColor("main_background") Cura.SettingView { anchors { fill: parent topMargin: UM.Theme.getSize("default_margin").height leftMargin: UM.Theme.getSize("default_margin").width // Small space for the scrollbar rightMargin: UM.Theme.getSize("narrow_margin").width // Compensate for the negative margin in the parent bottomMargin: UM.Theme.getSize("default_lining").width } } } }