mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 05:39:37 +08:00
60 lines
1.4 KiB
QML
60 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.presetId == settingVisibilityPresetsModel.activePreset
|
|
exclusiveGroup: group
|
|
onTriggered:
|
|
{
|
|
settingVisibilityPresetsModel.setActivePreset(modelData.presetId);
|
|
}
|
|
}
|
|
|
|
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 }
|
|
}
|