mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
77 lines
2.4 KiB
QML
77 lines
2.4 KiB
QML
// Copyright (c) 2016 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
Menu
|
|
{
|
|
title: catalog.i18nc("@title:menu menubar:toplevel", "&View");
|
|
id: base
|
|
enabled: !PrintInformation.preSliced
|
|
|
|
property Cura.MultiBuildPlateModel multiBuildPlateModel: CuraApplication.getMultiBuildPlateModel()
|
|
|
|
// main views
|
|
Instantiator
|
|
{
|
|
model: UM.ViewModel{}
|
|
MenuItem
|
|
{
|
|
text: model.name
|
|
checkable: true
|
|
checked: model.active
|
|
exclusiveGroup: group
|
|
onTriggered: UM.Controller.setActiveView(model.id)
|
|
}
|
|
onObjectAdded: base.insertItem(index, object)
|
|
onObjectRemoved: base.removeItem(object)
|
|
}
|
|
ExclusiveGroup { id: group }
|
|
|
|
MenuSeparator {}
|
|
|
|
Menu
|
|
{
|
|
title: catalog.i18nc("@action:inmenu menubar:view","&Camera position");
|
|
MenuItem { action: Cura.Actions.view3DCamera; }
|
|
MenuItem { action: Cura.Actions.viewFrontCamera; }
|
|
MenuItem { action: Cura.Actions.viewTopCamera; }
|
|
MenuItem { action: Cura.Actions.viewLeftSideCamera; }
|
|
MenuItem { action: Cura.Actions.viewRightSideCamera; }
|
|
}
|
|
|
|
MenuSeparator {
|
|
visible: UM.Preferences.getValue("cura/use_multi_build_plate")
|
|
}
|
|
|
|
Menu
|
|
{
|
|
id: buildPlateMenu;
|
|
title: catalog.i18nc("@action:inmenu menubar:view","&Build plate");
|
|
visible: UM.Preferences.getValue("cura/use_multi_build_plate")
|
|
Instantiator
|
|
{
|
|
model: base.multiBuildPlateModel
|
|
MenuItem {
|
|
text: base.multiBuildPlateModel.getItem(index).name;
|
|
onTriggered: Cura.SceneController.setActiveBuildPlate(base.multiBuildPlateModel.getItem(index).buildPlateNumber);
|
|
checkable: true;
|
|
checked: base.multiBuildPlateModel.getItem(index).buildPlateNumber == base.multiBuildPlateModel.activeBuildPlate;
|
|
exclusiveGroup: buildPlateGroup;
|
|
visible: UM.Preferences.getValue("cura/use_multi_build_plate")
|
|
}
|
|
onObjectAdded: buildPlateMenu.insertItem(index, object);
|
|
onObjectRemoved: buildPlateMenu.removeItem(object)
|
|
}
|
|
ExclusiveGroup { id: buildPlateGroup; }
|
|
}
|
|
|
|
MenuSeparator {}
|
|
|
|
MenuItem { action: Cura.Actions.expandSidebar; }
|
|
}
|