mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-08 14:59:00 +08:00
127 lines
3.7 KiB
QML
127 lines
3.7 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls 2.3 as Controls2
|
|
import QtQuick.Controls.Styles 1.4
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.6 as Cura
|
|
|
|
Item
|
|
{
|
|
id: qualityRow
|
|
height: childrenRect.height
|
|
|
|
property real labelColumnWidth: Math.round(width / 3)
|
|
property real settingsColumnWidth: width - labelColumnWidth
|
|
|
|
// Here are the elements that are shown in the left column
|
|
|
|
Column
|
|
{
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
|
|
spacing: UM.Theme.getSize("default_margin").height
|
|
|
|
Controls2.ButtonGroup
|
|
{
|
|
id: activeProfileButtonGroup
|
|
exclusive: true
|
|
onClicked: Cura.IntentManager.selectIntent(button.modelData.intent_category, button.modelData.quality_type)
|
|
}
|
|
|
|
Item
|
|
{
|
|
height: childrenRect.height
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
Cura.IconWithText
|
|
{
|
|
id: profileLabel
|
|
source: UM.Theme.getIcon("category_layer_height")
|
|
text: catalog.i18nc("@label", "Profiles")
|
|
font: UM.Theme.getFont("medium")
|
|
width: labelColumnWidth
|
|
}
|
|
|
|
Cura.LabelBar
|
|
{
|
|
id: labelbar
|
|
anchors
|
|
{
|
|
left: profileLabel.right
|
|
right: parent.right
|
|
}
|
|
|
|
model: Cura.QualityProfilesDropDownMenuModel
|
|
modelKey: "layer_height"
|
|
}
|
|
}
|
|
|
|
|
|
Repeater
|
|
{
|
|
model: Cura.IntentCategoryModel {}
|
|
Item
|
|
{
|
|
anchors
|
|
{
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
height: intentCategoryLabel.height
|
|
|
|
Label
|
|
{
|
|
id: intentCategoryLabel
|
|
text: model.name
|
|
width: labelColumnWidth - UM.Theme.getSize("section_icon").width
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: UM.Theme.getSize("section_icon").width + UM.Theme.getSize("narrow_margin").width
|
|
font: UM.Theme.getFont("medium")
|
|
color: UM.Theme.getColor("text")
|
|
renderType: Text.NativeRendering
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
Cura.RadioCheckbar
|
|
{
|
|
anchors
|
|
{
|
|
left: intentCategoryLabel.right
|
|
right: parent.right
|
|
}
|
|
dataModel: model["qualities"]
|
|
buttonGroup: activeProfileButtonGroup
|
|
|
|
function checkedFunction(modelItem)
|
|
{
|
|
if(Cura.MachineManager.hasCustomQuality)
|
|
{
|
|
// When user created profile is active, no quality tickbox should be active.
|
|
return false
|
|
}
|
|
|
|
if(modelItem === null)
|
|
{
|
|
return false
|
|
}
|
|
return Cura.MachineManager.activeQualityType == modelItem.quality_type && Cura.MachineManager.activeIntentCategory == modelItem.intent_category
|
|
}
|
|
|
|
isCheckedFunction: checkedFunction
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
} |