mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 07:14:24 +08:00
37 lines
826 B
QML
37 lines
826 B
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: "Build plate"
|
|
|
|
property var buildPlateModel: CuraApplication.getBuildPlateModel()
|
|
|
|
Instantiator
|
|
{
|
|
model: menu.buildPlateModel
|
|
|
|
MenuItem {
|
|
text: model.name
|
|
checkable: true
|
|
checked: model.name == Cura.MachineManager.globalVariantName
|
|
exclusiveGroup: group
|
|
onTriggered: {
|
|
Cura.MachineManager.setGlobalVariant(model.container_node);
|
|
}
|
|
}
|
|
|
|
onObjectAdded: menu.insertItem(index, object)
|
|
onObjectRemoved: menu.removeItem(object)
|
|
}
|
|
|
|
ExclusiveGroup { id: group }
|
|
}
|