1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Copyright (c) 2021 Ultimaker B.V.
- # Cura is released under the terms of the LGPLv3 or higher.
- from typing import Optional
- from .WelcomePagesModel import WelcomePagesModel
- class AddPrinterPagesModel(WelcomePagesModel):
- """This Qt ListModel is more or less the same the WelcomePagesModel, except that this model is only for adding a
- printer, so only the steps for adding a printer is included.
- """
- def __init__(self, application: "CuraApplication") -> None:
- super(AddPrinterPagesModel, self).__init__(application = application)
- def initialize(self, cancellable: bool = True) -> None:
- self._pages.append({"id": "add_network_or_local_printer",
- "page_url": self._getBuiltinWelcomePagePath("AddNetworkOrLocalPrinterContent.qml"),
- "next_page_id": "machine_actions",
- "next_page_button_text": self._catalog.i18nc("@action:button", "Add"),
- })
- self._pages.append({"id": "add_printer_by_ip",
- "page_url": self._getBuiltinWelcomePagePath("AddPrinterByIpContent.qml"),
- "next_page_id": "machine_actions",
- })
- self._pages.append({"id": "add_cloud_printers",
- "page_url": self._getBuiltinWelcomePagePath("AddCloudPrintersView.qml"),
- "is_final_page": True,
- "next_page_button_text": self._catalog.i18nc("@action:button", "Finish"),
- })
- self._pages.append({"id": "machine_actions",
- "page_url": self._getBuiltinWelcomePagePath("FirstStartMachineActionsContent.qml"),
- "should_show_function": self.shouldShowMachineActions,
- })
- if cancellable:
- self._pages[0]["previous_page_button_text"] = self._catalog.i18nc("@action:button", "Cancel")
- self.setItems(self._pages)
- __all__ = ["AddPrinterPagesModel"]
|