mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-22 21:26:59 -07:00
387 lines
15 KiB
QML
387 lines
15 KiB
QML
// Copyright (c) 2017 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Controls.Styles 1.1
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
import "Menus"
|
|
|
|
Column
|
|
{
|
|
id: base;
|
|
|
|
property int currentExtruderIndex: ExtruderManager.activeExtruderIndex;
|
|
property bool currentExtruderVisible: extrudersList.visible;
|
|
|
|
spacing: UM.Theme.getSize("sidebar_margin").width * 0.9
|
|
|
|
signal showTooltip(Item item, point location, string text)
|
|
signal hideTooltip()
|
|
|
|
Item
|
|
{
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
visible: extruderSelectionRow.visible
|
|
height: UM.Theme.getSize("default_lining").height
|
|
width: height
|
|
}
|
|
|
|
Item
|
|
{
|
|
id: extruderSelectionRow
|
|
width: parent.width
|
|
height: UM.Theme.getSize("sidebar_tabs").height * 2 / 3
|
|
visible: machineExtruderCount.properties.value > 1 && !sidebar.monitoringPrint
|
|
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
leftMargin: UM.Theme.getSize("sidebar_margin").width * 0.7
|
|
right: parent.right
|
|
rightMargin: UM.Theme.getSize("sidebar_margin").width * 0.7
|
|
topMargin: UM.Theme.getSize("sidebar_margin").height
|
|
}
|
|
|
|
ListView
|
|
{
|
|
id: extrudersList
|
|
property var index: 0
|
|
|
|
height: UM.Theme.getSize("sidebar_header_mode_tabs").height
|
|
width: parent.width
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
leftMargin: UM.Theme.getSize("default_margin").width / 2
|
|
right: parent.right
|
|
rightMargin: UM.Theme.getSize("default_margin").width / 2
|
|
verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
ExclusiveGroup { id: extruderMenuGroup; }
|
|
|
|
orientation: ListView.Horizontal
|
|
|
|
model: Cura.ExtrudersModel { id: extrudersModel; addGlobal: false }
|
|
|
|
Connections
|
|
{
|
|
target: Cura.MachineManager
|
|
onGlobalContainerChanged: forceActiveFocus() // Changing focus applies the currently-being-typed values so it can change the displayed setting values.
|
|
}
|
|
|
|
delegate: Button
|
|
{
|
|
height: ListView.view.height
|
|
width: ListView.view.width / extrudersModel.rowCount()
|
|
|
|
text: model.name
|
|
tooltip: model.name
|
|
exclusiveGroup: extruderMenuGroup
|
|
checked: base.currentExtruderIndex == index
|
|
|
|
onClicked:
|
|
{
|
|
forceActiveFocus() // Changing focus applies the currently-being-typed values so it can change the displayed setting values.
|
|
ExtruderManager.setActiveExtruderIndex(index);
|
|
}
|
|
|
|
style: ButtonStyle
|
|
{
|
|
background: Item
|
|
{
|
|
Rectangle
|
|
{
|
|
anchors.fill: parent
|
|
border.width: control.checked ? UM.Theme.getSize("default_lining").width * 2 : UM.Theme.getSize("default_lining").width
|
|
border.color: (control.checked || control.pressed) ? UM.Theme.getColor("action_button_active_border") :
|
|
control.hovered ? UM.Theme.getColor("action_button_hovered_border") :
|
|
UM.Theme.getColor("action_button_border")
|
|
color: (control.checked || control.pressed) ? UM.Theme.getColor("action_button_active") :
|
|
control.hovered ? UM.Theme.getColor("action_button_hovered") :
|
|
UM.Theme.getColor("action_button")
|
|
Behavior on color { ColorAnimation { duration: 50; } }
|
|
}
|
|
|
|
Item
|
|
{
|
|
id: extruderButtonFace
|
|
anchors.centerIn: parent
|
|
width: {
|
|
var extruderTextWidth = extruderStaticText.visible ? extruderStaticText.width : 0;
|
|
var iconWidth = extruderIconItem.width;
|
|
return extruderTextWidth + iconWidth + UM.Theme.getSize("default_margin").width / 2;
|
|
}
|
|
|
|
// Static text "Extruder"
|
|
Text
|
|
{
|
|
id: extruderStaticText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.left: parent.left
|
|
|
|
color: (control.checked || control.pressed) ? UM.Theme.getColor("action_button_active_text") :
|
|
control.hovered ? UM.Theme.getColor("action_button_hovered_text") :
|
|
UM.Theme.getColor("action_button_text")
|
|
|
|
font: UM.Theme.getFont("large_nonbold")
|
|
text: catalog.i18nc("@label", "Extruder")
|
|
visible: width < (control.width - extruderIconItem.width - UM.Theme.getSize("default_margin").width)
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
// Everthing for the extruder icon
|
|
Item
|
|
{
|
|
id: extruderIconItem
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.right: parent.right
|
|
|
|
property var sizeToUse:
|
|
{
|
|
var minimumWidth = control.width < UM.Theme.getSize("button").width ? control.width : UM.Theme.getSize("button").width;
|
|
var minimumHeight = control.height < UM.Theme.getSize("button").height ? control.height : UM.Theme.getSize("button").height;
|
|
var minimumSize = minimumWidth < minimumHeight ? minimumWidth : minimumHeight;
|
|
minimumSize -= UM.Theme.getSize("default_margin").width / 2;
|
|
return minimumSize;
|
|
}
|
|
|
|
width: sizeToUse
|
|
height: sizeToUse
|
|
|
|
UM.RecolorImage {
|
|
id: mainCircle
|
|
anchors.fill: parent
|
|
|
|
sourceSize.width: parent.width
|
|
sourceSize.height: parent.width
|
|
source: UM.Theme.getIcon("extruder_button")
|
|
|
|
color: extruderNumberText.color
|
|
}
|
|
|
|
Text
|
|
{
|
|
id: extruderNumberText
|
|
anchors.centerIn: parent
|
|
text: index + 1;
|
|
color: (control.checked || control.pressed) ? UM.Theme.getColor("action_button_active_text") :
|
|
control.hovered ? UM.Theme.getColor("action_button_hovered_text") :
|
|
UM.Theme.getColor("action_button_text")
|
|
font: UM.Theme.getFont("default_bold")
|
|
}
|
|
|
|
// Material colour circle
|
|
// Only draw the filling colour of the material inside the SVG border.
|
|
Rectangle
|
|
{
|
|
anchors
|
|
{
|
|
right: parent.right
|
|
top: parent.top
|
|
rightMargin: parent.sizeToUse * 0.01
|
|
topMargin: parent.sizeToUse * 0.05
|
|
}
|
|
|
|
color: model.color
|
|
|
|
width: parent.width * 0.35
|
|
height: parent.height * 0.35
|
|
radius: width / 2
|
|
|
|
border.width: 1
|
|
border.color: UM.Theme.getColor("extruder_button_material_border")
|
|
|
|
opacity: !control.checked ? 0.6 : 1.0
|
|
}
|
|
}
|
|
}
|
|
}
|
|
label: Item {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Item
|
|
{
|
|
id: variantRowSpacer
|
|
height: UM.Theme.getSize("sidebar_margin").height / 4
|
|
width: height
|
|
visible: !extruderSelectionRow.visible
|
|
}
|
|
|
|
// Variant row
|
|
Item
|
|
{
|
|
id: variantRow
|
|
height: UM.Theme.getSize("sidebar_setup").height
|
|
visible: Cura.MachineManager.hasVariants && !sidebar.monitoringPrint && !sidebar.hideSettings
|
|
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
leftMargin: UM.Theme.getSize("sidebar_margin").width
|
|
right: parent.right
|
|
rightMargin: UM.Theme.getSize("sidebar_margin").width
|
|
}
|
|
|
|
Text
|
|
{
|
|
id: variantLabel
|
|
text: Cura.MachineManager.activeDefinitionVariantsName;
|
|
width: parent.width * 0.45 - UM.Theme.getSize("default_margin").width
|
|
font: UM.Theme.getFont("default");
|
|
color: UM.Theme.getColor("text");
|
|
}
|
|
|
|
property var variantsTerms: (Cura.BlackBeltPlugin == undefined) ? [] : JSON.parse(Cura.BlackBeltPlugin.variantsTerms)
|
|
|
|
ToolButton {
|
|
id: variantSelection
|
|
text: Cura.MachineManager.activeVariantName
|
|
tooltip: Cura.MachineManager.activeVariantName
|
|
visible: Cura.MachineManager.hasVariants && parent.variantsTerms.length == 0
|
|
|
|
height: UM.Theme.getSize("setting_control").height
|
|
width: parent.width * 0.7 + UM.Theme.getSize("sidebar_margin").width
|
|
anchors.right: parent.right
|
|
style: UM.Theme.styles.sidebar_header_button
|
|
activeFocusOnPress: true;
|
|
|
|
menu: NozzleMenu { extruderIndex: base.currentExtruderIndex }
|
|
}
|
|
|
|
Row
|
|
{
|
|
id: variantTermsSelection
|
|
visible: Cura.MachineManager.hasVariants && parent.variantsTerms.length > 0
|
|
spacing: UM.Theme.getSize("default_margin").width
|
|
|
|
width: parent.width * 0.7 + UM.Theme.getSize("sidebar_margin").width
|
|
height: UM.Theme.getSize("setting_control").height
|
|
anchors.right: parent.right
|
|
|
|
Repeater
|
|
{
|
|
id: variantTermsRepeater
|
|
model: variantRow.variantsTerms
|
|
|
|
ToolButton
|
|
{
|
|
id: termSelectionButton
|
|
text: "%1: %2".arg(model.modelData.name).arg(model.modelData.values[activeVariantTerm])
|
|
property var values: model.modelData.values
|
|
property string activeVariantTerm: Cura.BlackBeltPlugin && Cura.BlackBeltPlugin.activeVariantTerms.length > index ? Cura.BlackBeltPlugin.activeVariantTerms[index] : ""
|
|
property int termIndex: index
|
|
|
|
width: (variantTermsSelection.width - (variantTermsRepeater.count-1) * UM.Theme.getSize("default_margin").width) / variantTermsRepeater.count
|
|
height: UM.Theme.getSize("setting_control").height
|
|
style: UM.Theme.styles.sidebar_header_button
|
|
activeFocusOnPress: true;
|
|
|
|
menu: Menu
|
|
{
|
|
id: variantTermMenu
|
|
Instantiator
|
|
{
|
|
model: Object.keys(termSelectionButton.values)
|
|
MenuItem
|
|
{
|
|
text: termSelectionButton.values[model.modelData]
|
|
checkable: true
|
|
checked: activeVariantTerm == model.modelData
|
|
exclusiveGroup: variantTermGroup
|
|
onTriggered:
|
|
{
|
|
Cura.BlackBeltPlugin.setActiveVariantTerm(termSelectionButton.termIndex, model.modelData)
|
|
}
|
|
}
|
|
onObjectAdded: variantTermMenu.insertItem(index, object)
|
|
onObjectRemoved: variantTermMenu.removeItem(object)
|
|
}
|
|
ExclusiveGroup { id: variantTermGroup }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Material Row
|
|
Item
|
|
{
|
|
id: materialRow
|
|
height: UM.Theme.getSize("sidebar_setup").height
|
|
visible: Cura.MachineManager.hasMaterials && !sidebar.monitoringPrint && !sidebar.hideSettings
|
|
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
leftMargin: UM.Theme.getSize("sidebar_margin").width
|
|
right: parent.right
|
|
rightMargin: UM.Theme.getSize("sidebar_margin").width
|
|
}
|
|
|
|
Text
|
|
{
|
|
id: materialLabel
|
|
text: catalog.i18nc("@label","Material");
|
|
width: parent.width * 0.45 - UM.Theme.getSize("default_margin").width
|
|
font: UM.Theme.getFont("default");
|
|
color: UM.Theme.getColor("text");
|
|
}
|
|
|
|
ToolButton {
|
|
id: materialSelection
|
|
text: Cura.MachineManager.activeMaterialName
|
|
tooltip: Cura.MachineManager.activeMaterialName
|
|
visible: Cura.MachineManager.hasMaterials
|
|
property var valueError:
|
|
{
|
|
var data = Cura.ContainerManager.getContainerMetaDataEntry(Cura.MachineManager.activeMaterialId, "compatible")
|
|
if(data == "False")
|
|
{
|
|
return true
|
|
}
|
|
else
|
|
{
|
|
return false
|
|
}
|
|
|
|
}
|
|
property var valueWarning: ! Cura.MachineManager.isActiveQualitySupported
|
|
|
|
enabled: !extrudersList.visible || base.currentExtruderIndex > -1
|
|
|
|
height: UM.Theme.getSize("setting_control").height
|
|
width: parent.width * 0.7 + UM.Theme.getSize("sidebar_margin").width
|
|
anchors.right: parent.right
|
|
style: UM.Theme.styles.sidebar_header_button
|
|
activeFocusOnPress: true;
|
|
|
|
menu: MaterialMenu { extruderIndex: base.currentExtruderIndex }
|
|
}
|
|
}
|
|
|
|
UM.SettingPropertyProvider
|
|
{
|
|
id: machineExtruderCount
|
|
|
|
containerStackId: Cura.MachineManager.activeMachineId
|
|
key: "machine_extruder_count"
|
|
watchedProperties: [ "value" ]
|
|
storeIndex: 0
|
|
}
|
|
|
|
UM.I18nCatalog { id: catalog; name:"cura" }
|
|
}
|