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

Conflicts: cura/Machines/MaterialManager.py -> File was deleted in Master but I changed things for the lazy loading. cura/Machines/Models/BaseMaterialsModel.py -> I clarified documentation on a line above a place where a timer was added in between. Contributes to issue CURA-6793.
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from cura.Machines.Models.BaseMaterialsModel import BaseMaterialsModel
|
|
|
|
class GenericMaterialsModel(BaseMaterialsModel):
|
|
|
|
def __init__(self, parent = None):
|
|
super().__init__(parent)
|
|
self._onChanged()
|
|
|
|
def _update(self):
|
|
if not self._canUpdate():
|
|
return
|
|
super()._update()
|
|
|
|
item_list = []
|
|
|
|
for root_material_id, container_node in self._available_materials.items():
|
|
# Do not include the materials from a to-be-removed package
|
|
if bool(container_node.getMetaDataEntry("removed", False)):
|
|
continue
|
|
|
|
# Only add results for generic materials
|
|
if container_node.getMetaDataEntry("brand", "unknown").lower() != "generic":
|
|
continue
|
|
|
|
item = self._createMaterialItem(root_material_id, container_node)
|
|
if item:
|
|
item_list.append(item)
|
|
|
|
# Sort the item list alphabetically by name
|
|
item_list = sorted(item_list, key = lambda d: d["name"].upper())
|
|
|
|
self.setItems(item_list)
|