123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- // Copyright (c) 2016 Ultimaker B.V.
- // Cura is released under the terms of the LGPLv3 or higher.
- import QtQuick 2.1
- import QtQuick.Controls 1.1
- import QtQuick.Dialogs 1.2
- import UM 1.2 as UM
- import Cura 1.0 as Cura
- UM.ManagementPage
- {
- id: base;
- title: catalog.i18nc("@title:tab", "Profiles");
- property var extrudersModel: Cura.ExtrudersModel{}
- model: Cura.QualityAndUserProfilesModel { }
- section.property: "readOnly"
- section.delegate: Rectangle
- {
- height: childrenRect.height;
- Label
- {
- anchors.left: parent.left;
- anchors.leftMargin: UM.Theme.getSize("default_lining").width;
- text: section == "true" ? catalog.i18nc("@label", "Protected profiles") : catalog.i18nc("@label", "Custom profiles")
- font.bold: true
- }
- }
- activeId: Cura.MachineManager.activeQualityId
- activeIndex: {
- for(var i = 0; i < model.rowCount(); i++) {
- if (model.getItem(i).id == Cura.MachineManager.activeQualityId) {
- return i;
- }
- }
- return -1;
- }
- function canCreateProfile() {
- return base.currentItem && (base.currentItem.id == Cura.MachineManager.activeQualityId) && Cura.MachineManager.hasUserSettings;
- }
- buttons: [
- Button
- {
- text: catalog.i18nc("@action:button", "Activate");
- iconName: "list-activate";
- enabled: base.currentItem != null ? base.currentItem.id != Cura.MachineManager.activeQualityId : false;
- onClicked:
- {
- Cura.MachineManager.setActiveQuality(base.currentItem.id)
- currentItem = base.model.getItem(base.objectList.currentIndex) // Refresh the current item.
- }
- },
- // Create button
- Button
- {
- text: catalog.i18nc("@label", "Create")
- enabled: base.canCreateProfile() && !Cura.MachineManager.stacksHaveErrors
- visible: base.canCreateProfile()
- iconName: "list-add";
- onClicked:
- {
- newNameDialog.object = base.currentItem != null ? Cura.ContainerManager.makeUniqueName(base.currentItem.name) : "";
- newNameDialog.open();
- newNameDialog.selectText();
- }
- },
- // Duplicate button
- Button
- {
- text: catalog.i18nc("@label", "Duplicate")
- enabled: ! base.canCreateProfile()
- visible: ! base.canCreateProfile()
- iconName: "list-add";
- onClicked:
- {
- newDuplicateNameDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name);
- newDuplicateNameDialog.open();
- newDuplicateNameDialog.selectText();
- }
- },
- Button
- {
- text: catalog.i18nc("@action:button", "Remove");
- iconName: "list-remove";
- enabled: base.currentItem != null ? !base.currentItem.readOnly && !Cura.ContainerManager.isContainerUsed(base.currentItem.id) : false;
- onClicked: confirmDialog.open();
- },
- Button
- {
- text: catalog.i18nc("@action:button", "Rename");
- iconName: "edit-rename";
- enabled: base.currentItem != null ? !base.currentItem.readOnly : false;
- onClicked:
- {
- renameDialog.open();
- renameDialog.selectText();
- }
- },
- Button
- {
- text: catalog.i18nc("@action:button", "Import");
- iconName: "document-import";
- onClicked: importDialog.open();
- },
- Button
- {
- text: catalog.i18nc("@action:button", "Export")
- iconName: "document-export"
- onClicked: exportDialog.open()
- enabled: currentItem != null && !base.currentItem.readOnly
- }
- ]
- scrollviewCaption: catalog.i18nc("@label %1 is printer name","Printer: %1").arg(Cura.MachineManager.activeMachineName)
- signal createProfile()
- onCreateProfile:
- {
- newNameDialog.object = base.currentItem != null ? Cura.ContainerManager.makeUniqueName(base.currentItem.name) : "";
- newNameDialog.open();
- newNameDialog.selectText();
- }
- signal selectContainer(string name)
- onSelectContainer:
- {
- objectList.currentIndex = objectList.model.find("name", name);
- }
- Item {
- visible: base.currentItem != null
- anchors.fill: parent
- Label {
- id: profileName
- text: base.currentItem ? base.currentItem.name: ""
- font: UM.Theme.getFont("large")
- width: parent.width
- elide: Text.ElideRight
- }
- Flow {
- id: currentSettingsActions
- visible: currentItem && currentItem.id == Cura.MachineManager.activeQualityId
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.top: profileName.bottom
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- Button
- {
- text: {
- return catalog.i18nc("@action:button", "Update profile with current settings/overrides");
- }
- enabled: Cura.MachineManager.hasUserSettings && !Cura.MachineManager.isReadOnly(Cura.MachineManager.activeQualityId)
- onClicked: Cura.ContainerManager.updateQualityChanges()
- }
- Button
- {
- text: catalog.i18nc("@action:button", "Discard current changes");
- enabled: Cura.MachineManager.hasUserSettings
- onClicked: Cura.ContainerManager.clearUserContainers();
- }
- }
- Column {
- id: profileNotices
- anchors.top: currentSettingsActions.visible ? currentSettingsActions.bottom : currentSettingsActions.anchors.top
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- anchors.left: parent.left
- anchors.right: parent.right
- spacing: UM.Theme.getSize("default_margin").height
- Label {
- id: defaultsMessage
- visible: false
- text: catalog.i18nc("@action:label", "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below.")
- wrapMode: Text.WordWrap
- width: parent.width
- }
- Label {
- id: noCurrentSettingsMessage
- visible: currentItem && currentItem.id == Cura.MachineManager.activeQualityId && !Cura.MachineManager.hasUserSettings
- text: catalog.i18nc("@action:label", "Your current settings match the selected profile.")
- wrapMode: Text.WordWrap
- width: parent.width
- }
- }
- TabView
- {
- anchors.left: parent.left
- anchors.top: profileNotices.visible ? profileNotices.bottom : profileNotices.anchors.top
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- anchors.right: parent.right
- anchors.bottom: parent.bottom
- currentIndex: ExtruderManager.extruderCount > 0 ? ExtruderManager.activeExtruderIndex + 1 : 0
- ProfileTab
- {
- title: catalog.i18nc("@title:tab", "Global Settings");
- quality: base.currentItem != null ? base.currentItem.id : "";
- material: Cura.MachineManager.allActiveMaterialIds[Cura.MachineManager.activeMachineId]
- }
- Repeater
- {
- model: base.extrudersModel
- ProfileTab
- {
- title: model.name;
- extruderId: model.id;
- extruderDefinition: model.definition;
- quality: base.currentItem != null ? base.currentItem.id : "";
- material: Cura.MachineManager.allActiveMaterialIds[model.id]
- }
- }
- }
- }
- Item
- {
- UM.I18nCatalog { id: catalog; name: "cura"; }
- UM.ConfirmRemoveDialog
- {
- id: confirmDialog
- object: base.currentItem != null ? base.currentItem.name : ""
- onYes:
- {
- var name = base.currentItem.name;
- Cura.ContainerManager.removeQualityChanges(name)
- if(Cura.MachineManager.activeQualityName == name)
- {
- Cura.MachineManager.setActiveQuality(base.model.getItem(0).name)
- }
- objectList.currentIndex = -1 //Reset selection.
- }
- }
- UM.RenameDialog
- {
- title: catalog.i18nc("@title:window", "Rename Profile")
- id: renameDialog;
- object: base.currentItem != null ? base.currentItem.name : ""
- onAccepted:
- {
- Cura.ContainerManager.renameQualityChanges(base.currentItem.name, newName)
- objectList.currentIndex = -1 //Reset selection.
- }
- }
- // Dialog to request a name when creating a new profile
- UM.RenameDialog
- {
- title: catalog.i18nc("@title:window", "Create Profile")
- id: newNameDialog;
- object: "<new name>";
- onAccepted:
- {
- var selectedContainer = Cura.ContainerManager.createQualityChanges(newName);
- base.selectContainer(selectedContainer);
- objectList.currentIndex = -1 //Reset selection.
- }
- }
- // Dialog to request a name when duplicating a new profile
- UM.RenameDialog
- {
- title: catalog.i18nc("@title:window", "Duplicate Profile")
- id: newDuplicateNameDialog;
- object: "<new name>";
- onAccepted:
- {
- var selectedContainer = Cura.ContainerManager.duplicateQualityOrQualityChanges(base.currentItem.name, newName);
- base.selectContainer(selectedContainer);
- objectList.currentIndex = -1 //Reset selection.
- }
- }
- MessageDialog
- {
- id: messageDialog
- title: catalog.i18nc("@window:title", "Import Profile");
- standardButtons: StandardButton.Ok
- modality: Qt.ApplicationModal
- }
- FileDialog
- {
- id: importDialog;
- title: catalog.i18nc("@title:window", "Import Profile");
- selectExisting: true;
- nameFilters: base.model.getFileNameFilters("profile_reader")
- folder: CuraApplication.getDefaultPath("dialog_profile_path")
- onAccepted:
- {
- var result = Cura.ContainerManager.importProfile(fileUrl);
- messageDialog.text = result.message
- if(result.status == "ok")
- {
- messageDialog.icon = StandardIcon.Information
- }
- else if(result.status == "duplicate")
- {
- messageDialog.icon = StandardIcon.Warning
- }
- else
- {
- messageDialog.icon = StandardIcon.Critical
- }
- messageDialog.open()
- CuraApplication.setDefaultPath("dialog_profile_path", folder)
- }
- }
- FileDialog
- {
- id: exportDialog;
- title: catalog.i18nc("@title:window", "Export Profile");
- selectExisting: false;
- nameFilters: base.model.getFileNameFilters("profile_writer")
- folder: CuraApplication.getDefaultPath("dialog_profile_path")
- onAccepted:
- {
- var containers = Cura.ContainerManager.findInstanceContainers({"type": "quality_changes", "name": base.currentItem.name})
- var result = Cura.ContainerManager.exportProfile(containers, fileUrl, selectedNameFilter)
- if(result && result.status == "error")
- {
- messageDialog.icon = StandardIcon.Critical
- messageDialog.text = result.message
- messageDialog.open()
- }
- // else pop-up Message thing from python code
- CuraApplication.setDefaultPath("dialog_profile_path", folder)
- }
- }
- }
- }
|