mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Added intent to the CuraContainerStack
CURA-6534
This commit is contained in:
parent
55c7f546b2
commit
2e71ce2710
1 changed files with 20 additions and 5 deletions
|
@ -87,6 +87,19 @@ class CuraContainerStack(ContainerStack):
|
||||||
def qualityChanges(self) -> InstanceContainer:
|
def qualityChanges(self) -> InstanceContainer:
|
||||||
return cast(InstanceContainer, self._containers[_ContainerIndexes.QualityChanges])
|
return cast(InstanceContainer, self._containers[_ContainerIndexes.QualityChanges])
|
||||||
|
|
||||||
|
## Set the intent container.
|
||||||
|
#
|
||||||
|
# \param new_intent The new intent container. It is expected to have a "type" metadata entry with the value "intent".
|
||||||
|
def setIntent(self, new_intent: InstanceContainer, postpone_emit: bool = False) -> None:
|
||||||
|
self.replaceContainer(_ContainerIndexes.Quality, new_intent, postpone_emit=postpone_emit)
|
||||||
|
|
||||||
|
## Get the quality container.
|
||||||
|
#
|
||||||
|
# \return The intent container. Should always be a valid container, but can be equal to the empty InstanceContainer.
|
||||||
|
@pyqtProperty(InstanceContainer, fset=setIntent, notify=pyqtContainersChanged)
|
||||||
|
def intent(self) -> InstanceContainer:
|
||||||
|
return cast(InstanceContainer, self._containers[_ContainerIndexes.Intent])
|
||||||
|
|
||||||
## Set the quality container.
|
## Set the quality container.
|
||||||
#
|
#
|
||||||
# \param new_quality The new quality container. It is expected to have a "type" metadata entry with the value "quality".
|
# \param new_quality The new quality container. It is expected to have a "type" metadata entry with the value "quality".
|
||||||
|
@ -330,16 +343,18 @@ class CuraContainerStack(ContainerStack):
|
||||||
class _ContainerIndexes:
|
class _ContainerIndexes:
|
||||||
UserChanges = 0
|
UserChanges = 0
|
||||||
QualityChanges = 1
|
QualityChanges = 1
|
||||||
Quality = 2
|
Intent = 2
|
||||||
Material = 3
|
Quality = 3
|
||||||
Variant = 4
|
Material = 4
|
||||||
DefinitionChanges = 5
|
Variant = 5
|
||||||
Definition = 6
|
DefinitionChanges = 6
|
||||||
|
Definition = 7
|
||||||
|
|
||||||
# Simple hash map to map from index to "type" metadata entry
|
# Simple hash map to map from index to "type" metadata entry
|
||||||
IndexTypeMap = {
|
IndexTypeMap = {
|
||||||
UserChanges: "user",
|
UserChanges: "user",
|
||||||
QualityChanges: "quality_changes",
|
QualityChanges: "quality_changes",
|
||||||
|
Intent: "intent",
|
||||||
Quality: "quality",
|
Quality: "quality",
|
||||||
Material: "material",
|
Material: "material",
|
||||||
Variant: "variant",
|
Variant: "variant",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue