mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-09 03:09:00 +08:00

The InstanceContainer version of getAllKeys was first casting to a list but I removed that, because everywhere where we were using it we were casting it directly to a set. Contributes to issue CURA-5330.
94 lines
3.9 KiB
Python
94 lines
3.9 KiB
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty
|
|
|
|
from UM.Application import Application
|
|
|
|
|
|
class SimpleModeSettingsManager(QObject):
|
|
|
|
def __init__(self, parent = None):
|
|
super().__init__(parent)
|
|
|
|
self._machine_manager = Application.getInstance().getMachineManager()
|
|
self._is_profile_customized = False # True when default profile has user changes
|
|
self._is_profile_user_created = False # True when profile was custom created by user
|
|
|
|
self._machine_manager.activeStackValueChanged.connect(self._updateIsProfileCustomized)
|
|
self._machine_manager.activeQualityGroupChanged.connect(self._updateIsProfileUserCreated)
|
|
self._machine_manager.activeQualityChangesGroupChanged.connect(self._updateIsProfileUserCreated)
|
|
|
|
# update on create as the activeQualityChanged signal is emitted before this manager is created when Cura starts
|
|
self._updateIsProfileCustomized()
|
|
self._updateIsProfileUserCreated()
|
|
|
|
isProfileCustomizedChanged = pyqtSignal()
|
|
isProfileUserCreatedChanged = pyqtSignal()
|
|
|
|
@pyqtProperty(bool, notify = isProfileCustomizedChanged)
|
|
def isProfileCustomized(self):
|
|
return self._is_profile_customized
|
|
|
|
def _updateIsProfileCustomized(self):
|
|
user_setting_keys = set()
|
|
|
|
if not self._machine_manager.activeMachine:
|
|
return False
|
|
|
|
global_stack = self._machine_manager.activeMachine
|
|
|
|
# check user settings in the global stack
|
|
user_setting_keys.update(global_stack.userChanges.getAllKeys())
|
|
|
|
# check user settings in the extruder stacks
|
|
if global_stack.extruders:
|
|
for extruder_stack in global_stack.extruders.values():
|
|
user_setting_keys.update(extruder_stack.userChanges.getAllKeys())
|
|
|
|
# remove settings that are visible in recommended (we don't show the reset button for those)
|
|
for skip_key in self.__ignored_custom_setting_keys:
|
|
if skip_key in user_setting_keys:
|
|
user_setting_keys.remove(skip_key)
|
|
|
|
has_customized_user_settings = len(user_setting_keys) > 0
|
|
|
|
if has_customized_user_settings != self._is_profile_customized:
|
|
self._is_profile_customized = has_customized_user_settings
|
|
self.isProfileCustomizedChanged.emit()
|
|
|
|
@pyqtProperty(bool, notify = isProfileUserCreatedChanged)
|
|
def isProfileUserCreated(self):
|
|
return self._is_profile_user_created
|
|
|
|
def _updateIsProfileUserCreated(self):
|
|
quality_changes_keys = set()
|
|
|
|
if not self._machine_manager.activeMachine:
|
|
return False
|
|
|
|
global_stack = self._machine_manager.activeMachine
|
|
|
|
# check quality changes settings in the global stack
|
|
quality_changes_keys.update(global_stack.qualityChanges.getAllKeys())
|
|
|
|
# check quality changes settings in the extruder stacks
|
|
if global_stack.extruders:
|
|
for extruder_stack in global_stack.extruders.values():
|
|
quality_changes_keys.update(extruder_stack.qualityChanges.getAllKeys())
|
|
|
|
# check if the qualityChanges container is not empty (meaning it is a user created profile)
|
|
has_quality_changes = len(quality_changes_keys) > 0
|
|
|
|
if has_quality_changes != self._is_profile_user_created:
|
|
self._is_profile_user_created = has_quality_changes
|
|
self.isProfileUserCreatedChanged.emit()
|
|
|
|
# These are the settings included in the Simple ("Recommended") Mode, so only when the other settings have been
|
|
# changed, we consider it as a user customized profile in the Simple ("Recommended") Mode.
|
|
__ignored_custom_setting_keys = ["support_enable",
|
|
"infill_sparse_density",
|
|
"gradual_infill_steps",
|
|
"adhesion_type",
|
|
"support_extruder_nr"]
|