Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/Menus')
-rw-r--r--resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml5
-rw-r--r--resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml2
-rw-r--r--resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml5
-rw-r--r--resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml16
-rw-r--r--resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml17
-rw-r--r--resources/qml/Menus/ContextMenu.qml5
-rw-r--r--resources/qml/Menus/ExtensionMenu.qml8
-rw-r--r--resources/qml/Menus/FileMenu.qml1
-rw-r--r--resources/qml/Menus/MaterialBrandMenu.qml345
-rw-r--r--resources/qml/Menus/MaterialMenu.qml49
-rw-r--r--resources/qml/Menus/NozzleMenu.qml4
-rw-r--r--resources/qml/Menus/OpenFilesMenu.qml4
-rw-r--r--resources/qml/Menus/PrinterMenu.qml8
-rw-r--r--resources/qml/Menus/PrinterTypeMenu.qml4
-rw-r--r--resources/qml/Menus/RecentFilesMenu.qml4
-rw-r--r--resources/qml/Menus/SaveProjectMenu.qml4
-rw-r--r--resources/qml/Menus/SettingVisibilityPresetsMenu.qml9
-rw-r--r--resources/qml/Menus/SettingsMenu.qml4
18 files changed, 403 insertions, 91 deletions
diff --git a/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml
index 18409dd43a..0bf29c13b7 100644
--- a/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml
+++ b/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml
@@ -4,7 +4,7 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
-import UM 1.3 as UM
+import UM 1.5 as UM
import Cura 1.0 as Cura
Item
@@ -12,14 +12,13 @@ Item
width: parent.width
height: childrenRect.height
- Label
+ UM.Label
{
id: header
text: catalog.i18nc("@header", "Configurations")
font: UM.Theme.getFont("medium")
color: UM.Theme.getColor("small_button_text")
height: contentHeight
- renderType: Text.NativeRendering
anchors
{
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
index 49d6710606..e8917517dd 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
@@ -88,7 +88,7 @@ Button
visible: !configurationItem.isValidMaterial
- UM.RecolorImage
+ UM.ColorImage
{
id: icon
anchors.verticalCenter: unknownMaterialMessage.verticalCenter
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
index 10e2435dfc..0840cfea87 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
@@ -39,7 +39,7 @@ Item
anchors.verticalCenter: parent.verticalCenter
status: UM.StatusIcon.Status.WARNING
}
- Label
+ UM.Label
{
id: label
anchors.left: icon.right
@@ -51,9 +51,6 @@ Item
text: Cura.MachineManager.printerConnected ?
catalog.i18nc("@label", "Loading available configurations from the printer...") :
catalog.i18nc("@label", "The configurations are not available because the printer is disconnected.")
- color: UM.Theme.getColor("text")
- font: UM.Theme.getFont("default")
- renderType: Text.NativeRendering
wrapMode: Text.WordWrap
}
}
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
index 58d96f8028..76d33c9c77 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
@@ -36,6 +36,8 @@ Cura.ExpandablePopup
headerItem: Item
{
+ id: headerBase
+
// Horizontal list that shows the extruders and their materials
RowLayout
{
@@ -51,13 +53,16 @@ Cura.ExpandablePopup
{
id: extruderItem
- Layout.preferredWidth: Math.round(parent.width / extrudersModel.count)
- Layout.maximumWidth: Math.round(parent.width / extrudersModel.count)
+ Layout.preferredWidth: Math.floor(headerBase.width / extrudersModel.count)
+ Layout.maximumWidth: Math.floor(headerBase.width / extrudersModel.count)
+ Layout.preferredHeight: headerBase.height
+ Layout.maximumHeight: headerBase.height
Layout.fillHeight: true
+ Layout.alignment: Qt.AlignCenter
property var extruderStack: activeMachine ? activeMachine.extruderList[model.index]: null
property bool valueWarning: !Cura.ExtruderManager.getExtruderHasQualityForMaterial(extruderStack)
- property bool valueError: activeMachine ? Cura.ContainerManager.getContainerMetaDataEntry(extruderStack.material.id, "compatible", "") != "True" : false
+ property bool valueError: activeMachine ? Cura.ContainerManager.getContainerMetaDataEntry(extruderStack.material.id, "compatible") != "True" : false
// Extruder icon. Shows extruder index and has the same color as the active material.
Cura.ExtruderIcon
@@ -109,7 +114,7 @@ Cura.ExpandablePopup
}
// Warning icon that indicates if no qualities are available for the variant/material combination for this extruder
- UM.RecolorImage
+ UM.ColorImage
{
id: badge
anchors
@@ -257,11 +262,10 @@ Cura.ExpandablePopup
}
}
+ contentWidth: UM.Theme.getSize("configuration_selector").width
contentItem: Column
{
id: popupItem
- width: UM.Theme.getSize("configuration_selector").width
- height: implicitHeight // Required because ExpandableComponent will try to use this to determine the size of the background of the pop-up.
padding: UM.Theme.getSize("default_margin").height
spacing: UM.Theme.getSize("default_margin").height
diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
index 4b2b84d39e..c24c031e83 100644
--- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
+++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
@@ -97,13 +97,16 @@ Item
checked: model.index == 0
contentItem: Item
{
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+ width: Math.floor(tabBar.height / extrudersModel.count)
+ height: tabBar.height
Cura.ExtruderIcon
{
anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
materialColor: model.color
extruderEnabled: model.enabled
- width: parent.height
- height: parent.height
}
}
onClicked:
@@ -202,7 +205,7 @@ Item
return paddedWidth - textWidth - UM.Theme.getSize("print_setup_big_item").height * 0.5 - UM.Theme.getSize("default_margin").width
}
}
- property string instructionLink: Cura.MachineManager.activeStack != null ? Cura.ContainerManager.getContainerMetaDataEntry(Cura.MachineManager.activeStack.material.id, "instruction_link", ""): ""
+ property string instructionLink: Cura.MachineManager.activeStack != null ? Cura.ContainerManager.getContainerMetaDataEntry(Cura.MachineManager.activeStack.material.id, "instruction_link"): ""
Row
{
@@ -269,7 +272,7 @@ Item
{
id: materialSelection
- property bool valueError: Cura.MachineManager.activeStack !== null ? Cura.ContainerManager.getContainerMetaDataEntry(Cura.MachineManager.activeStack.material.id, "compatible", "") !== "True" : true
+ property bool valueError: Cura.MachineManager.activeStack !== null ? Cura.ContainerManager.getContainerMetaDataEntry(Cura.MachineManager.activeStack.material.id, "compatible") !== "True" : true
property bool valueWarning: !Cura.MachineManager.isActiveQualitySupported
text: Cura.MachineManager.activeStack !== null ? Cura.MachineManager.activeStack.material.name : ""
@@ -304,7 +307,7 @@ Item
height: UM.Theme.getSize("small_button").height
width: UM.Theme.getSize("small_button").width
anchors.centerIn: parent
- background: UM.RecolorImage
+ background: UM.ColorImage
{
source: UM.Theme.getIcon("Guide")
color: instructionButton.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("icon")
@@ -369,15 +372,13 @@ Item
width: selectors.controlWidth
height: childrenRect.height
- UM.RecolorImage
+ UM.ColorImage
{
id: warningImage
anchors.left: parent.left
source: UM.Theme.getIcon("Warning")
width: UM.Theme.getSize("section_icon").width
height: UM.Theme.getSize("section_icon").height
- sourceSize.width: width
- sourceSize.height: height
color: UM.Theme.getColor("material_compatibility_warning")
visible: !Cura.MachineManager.isCurrentSetupSupported || warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning
}
diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml
index 1bba79e2c1..65f3409c8a 100644
--- a/resources/qml/Menus/ContextMenu.qml
+++ b/resources/qml/Menus/ContextMenu.qml
@@ -45,8 +45,8 @@ Cura.Menu
shortcut: "Ctrl+" + (model.index + 1)
}
// Add it to the fifth position (and above) as we want it to be added after the extruder header.
- onObjectAdded: base.insertItem(index + 5, object)
- onObjectRemoved: base.removeItem(object)
+ onObjectAdded: function(index, object) { base.insertItem(index + 5, object) }
+ onObjectRemoved: function(index, object) { base.removeItem(object) }
}
// Global actions
@@ -134,6 +134,7 @@ Cura.Menu
from: 1
to: 99
width: 2 * UM.Theme.getSize("button").width
+ value: 1
}
}
}
diff --git a/resources/qml/Menus/ExtensionMenu.qml b/resources/qml/Menus/ExtensionMenu.qml
index 3c2d1a79c7..919e094e5e 100644
--- a/resources/qml/Menus/ExtensionMenu.qml
+++ b/resources/qml/Menus/ExtensionMenu.qml
@@ -53,12 +53,12 @@ Cura.Menu
sourceComponent: modelText.trim() == "" ? extensionsMenuSeparator : extensionsMenuItem
}
- onObjectAdded: sub_menu.insertItem(index, object.item)
- onObjectRemoved: sub_menu.removeItem(object.item)
+ onObjectAdded: function(index, object) { sub_menu.insertItem(index, object.item)}
+ onObjectRemoved: function(index, object) { sub_menu.removeItem(object.item)}
}
}
- onObjectAdded: extensionMenu.insertMenu(index, object)
- onObjectRemoved: extensionMenu.removeMenu(object)
+ onObjectAdded: function(index, object) { extensionMenu.insertMenu(index, object) }
+ onObjectRemoved: function(index, object) { extensionMenu.removeMenu(object)}
}
} \ No newline at end of file
diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml
index 338ada60fc..0884053ef3 100644
--- a/resources/qml/Menus/FileMenu.qml
+++ b/resources/qml/Menus/FileMenu.qml
@@ -33,6 +33,7 @@ Cura.Menu
id: openFilesMenu
shouldBeVisible: base.fileProviderModel.count > 1
+ enabled: shouldBeVisible
}
RecentFilesMenu { }
diff --git a/resources/qml/Menus/MaterialBrandMenu.qml b/resources/qml/Menus/MaterialBrandMenu.qml
new file mode 100644
index 0000000000..e256e75904
--- /dev/null
+++ b/resources/qml/Menus/MaterialBrandMenu.qml
@@ -0,0 +1,345 @@
+// Copyright (c) 2022 Ultimaker B.V.
+// Cura is released under the terms of the LGPLv3 or higher.
+
+import QtQuick 2.7
+import QtQuick.Controls 2.4
+import QtQuick.Layouts 2.7
+
+import UM 1.5 as UM
+import Cura 1.7 as Cura
+
+/* This element is a workaround for MacOS, where it can crash in Qt6 when nested menus are closed.
+Instead we'll use a pop-up which doesn't seem to have that problem. */
+
+Cura.MenuItem
+{
+ id: materialBrandMenu
+ overrideShowArrow: true
+
+ property var materialTypesModel
+ text: materialTypesModel.name
+
+ contentItem: MouseArea
+ {
+ hoverEnabled: true
+
+ RowLayout
+ {
+ spacing: 0
+ opacity: materialBrandMenu.enabled ? 1 : 0.5
+
+ Item
+ {
+ // Spacer
+ width: UM.Theme.getSize("default_margin").width
+ }
+
+ UM.Label
+ {
+ text: replaceText(materialBrandMenu.text)
+ Layout.fillWidth: true
+ Layout.fillHeight:true
+ elide: Label.ElideRight
+ wrapMode: Text.NoWrap
+ }
+
+ Item
+ {
+ Layout.fillWidth: true
+ }
+
+ Item
+ {
+ // Right side margin
+ width: UM.Theme.getSize("default_margin").width
+ }
+ }
+
+ onEntered: showTimer.restartTimer()
+ onExited: hideTimer.restartTimer()
+ }
+
+ Timer
+ {
+ id: showTimer
+ interval: 250
+ function restartTimer()
+ {
+ restart();
+ running = Qt.binding(function() { return materialBrandMenu.enabled && materialBrandMenu.contentItem.containsMouse; });
+ hideTimer.running = false;
+ }
+ onTriggered: menuPopup.open()
+ }
+ Timer
+ {
+ id: hideTimer
+ interval: 250
+ function restartTimer() //Restart but re-evaluate the running property then.
+ {
+ restart();
+ running = Qt.binding(function() { return materialBrandMenu.enabled && !materialBrandMenu.contentItem.containsMouse && !menuPopup.itemHovered > 0; });
+ showTimer.running = false;
+ }
+ onTriggered: menuPopup.close()
+ }
+
+ Popup
+ {
+ id: menuPopup
+ width: materialTypesList.width + padding * 2
+ height: materialTypesList.height + padding * 2
+
+ property var flipped: false
+
+ x: parent.width - UM.Theme.getSize("default_lining").width
+ y: {
+ // Checks if popup is more than halfway down the screen AND further than 400 down (this avoids popup going off the top of screen)
+ // If it is then the popup will push up instead of down
+ // This fixes the popups appearing bellow the bottom of the screen.
+
+ if (materialBrandMenu.parent.height / 2 < parent.y && parent.y > 400) {
+ flipped = true
+ return -UM.Theme.getSize("default_lining").width - height + UM.Theme.getSize("menu").height
+ }
+ flipped = false
+ return -UM.Theme.getSize("default_lining").width
+ }
+
+ padding: background.border.width
+ // Nasty hack to ensure that we can keep track if the popup contains the mouse.
+ // Since we also want a hover for the sub items (and these events are sent async)
+ // We have to keep a count of itemHovered (instead of just a bool)
+ property int itemHovered: 0
+ MouseArea
+ {
+ id: submenuArea
+ anchors.fill: parent
+
+ hoverEnabled: true
+ onEntered: hideTimer.restartTimer()
+ }
+
+ background: Rectangle
+ {
+ color: UM.Theme.getColor("main_background")
+ border.color: UM.Theme.getColor("lining")
+ border.width: UM.Theme.getSize("default_lining").width
+ }
+
+ Column
+ {
+ id: materialTypesList
+ spacing: 0
+
+ property var brandMaterials: materialTypesModel.material_types
+
+ Repeater
+ {
+ model: parent.brandMaterials
+
+ //Use a MouseArea and Rectangle, not a button, because the button grabs mouse events which makes the parent pop-up think it's no longer being hovered.
+ //With a custom MouseArea, we can prevent the events from being accepted.
+ delegate: Rectangle
+ {
+ id: brandMaterialBase
+ height: UM.Theme.getSize("menu").height
+ width: UM.Theme.getSize("menu").width
+
+ color: materialTypeButton.containsMouse ? UM.Theme.getColor("background_2") : UM.Theme.getColor("background_1")
+
+ property var isFlipped: menuPopup.flipped
+
+ RowLayout
+ {
+ spacing: 0
+ opacity: materialBrandMenu.enabled ? 1 : 0.5
+ height: parent.height
+ width: parent.width
+
+ Item
+ {
+ // Spacer
+ width: UM.Theme.getSize("default_margin").width
+ }
+
+ UM.Label
+ {
+ text: model.name
+ Layout.fillWidth: true
+ Layout.fillHeight: true
+ elide: Label.ElideRight
+ wrapMode: Text.NoWrap
+ }
+
+ Item
+ {
+ Layout.fillWidth: true
+ }
+
+ UM.ColorImage
+ {
+ height: UM.Theme.getSize("default_arrow").height
+ width: UM.Theme.getSize("default_arrow").width
+ color: UM.Theme.getColor("setting_control_text")
+ source: UM.Theme.getIcon("ChevronSingleRight")
+ }
+
+ Item
+ {
+ // Right side margin
+ width: UM.Theme.getSize("default_margin").width
+ }
+ }
+
+ MouseArea
+ {
+ id: materialTypeButton
+ anchors.fill: parent
+
+ hoverEnabled: true
+ acceptedButtons: Qt.NoButton
+
+ onEntered:
+ {
+ menuPopup.itemHovered += 1;
+ showSubTimer.restartTimer();
+ }
+ onExited:
+ {
+ menuPopup.itemHovered -= 1;
+ hideSubTimer.restartTimer();
+ }
+ }
+ Timer
+ {
+ id: showSubTimer
+ interval: 250
+ function restartTimer()
+ {
+ restart();
+ running = Qt.binding(function() { return materialTypeButton.containsMouse; });
+ hideSubTimer.running = false;
+ }
+ onTriggered: colorPopup.open()
+ }
+ Timer
+ {
+ id: hideSubTimer
+ interval: 250
+ function restartTimer() //Restart but re-evaluate the running property then.
+ {
+ restart();
+ running = Qt.binding(function() { return !materialTypeButton.containsMouse && !colorPopup.itemHovered > 0; });
+ showSubTimer.running = false;
+ }
+ onTriggered: colorPopup.close()
+ }
+
+ Popup
+ {
+ id: colorPopup
+ width: materialColorsList.width + padding * 2
+ height: materialColorsList.height + padding * 2
+ x: parent.width
+ y: {
+ // If flipped the popup should push up rather than down from the parent
+ if (brandMaterialBase.isFlipped) {
+ return -height + UM.Theme.getSize("menu").height + UM.Theme.getSize("default_lining").width
+ }
+ return -UM.Theme.getSize("default_lining").width
+ }
+
+ property int itemHovered: 0
+ padding: background.border.width
+
+ background: Rectangle
+ {
+ color: UM.Theme.getColor("main_background")
+ border.color: UM.Theme.getColor("lining")
+ border.width: UM.Theme.getSize("default_lining").width
+ }
+
+ Column
+ {
+ id: materialColorsList
+ property var brandColors: model.colors
+ spacing: 0
+
+ Repeater
+ {
+ model: parent.brandColors
+
+ delegate: Rectangle
+ {
+ height: UM.Theme.getSize("menu").height
+ width: UM.Theme.getSize("menu").width
+
+ color: materialColorButton.containsMouse ? UM.Theme.getColor("background_2") : UM.Theme.getColor("background_1")
+
+ Item
+ {
+ opacity: materialBrandMenu.enabled ? 1 : 0.5
+ anchors.fill: parent
+
+ //Checkmark, if the material is selected.
+ UM.ColorImage
+ {
+ id: checkmark
+ visible: model.id === materialMenu.activeMaterialId
+ height: UM.Theme.getSize("default_arrow").height
+ width: height
+ anchors.left: parent.left
+ anchors.leftMargin: UM.Theme.getSize("default_margin").width
+ anchors.verticalCenter: parent.verticalCenter
+ source: UM.Theme.getIcon("Check", "low")
+ color: UM.Theme.getColor("setting_control_text")
+ }
+
+ UM.Label
+ {
+ text: model.name
+ anchors.left: parent.left
+ anchors.leftMargin: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("default_arrow").height
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.right: parent.right
+ anchors.rightMargin: UM.Theme.getSize("default_margin").width
+
+ elide: Label.ElideRight
+ wrapMode: Text.NoWrap
+ }
+ }
+
+ MouseArea
+ {
+ id: materialColorButton
+ anchors.fill: parent
+
+ hoverEnabled: true
+ onClicked:
+ {
+ Cura.MachineManager.setMaterial(extruderIndex, model.container_node);
+ menuPopup.close();
+ colorPopup.close();
+ materialMenu.close();
+ }
+ onEntered:
+ {
+ menuPopup.itemHovered += 1;
+ colorPopup.itemHovered += 1;
+ }
+ onExited:
+ {
+ menuPopup.itemHovered -= 1;
+ colorPopup.itemHovered -= 1;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/resources/qml/Menus/MaterialMenu.qml b/resources/qml/Menus/MaterialMenu.qml
index e6d7fbc3e9..cee28cee6a 100644
--- a/resources/qml/Menus/MaterialMenu.qml
+++ b/resources/qml/Menus/MaterialMenu.qml
@@ -66,8 +66,8 @@ Cura.Menu
checked: model.root_material_id === materialMenu.currentRootMaterialId
onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node)
}
- onObjectAdded: materialMenu.insertItem(index + 1, object)
- onObjectRemoved: materialMenu.removeItem(index)
+ onObjectAdded: function(index, object) { materialMenu.insertItem(index + 1, object) }
+ onObjectRemoved: function(index, object) { materialMenu.removeItem(index) }
}
Cura.MenuSeparator { visible: favoriteMaterialsModel.items.length > 0}
@@ -88,8 +88,8 @@ Cura.Menu
checked: model.root_material_id === materialMenu.currentRootMaterialId
onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node)
}
- onObjectAdded: genericMenu.insertItem(index, object)
- onObjectRemoved: genericMenu.removeItem(index)
+ onObjectAdded: function(index, object) { genericMenu.insertItem(index, object)}
+ onObjectRemoved: function(index, object) {genericMenu.removeItem(index) }
}
}
@@ -98,45 +98,12 @@ Cura.Menu
Instantiator
{
model: brandModel
- Cura.Menu
+ delegate: Cura.MaterialBrandMenu
{
- id: brandMenu
- title: brandName
- property string brandName: model.name
- property var brandMaterials: model.material_types
-
- Instantiator
- {
- model: brandMaterials
- delegate: Cura.Menu
- {
- id: brandMaterialsMenu
- title: materialName
- property string materialName: model.name
- property var brandMaterialColors: model.colors
-
- Instantiator
- {
- model: brandMaterialColors
- delegate: Cura.MenuItem
- {
- text: model.name
- checkable: true
- enabled: isActiveExtruderEnabled
- checked: model.id === materialMenu.activeMaterialId
-
- onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node)
- }
- onObjectAdded: brandMaterialsMenu.insertItem(index, object)
- onObjectRemoved: brandMaterialsMenu.removeItem(object)
- }
- }
- onObjectAdded: brandMenu.insertMenu(index, object)
- onObjectRemoved: brandMenu.removeMenu(object)
- }
+ materialTypesModel: model
}
- onObjectAdded: materialMenu.insertMenu(index + 4, object)
- onObjectRemoved: materialMenu.removeMenu(object)
+ onObjectAdded: function(index, object) { materialMenu.insertItem(index + 4, object)}
+ onObjectRemoved: function(index, object) { materialMenu.removeItem(index) }
}
Cura.MenuSeparator {}
diff --git a/resources/qml/Menus/NozzleMenu.qml b/resources/qml/Menus/NozzleMenu.qml
index b320a02a5e..f286410a11 100644
--- a/resources/qml/Menus/NozzleMenu.qml
+++ b/resources/qml/Menus/NozzleMenu.qml
@@ -49,8 +49,8 @@ Cura.Menu
onTriggered: Cura.MachineManager.setVariant(nozzleMenu.extruderIndex, model.container_node)
}
- onObjectAdded: nozzleMenu.insertItem(index, object)
- onObjectRemoved: nozzleMenu.removeItem(object)
+ onObjectAdded: function(index, object) { nozzleMenu.insertItem(index, object) }
+ onObjectRemoved: function(index, object) {nozzleMenu.removeItem(object)}
}
}
diff --git a/resources/qml/Menus/OpenFilesMenu.qml b/resources/qml/Menus/OpenFilesMenu.qml
index de5ab00c76..ca838b5cb3 100644
--- a/resources/qml/Menus/OpenFilesMenu.qml
+++ b/resources/qml/Menus/OpenFilesMenu.qml
@@ -34,8 +34,8 @@ Cura.Menu
}
shortcut: model.shortcut
}
- onObjectAdded: openFilesMenu.insertItem(index, object)
+ onObjectAdded: function(index, object) { openFilesMenu.insertItem(index, object)}
- onObjectRemoved: openFilesMenu.removeItem(object)
+ onObjectRemoved: function(index, object) { openFilesMenu.removeItem(object) }
}
}
diff --git a/resources/qml/Menus/PrinterMenu.qml b/resources/qml/Menus/PrinterMenu.qml
index 9f0e0575b0..7cea1de52e 100644
--- a/resources/qml/Menus/PrinterMenu.qml
+++ b/resources/qml/Menus/PrinterMenu.qml
@@ -38,8 +38,8 @@ Cura.Menu
checked: Cura.MachineManager.activeMachineNetworkGroupName == connectGroupName
onTriggered: Cura.MachineManager.setActiveMachine(model.id)
}
- onObjectAdded: menu.insertItem(2, object)
- onObjectRemoved: menu.removeItem(object)
+ onObjectAdded: function(index, object) { menu.insertItem(2, object)}
+ onObjectRemoved: function(index, object) { menu.removeItem(object)}
}
Cura.MenuSeparator { visible: networKPrinterInstantiator.count > 0 }
@@ -66,8 +66,8 @@ Cura.Menu
onTriggered: Cura.MachineManager.setActiveMachine(model.id)
}
// A bit hackish, but we have 2 items at the end, put them before that
- onObjectAdded: menu.insertItem(menu.count - 2, object)
- onObjectRemoved: menu.removeItem(object)
+ onObjectAdded: function(index, object) { menu.insertItem(menu.count - 2, object) }
+ onObjectRemoved: function(index, object) { menu.removeItem(object) }
}
Cura.MenuSeparator { visible: localPrinterInstantiator.count > 0 }
diff --git a/resources/qml/Menus/PrinterTypeMenu.qml b/resources/qml/Menus/PrinterTypeMenu.qml
index 17986ac1b8..8691bf7ecc 100644
--- a/resources/qml/Menus/PrinterTypeMenu.qml
+++ b/resources/qml/Menus/PrinterTypeMenu.qml
@@ -28,7 +28,7 @@ Cura.Menu
Cura.MachineManager.switchPrinterType(modelData.machine_type)
}
}
- onObjectAdded: menu.insertItem(index, object)
- onObjectRemoved: menu.removeItem(object)
+ onObjectAdded: function(index, object) { return menu.insertItem(index, object); }
+ onObjectRemoved: function(index, object) { return menu.removeItem(object); }
}
}
diff --git a/resources/qml/Menus/RecentFilesMenu.qml b/resources/qml/Menus/RecentFilesMenu.qml
index 8f4f328927..19ff681219 100644
--- a/resources/qml/Menus/RecentFilesMenu.qml
+++ b/resources/qml/Menus/RecentFilesMenu.qml
@@ -29,7 +29,7 @@ Cura.Menu
}
onTriggered: CuraApplication.readLocalFile(modelData)
}
- onObjectAdded: menu.insertItem(index, object)
- onObjectRemoved: menu.removeItem(object)
+ onObjectAdded: (index, object) => menu.insertItem(index, object)
+ onObjectRemoved: (object) => menu.removeItem(object)
}
}
diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml
index 16d54382d1..2140d5e0ef 100644
--- a/resources/qml/Menus/SaveProjectMenu.qml
+++ b/resources/qml/Menus/SaveProjectMenu.qml
@@ -43,8 +43,8 @@ Cura.Menu
shortcut: model.shortcut
enabled: saveProjectMenu.shouldBeVisible
}
- onObjectAdded: saveProjectMenu.insertItem(index, object)
- onObjectRemoved: saveProjectMenu.removeItem(object)
+ onObjectAdded: function(index, object) { saveProjectMenu.insertItem(index, object)}
+ onObjectRemoved: function(index, object) { saveProjectMenu.removeItem(object)}
}
WorkspaceSummaryDialog
diff --git a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml
index 08d74a74ce..57298030c4 100644
--- a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml
+++ b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml
@@ -29,14 +29,11 @@ Cura.Menu
checkable: true
checked: modelData.presetId == settingVisibilityPresetsModel.activePreset
ActionGroup.group: group
- onTriggered:
- {
- settingVisibilityPresetsModel.setActivePreset(modelData.presetId);
- }
+ onTriggered: settingVisibilityPresetsModel.setActivePreset(modelData.presetId)
}
- onObjectAdded: menu.insertItem(index, object)
- onObjectRemoved: menu.removeItem(object)
+ onObjectAdded: function(index, object) { menu.insertItem(index, object) }
+ onObjectRemoved: function(index, object) { menu.removeItem(object)}
}
Cura.MenuSeparator {}
diff --git a/resources/qml/Menus/SettingsMenu.qml b/resources/qml/Menus/SettingsMenu.qml
index 25bee871f5..ea5de6c66f 100644
--- a/resources/qml/Menus/SettingsMenu.qml
+++ b/resources/qml/Menus/SettingsMenu.qml
@@ -67,8 +67,8 @@ Cura.Menu
height: visible ? implicitHeight: 0
}
}
- onObjectAdded: base.insertMenu(index, object)
- onObjectRemoved: base.removeMenu(object)
+ onObjectAdded: function(index, object) { base.insertMenu(index, object) }
+ onObjectRemoved: function(index, object) { base.removeMenu(object);}
}
Cura.MenuSeparator { }