mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 16:15:52 +08:00
Add doc for MachineSettingsManager
This commit is contained in:
parent
397add861f
commit
82471a0e39
@ -1,11 +1,16 @@
|
|||||||
|
# Copyright (c) 2019 Ultimaker B.V.
|
||||||
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
|
||||||
from typing import Any, Dict, Optional, TYPE_CHECKING
|
from typing import Optional
|
||||||
|
|
||||||
from PyQt5.QtCore import Qt, QObject, pyqtSlot
|
from PyQt5.QtCore import QObject, pyqtSlot
|
||||||
|
|
||||||
from UM.i18n import i18nCatalog
|
from UM.i18n import i18nCatalog
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# This manager provides (convenience) functions to the Machine Settings Dialog QML to update certain machine settings.
|
||||||
|
#
|
||||||
class MachineSettingsManager(QObject):
|
class MachineSettingsManager(QObject):
|
||||||
|
|
||||||
def __init__(self, parent: Optional["QObject"] = None) -> None:
|
def __init__(self, parent: Optional["QObject"] = None) -> None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user