AddMachineWizard.qml 635 B

1234567891011121314151617181920212223242526
  1. // Copyright (c) 2015 Ultimaker B.V.
  2. // Cura is released under the terms of the AGPLv3 or higher.
  3. import QtQuick 2.2
  4. import QtQuick.Controls 1.1
  5. import QtQuick.Layouts 1.1
  6. import QtQuick.Window 2.1
  7. import UM 1.0 as UM
  8. UM.Wizard{
  9. // This part checks whether there is a printer -> if not some of the functions (delete for example) are disabled
  10. // This part is optional
  11. property bool printer: true
  12. firstRun: printer ? false : true
  13. //: Add Printer dialog title
  14. wizardTitle: qsTr("Add Printer")
  15. wizardPages: [
  16. {
  17. title: "Add Printer",
  18. page: "AddMachine.qml"
  19. }
  20. ]
  21. }