mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-23 22:29:41 +08:00
38 lines
1.3 KiB
QML
38 lines
1.3 KiB
QML
// Copyright (c) 2022 UltiMaker
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import UM 1.5 as UM
|
|
import Cura 1.7 as Cura
|
|
|
|
|
|
RecommendedSettingSection
|
|
{
|
|
id: enableAdhesionRow
|
|
|
|
title: catalog.i18nc("@label", "Adhesion")
|
|
icon: UM.Theme.getIcon("Adhesion")
|
|
enableSectionSwitchVisible: platformAdhesionType.properties.enabled === "True"
|
|
enableSectionSwitchChecked: platformAdhesionType.properties.value !== "skirt" && platformAdhesionType.properties.value !== "none"
|
|
enableSectionSwitchEnabled: recommendedPrintSetup.settingsEnabled
|
|
tooltipText: catalog.i18nc("@label", "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default.")
|
|
|
|
property var curaRecommendedMode: Cura.RecommendedMode {}
|
|
|
|
property UM.SettingPropertyProvider platformAdhesionType: UM.SettingPropertyProvider
|
|
{
|
|
containerStack: Cura.MachineManager.activeMachine
|
|
removeUnusedValue: false //Doesn't work with settings that are resolved.
|
|
key: "adhesion_type"
|
|
watchedProperties: [ "value", "resolve", "enabled" ]
|
|
storeIndex: 0
|
|
}
|
|
|
|
function onEnableSectionChanged(state)
|
|
{
|
|
curaRecommendedMode.setAdhesion(state)
|
|
}
|
|
}
|