mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 15:25:02 +08:00
37 lines
988 B
Python
37 lines
988 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from typing import Optional
|
|
|
|
from PyQt5.QtCore import pyqtProperty, QObject
|
|
|
|
|
|
class MaterialOutputModel(QObject):
|
|
def __init__(self, guid: Optional[str], type: str, color: str, brand: str, name: str, parent = None) -> None:
|
|
super().__init__(parent)
|
|
self._guid = guid
|
|
self._type = type
|
|
self._color = color
|
|
self._brand = brand
|
|
self._name = name
|
|
|
|
@pyqtProperty(str, constant = True)
|
|
def guid(self) -> str:
|
|
return self._guid if self._guid else ""
|
|
|
|
@pyqtProperty(str, constant = True)
|
|
def type(self) -> str:
|
|
return self._type
|
|
|
|
@pyqtProperty(str, constant = True)
|
|
def brand(self) -> str:
|
|
return self._brand
|
|
|
|
@pyqtProperty(str, constant = True)
|
|
def color(self) -> str:
|
|
return self._color
|
|
|
|
@pyqtProperty(str, constant = True)
|
|
def name(self) -> str:
|
|
return self._name
|