mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 23:34:32 +08:00
275 lines
10 KiB
QML
275 lines
10 KiB
QML
// Copyright (c) 2022 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
|
|
import UM 1.5 as UM
|
|
import Cura 1.6 as Cura
|
|
|
|
Popup
|
|
{
|
|
id: popup
|
|
implicitWidth: 400
|
|
property var dataModel: Cura.IntentCategoryModel {}
|
|
|
|
property int defaultMargin: UM.Theme.getSize("default_margin").width
|
|
property color backgroundColor: UM.Theme.getColor("main_background")
|
|
property color borderColor: UM.Theme.getColor("lining")
|
|
|
|
topPadding: UM.Theme.getSize("narrow_margin").height
|
|
rightPadding: UM.Theme.getSize("default_lining").width
|
|
leftPadding: UM.Theme.getSize("default_lining").width
|
|
|
|
padding: 0
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
|
|
background: Cura.RoundedRectangle
|
|
{
|
|
color: backgroundColor
|
|
border.width: UM.Theme.getSize("default_lining").width
|
|
border.color: borderColor
|
|
cornerSide: Cura.RoundedRectangle.Direction.Down
|
|
}
|
|
|
|
ButtonGroup
|
|
{
|
|
id: buttonGroup
|
|
exclusive: true
|
|
onClicked: popup.visible = false
|
|
}
|
|
|
|
contentItem: Column
|
|
{
|
|
// This repeater adds the intent labels
|
|
ScrollView
|
|
{
|
|
id: qualityListScrollView
|
|
property real maximumHeight: screenScaleFactor * 400
|
|
contentHeight: dataColumn.height
|
|
height: Math.min(contentHeight, maximumHeight)
|
|
width: parent.width
|
|
|
|
clip: true
|
|
ScrollBar.vertical: UM.ScrollBar
|
|
{
|
|
id: qualityListScrollBar
|
|
parent: qualityListScrollView
|
|
anchors
|
|
{
|
|
top: parent.top
|
|
right: parent.right
|
|
bottom: parent.bottom
|
|
}
|
|
}
|
|
|
|
Column
|
|
{
|
|
id: dataColumn
|
|
width: qualityListScrollView.width - qualityListScrollBar.width
|
|
Repeater
|
|
{
|
|
model: dataModel
|
|
delegate: Item
|
|
{
|
|
// We need to set it like that, otherwise we'd have to set the sub model with model: model.qualities
|
|
// Which obviously won't work due to naming conflicts.
|
|
property variant subItemModel: model.qualities
|
|
|
|
height: childrenRect.height
|
|
width: dataColumn.width
|
|
|
|
UM.Label
|
|
{
|
|
id: headerLabel
|
|
text: model.name
|
|
color: UM.Theme.getColor("text_inactive")
|
|
width: parent.width
|
|
height: visible ? contentHeight: 0
|
|
visible: qualitiesList.visibleChildren.length > 0
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
|
|
|
MouseArea // tooltip hover area
|
|
{
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
enabled: model.description !== undefined
|
|
acceptedButtons: Qt.NoButton // react to hover only, don't steal clicks
|
|
|
|
onEntered:
|
|
{
|
|
base.showTooltip(
|
|
headerLabel,
|
|
Qt.point(- UM.Theme.getSize("default_margin").width, 0),
|
|
model.description
|
|
)
|
|
}
|
|
onExited: base.hideTooltip()
|
|
}
|
|
}
|
|
|
|
Column
|
|
{
|
|
id: qualitiesList
|
|
anchors.top: headerLabel.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
// Add the qualities that belong to the intent
|
|
Repeater
|
|
{
|
|
visible: false
|
|
model: subItemModel
|
|
MenuButton
|
|
{
|
|
id: button
|
|
|
|
onClicked: Cura.IntentManager.selectIntent(model.intent_category, model.quality_type)
|
|
|
|
width: parent.width
|
|
checkable: true
|
|
visible: model.available
|
|
text: model.name + " - " + model.layer_height + " mm"
|
|
leftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width
|
|
checked:
|
|
{
|
|
if (Cura.MachineManager.hasCustomQuality)
|
|
{
|
|
// When user created profile is active, no quality tickbox should be active.
|
|
return false;
|
|
}
|
|
return Cura.MachineManager.activeQualityType == model.quality_type && Cura.MachineManager.activeIntentCategory == model.intent_category;
|
|
}
|
|
ButtonGroup.group: buttonGroup
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//Another "intent category" for custom profiles.
|
|
Item
|
|
{
|
|
height: childrenRect.height
|
|
width: dataColumn.width
|
|
|
|
UM.Label
|
|
{
|
|
id: customProfileHeader
|
|
text: catalog.i18nc("@label:header", "Custom profiles")
|
|
height: visible ? contentHeight: 0
|
|
enabled: false
|
|
visible: profilesList.visibleChildren.length > 1
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
|
color: UM.Theme.getColor("text_inactive")
|
|
}
|
|
|
|
Column
|
|
{
|
|
id: profilesList
|
|
anchors
|
|
{
|
|
top: customProfileHeader.bottom
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
|
|
//We set it by means of a binding, since then we can use the
|
|
//"when" condition, which we need to prevent a binding loop.
|
|
Binding
|
|
{
|
|
target: parent
|
|
property: "height"
|
|
value: parent.childrenRect.height
|
|
when: parent.visibleChildren.length > 1
|
|
}
|
|
|
|
//Add all the custom profiles.
|
|
Repeater
|
|
{
|
|
model: Cura.CustomQualityProfilesDropDownMenuModel
|
|
MenuButton
|
|
{
|
|
onClicked: Cura.MachineManager.setQualityChangesGroup(model.quality_changes_group)
|
|
|
|
width: parent.width
|
|
checkable: true
|
|
visible: model.available
|
|
text: model.name
|
|
leftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width
|
|
checked:
|
|
{
|
|
var active_quality_group = Cura.MachineManager.activeQualityChangesGroup
|
|
|
|
if (active_quality_group != null)
|
|
{
|
|
return active_quality_group.name == model.quality_changes_group.name
|
|
}
|
|
return false
|
|
}
|
|
ButtonGroup.group: buttonGroup
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle
|
|
{
|
|
height: UM.Theme.getSize("default_lining").height
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
color: borderColor
|
|
}
|
|
|
|
MenuButton
|
|
{
|
|
id: manageProfilesButton
|
|
text: Cura.Actions.manageProfiles.text
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
|
|
height: textLabel.contentHeight + UM.Theme.getSize("default_margin").height
|
|
|
|
contentItem: Item
|
|
{
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
UM.Label
|
|
{
|
|
id: textLabel
|
|
text: manageProfilesButton.text
|
|
height: contentHeight
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
UM.Label
|
|
{
|
|
id: shortcutLabel
|
|
text: Cura.Actions.manageProfiles.shortcut
|
|
color: UM.Theme.getColor("text_lighter")
|
|
height: contentHeight
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
|
}
|
|
}
|
|
onClicked:
|
|
{
|
|
popup.visible = false
|
|
Cura.Actions.manageProfiles.trigger()
|
|
}
|
|
}
|
|
// spacer
|
|
Item
|
|
{
|
|
width: 2
|
|
height: UM.Theme.getSize("default_radius").width
|
|
}
|
|
}
|
|
}
|