mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 21:59:37 +08:00

Add a connection to check when a setting was or not removed from the list of the added settings in the PerObjectSettings panel.
46 lines
1.0 KiB
QML
46 lines
1.0 KiB
QML
// Copyright (c) 2015 Ultimaker B.V.
|
|
// Uranium is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Controls.Styles 1.1
|
|
|
|
import UM 1.2 as UM
|
|
|
|
UM.TooltipArea
|
|
{
|
|
x: model.depth * UM.Theme.getSize("default_margin").width;
|
|
text: model.description;
|
|
|
|
width: childrenRect.width;
|
|
height: childrenRect.height;
|
|
|
|
CheckBox
|
|
{
|
|
id: check
|
|
|
|
text: definition.label
|
|
checked: addedSettingsModel.getVisible(model.key)
|
|
|
|
onClicked:
|
|
{
|
|
addedSettingsModel.setVisible(model.key, checked);
|
|
UM.ActiveTool.forceUpdate();
|
|
}
|
|
}
|
|
|
|
// When the user removes settings from the list addedSettingsModel, we need to recheck if the
|
|
// setting is visible or not to show a mark in the CheckBox.
|
|
Connections
|
|
{
|
|
target: addedSettingsModel
|
|
onVisibleCountChanged:
|
|
{
|
|
check.checked = addedSettingsModel.getVisible(model.key)
|
|
}
|
|
}
|
|
}
|
|
|
|
|