mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-24 23:29:00 +08:00
22 lines
876 B
Python
22 lines
876 B
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from cura.PrinterOutput.Models.PrintJobOutputModel import PrintJobOutputModel
|
|
from cura.PrinterOutput.PrinterOutputController import PrinterOutputController
|
|
from cura.PrinterOutput.PrinterOutputDevice import PrinterOutputDevice
|
|
|
|
|
|
class ClusterOutputController(PrinterOutputController):
|
|
|
|
def __init__(self, output_device: PrinterOutputDevice) -> None:
|
|
super().__init__(output_device)
|
|
self.can_pause = True
|
|
self.can_abort = True
|
|
self.can_pre_heat_bed = False
|
|
self.can_pre_heat_hotends = False
|
|
self.can_send_raw_gcode = False
|
|
self.can_control_manually = False
|
|
self.can_update_firmware = False
|
|
|
|
def setJobState(self, job: PrintJobOutputModel, state: str):
|
|
self._output_device.setJobState(job.key, state)
|