mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-30 14:21:19 -07:00
Since there was so much debate regarding the unit testing of the visiblity presets, i had another look at it. The old version was almost untestable because all functionalities were mushed together into a single class. CURA-5734
59 lines
1.4 KiB
QML
59 lines
1.4 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 1.4
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
Menu
|
|
{
|
|
id: menu
|
|
title: catalog.i18nc("@action:inmenu", "Visible Settings")
|
|
|
|
property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel()
|
|
|
|
signal showAllSettings()
|
|
|
|
Instantiator
|
|
{
|
|
model: settingVisibilityPresetsModel.items
|
|
|
|
MenuItem
|
|
{
|
|
text: modelData.name
|
|
checkable: true
|
|
checked: modelData.id == settingVisibilityPresetsModel.activePreset
|
|
exclusiveGroup: group
|
|
onTriggered:
|
|
{
|
|
settingVisibilityPresetsModel.setActivePreset(modelData.id);
|
|
}
|
|
}
|
|
|
|
onObjectAdded: menu.insertItem(index, object)
|
|
onObjectRemoved: menu.removeItem(object)
|
|
}
|
|
|
|
MenuSeparator {}
|
|
MenuItem
|
|
{
|
|
text: catalog.i18nc("@action:inmenu", "Show All Settings")
|
|
checkable: false
|
|
exclusiveGroup: group
|
|
onTriggered:
|
|
{
|
|
showAllSettings();
|
|
}
|
|
}
|
|
MenuSeparator {}
|
|
MenuItem
|
|
{
|
|
text: catalog.i18nc("@action:inmenu", "Manage Setting Visibility...")
|
|
iconName: "configure"
|
|
onTriggered: Cura.Actions.configureSettingVisibility.trigger()
|
|
}
|
|
|
|
ExclusiveGroup { id: group }
|
|
}
|