123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628 |
- // Copyright (c) 2019 Ultimaker B.V.
- // Uranium is released under the terms of the LGPLv3 or higher.
- import QtQuick 2.7
- import QtQuick.Controls 1.4
- import QtQuick.Layouts 1.3
- import QtQuick.Dialogs 1.2
- import UM 1.2 as UM
- import Cura 1.6 as Cura
- Item
- {
- id: base
- property var resetEnabled: false // Keep PreferencesDialog happy
- property var extrudersModel: CuraApplication.getExtrudersModel()
- property var qualityManagementModel: CuraApplication.getQualityManagementModel()
- UM.I18nCatalog { id: catalog; name: "cura"; }
- Label
- {
- id: titleLabel
- anchors
- {
- top: parent.top
- left: parent.left
- right: parent.right
- margins: 5 * screenScaleFactor
- }
- font.pointSize: 18
- text: catalog.i18nc("@title:tab", "Profiles")
- }
- property var hasCurrentItem: base.currentItem != null
- property var currentItem:
- {
- var current_index = qualityListView.currentIndex;
- return (current_index == -1) ? null : base.qualityManagementModel.getItem(current_index);
- }
- property var currentItemName: hasCurrentItem ? base.currentItem.name : ""
- property var currentItemDisplayName: hasCurrentItem ? base.qualityManagementModel.getQualityItemDisplayName(base.currentItem) : ""
- property var isCurrentItemActivated:
- {
- if (!base.currentItem)
- {
- return false;
- }
- if (base.currentItem.is_read_only)
- {
- return (base.currentItem.name == Cura.MachineManager.activeQualityOrQualityChangesName) && (base.currentItem.intent_category == Cura.MachineManager.activeIntentCategory);
- }
- else
- {
- return base.currentItem.name == Cura.MachineManager.activeQualityOrQualityChangesName;
- }
- }
- property var canCreateProfile:
- {
- return isCurrentItemActivated && Cura.MachineManager.hasUserSettings;
- }
- Row // Button Row
- {
- id: buttonRow
- anchors
- {
- left: parent.left
- right: parent.right
- top: titleLabel.bottom
- }
- height: childrenRect.height
- // Activate button
- Button
- {
- id: activateMenuButton
- text: catalog.i18nc("@action:button", "Activate")
- iconName: "list-activate"
- enabled: !isCurrentItemActivated && base.currentItem
- onClicked:
- {
- if(base.currentItem.is_read_only)
- {
- Cura.IntentManager.selectIntent(base.currentItem.intent_category, base.currentItem.quality_type);
- }
- else
- {
- Cura.MachineManager.setQualityChangesGroup(base.currentItem.quality_changes_group);
- }
- }
- }
- // Create button
- Button
- {
- id: createMenuButton
- text: catalog.i18nc("@label", "Create")
- iconName: "list-add"
- enabled: base.canCreateProfile && !Cura.MachineManager.stacksHaveErrors
- visible: base.canCreateProfile
- onClicked:
- {
- createQualityDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name);
- createQualityDialog.open();
- createQualityDialog.selectText();
- }
- }
- // Duplicate button
- Button
- {
- id: duplicateMenuButton
- text: catalog.i18nc("@label", "Duplicate")
- iconName: "list-add"
- enabled: !base.canCreateProfile
- visible: !base.canCreateProfile
- onClicked:
- {
- duplicateQualityDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name);
- duplicateQualityDialog.open();
- duplicateQualityDialog.selectText();
- }
- }
- // Remove button
- Button
- {
- id: removeMenuButton
- text: catalog.i18nc("@action:button", "Remove")
- iconName: "list-remove"
- enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated
- onClicked:
- {
- forceActiveFocus();
- confirmRemoveQualityDialog.open();
- }
- }
- // Rename button
- Button
- {
- id: renameMenuButton
- text: catalog.i18nc("@action:button", "Rename")
- iconName: "edit-rename"
- enabled: base.hasCurrentItem && !base.currentItem.is_read_only
- onClicked:
- {
- renameQualityDialog.object = base.currentItem.name;
- renameQualityDialog.open();
- renameQualityDialog.selectText();
- }
- }
- // Import button
- Button
- {
- id: importMenuButton
- text: catalog.i18nc("@action:button", "Import")
- iconName: "document-import"
- onClicked:
- {
- importDialog.open();
- }
- }
- // Export button
- Button
- {
- id: exportMenuButton
- text: catalog.i18nc("@action:button", "Export")
- iconName: "document-export"
- enabled: base.hasCurrentItem && !base.currentItem.is_read_only
- onClicked:
- {
- exportDialog.open();
- }
- }
- }
- // Click create profile from ... in Profile context menu
- signal createProfile()
- onCreateProfile:
- {
- createQualityDialog.object = Cura.ContainerManager.makeUniqueName(Cura.MachineManager.activeQualityOrQualityChangesName);
- createQualityDialog.open();
- createQualityDialog.selectText();
- }
- // Dialog to request a name when creating a new profile
- UM.RenameDialog
- {
- id: createQualityDialog
- title: catalog.i18nc("@title:window", "Create Profile")
- object: "<new name>"
- explanation: catalog.i18nc("@info", "Please provide a name for this profile.")
- onAccepted:
- {
- base.newQualityNameToSelect = newName; // We want to switch to the new profile once it's created
- base.toActivateNewQuality = true;
- base.qualityManagementModel.createQualityChanges(newName);
- }
- }
- property string newQualityNameToSelect: ""
- property bool toActivateNewQuality: false
- // This connection makes sure that we will switch to the correct quality after the model gets updated
- Connections
- {
- target: base.qualityManagementModel
- onItemsChanged:
- {
- var toSelectItemName = base.currentItem == null ? "" : base.currentItem.name;
- if (newQualityNameToSelect != "")
- {
- toSelectItemName = newQualityNameToSelect;
- }
- var newIdx = -1; // Default to nothing if nothing can be found
- if (toSelectItemName != "")
- {
- // Select the required quality name if given
- for (var idx = 0; idx < base.qualityManagementModel.count; ++idx)
- {
- var item = base.qualityManagementModel.getItem(idx);
- if (item && item.name == toSelectItemName)
- {
- // Switch to the newly created profile if needed
- newIdx = idx;
- if (base.toActivateNewQuality)
- {
- // Activate this custom quality if required
- if(item.quality_changes_group)
- {
- Cura.MachineManager.setQualityChangesGroup(item.quality_changes_group);
- }
- }
- break;
- }
- }
- }
- qualityListView.currentIndex = newIdx;
- // Reset states
- base.newQualityNameToSelect = "";
- base.toActivateNewQuality = false;
- }
- }
- // Dialog to request a name when duplicating a new profile
- UM.RenameDialog
- {
- id: duplicateQualityDialog
- title: catalog.i18nc("@title:window", "Duplicate Profile")
- object: "<new name>"
- onAccepted:
- {
- base.qualityManagementModel.duplicateQualityChanges(newName, base.currentItem);
- }
- }
- // Confirmation dialog for removing a profile
- MessageDialog
- {
- id: confirmRemoveQualityDialog
- icon: StandardIcon.Question;
- title: catalog.i18nc("@title:window", "Confirm Remove")
- text: catalog.i18nc("@label (%1 is object name)", "Are you sure you wish to remove %1? This cannot be undone!").arg(base.currentItemName)
- standardButtons: StandardButton.Yes | StandardButton.No
- modality: Qt.ApplicationModal
- onYes:
- {
- base.qualityManagementModel.removeQualityChangesGroup(base.currentItem.quality_changes_group);
- // reset current item to the first if available
- qualityListView.currentIndex = -1; // Reset selection.
- }
- }
- // Dialog to rename a quality profile
- UM.RenameDialog
- {
- id: renameQualityDialog
- title: catalog.i18nc("@title:window", "Rename Profile")
- object: "<new name>"
- onAccepted:
- {
- var actualNewName = base.qualityManagementModel.renameQualityChangesGroup(base.currentItem.quality_changes_group, newName);
- base.newQualityNameToSelect = actualNewName; // Select the new name after the model gets updated
- }
- }
- // Dialog for importing a quality profile
- FileDialog
- {
- id: importDialog
- title: catalog.i18nc("@title:window", "Import Profile")
- selectExisting: true
- nameFilters: base.qualityManagementModel.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 == "warning" || result.status == "duplicate")
- {
- messageDialog.icon = StandardIcon.Warning;
- }
- else
- {
- messageDialog.icon = StandardIcon.Critical;
- }
- messageDialog.open();
- CuraApplication.setDefaultPath("dialog_profile_path", folder);
- }
- }
- // Dialog for exporting a quality profile
- FileDialog
- {
- id: exportDialog
- title: catalog.i18nc("@title:window", "Export Profile")
- selectExisting: false
- nameFilters: base.qualityManagementModel.getFileNameFilters("profile_writer")
- folder: CuraApplication.getDefaultPath("dialog_profile_path")
- onAccepted:
- {
- var result = Cura.ContainerManager.exportQualityChangesGroup(base.currentItem.quality_changes_group,
- 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);
- }
- }
- Item
- {
- id: contentsItem
- anchors
- {
- top: titleLabel.bottom
- left: parent.left
- right: parent.right
- bottom: parent.bottom
- margins: 5 * screenScaleFactor
- bottomMargin: 0
- }
- clip: true
- }
- Item
- {
- anchors
- {
- top: buttonRow.bottom
- topMargin: UM.Theme.getSize("default_margin").height
- left: parent.left
- right: parent.right
- bottom: parent.bottom
- }
- SystemPalette
- {
- id: palette
- }
- Label
- {
- id: captionLabel
- anchors
- {
- top: parent.top
- left: parent.left
- }
- visible: text != ""
- text: catalog.i18nc("@label %1 is printer name", "Printer: %1").arg(Cura.MachineManager.activeMachine.name)
- width: profileScrollView.width
- elide: Text.ElideRight
- }
- ScrollView
- {
- id: profileScrollView
- anchors
- {
- top: captionLabel.visible ? captionLabel.bottom : parent.top
- topMargin: captionLabel.visible ? UM.Theme.getSize("default_margin").height : 0
- bottom: parent.bottom
- left: parent.left
- }
- Rectangle
- {
- parent: viewport
- anchors.fill: parent
- color: palette.light
- }
- width: true ? (parent.width * 0.4) | 0 : parent.width
- frameVisible: true
- clip: true
- ListView
- {
- id: qualityListView
- model: base.qualityManagementModel
- Component.onCompleted:
- {
- var selectedItemName = Cura.MachineManager.activeQualityOrQualityChangesName;
- // Select the required quality name if given
- for (var idx = 0; idx < base.qualityManagementModel.count; idx++)
- {
- var item = base.qualityManagementModel.getItem(idx);
- if (item.name == selectedItemName)
- {
- currentIndex = idx;
- break;
- }
- }
- }
- section.property: "section_name"
- section.delegate: Rectangle
- {
- height: childrenRect.height
- Label
- {
- anchors.left: parent.left
- anchors.leftMargin: UM.Theme.getSize("default_lining").width
- text: section
- font.bold: true
- }
- }
- delegate: Rectangle
- {
- width: profileScrollView.width
- height: childrenRect.height
- // Added this property to identify custom profiles in automated system tests (Squish)
- property bool isReadOnly: model.is_read_only
- property bool isCurrentItem: ListView.isCurrentItem
- color: isCurrentItem ? palette.highlight : (model.index % 2) ? palette.base : palette.alternateBase
- Label
- {
- anchors.left: parent.left
- anchors.leftMargin: UM.Theme.getSize("default_margin").width
- anchors.right: parent.right
- width: Math.floor((parent.width * 0.8))
- text: model.name
- elide: Text.ElideRight
- font.italic:
- {
- if (model.is_read_only)
- {
- // For built-in qualities, it needs to match both the intent category and the quality name
- return model.name == Cura.MachineManager.activeQualityOrQualityChangesName && model.intent_category == Cura.MachineManager.activeIntentCategory
- }
- else
- {
- // For custom qualities, it only needs to match the name
- return model.name == Cura.MachineManager.activeQualityOrQualityChangesName
- }
- }
- color: parent.isCurrentItem ? palette.highlightedText : palette.text
- }
- MouseArea
- {
- anchors.fill: parent
- onClicked:
- {
- parent.ListView.view.currentIndex = model.index;
- }
- }
- }
- }
- }
- // details panel on the right
- Item
- {
- id: detailsPanel
- anchors
- {
- left: profileScrollView.right
- leftMargin: UM.Theme.getSize("default_margin").width
- top: parent.top
- bottom: parent.bottom
- right: parent.right
- }
- Item
- {
- anchors.fill: parent
- visible: base.currentItem != null
- Item // Profile title Label
- {
- id: profileName
- width: parent.width
- height: childrenRect.height
- Label
- {
- anchors.left: parent.left
- anchors.right: parent.right
- text: base.currentItemDisplayName
- font: UM.Theme.getFont("large_bold")
- elide: Text.ElideRight
- renderType: Text.NativeRendering
- }
- }
- Flow
- {
- id: currentSettingsActions
- visible: base.hasCurrentItem && base.currentItem.name == Cura.MachineManager.activeQualityOrQualityChangesName && base.currentItem.intent_category == Cura.MachineManager.activeIntentCategory
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.top: profileName.bottom
- anchors.topMargin: UM.Theme.getSize("default_margin").height
- Button
- {
- text: catalog.i18nc("@action:button", "Update profile with current settings/overrides")
- enabled: Cura.MachineManager.hasUserSettings && !base.currentItem.is_read_only
- 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: base.isCurrentItemActivated && !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: 0
- ProfileTab
- {
- title: catalog.i18nc("@title:tab", "Global Settings")
- qualityItem: base.currentItem
- }
- Repeater
- {
- model: base.extrudersModel
- ProfileTab
- {
- title: model.name
- extruderPosition: model.index
- qualityItem: base.currentItem
- }
- }
- }
- }
- }
- }
- }
|