mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00
250 lines
7.5 KiB
QML
250 lines
7.5 KiB
QML
// Copyright (c) 2017 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Controls.Styles 1.1
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import UM 1.4 as UM
|
|
import Cura 1.0 as Cura
|
|
import "Menus"
|
|
|
|
Rectangle
|
|
{
|
|
id: base
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
height: UM.Theme.getSize("sidebar_header").height
|
|
color: UM.Controller.activeStage.stageId == "MonitorStage" ? UM.Theme.getColor("topbar_background_color_monitoring") : UM.Theme.getColor("topbar_background_color")
|
|
|
|
property bool printerConnected: Cura.MachineManager.printerOutputDevices.length != 0
|
|
property bool printerAcceptsCommands: printerConnected && Cura.MachineManager.printerOutputDevices[0].acceptsCommands
|
|
|
|
property int rightMargin: UM.Theme.getSize("sidebar").width + UM.Theme.getSize("default_margin").width;
|
|
property int allItemsWidth: 0;
|
|
|
|
function updateMarginsAndSizes() {
|
|
if (UM.Preferences.getValue("cura/sidebar_collapse")) {
|
|
rightMargin = UM.Theme.getSize("default_margin").width;
|
|
} else {
|
|
rightMargin = UM.Theme.getSize("sidebar").width + UM.Theme.getSize("default_margin").width;
|
|
}
|
|
allItemsWidth = (
|
|
logo.width + UM.Theme.getSize("topbar_logo_right_margin").width +
|
|
UM.Theme.getSize("topbar_logo_right_margin").width + stagesMenuContainer.width +
|
|
UM.Theme.getSize("default_margin").width + viewModeButton.width +
|
|
rightMargin);
|
|
}
|
|
|
|
UM.I18nCatalog
|
|
{
|
|
id: catalog
|
|
name:"cura"
|
|
}
|
|
|
|
Image
|
|
{
|
|
id: logo
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
source: UM.Theme.getImage("logo");
|
|
width: UM.Theme.getSize("logo").width;
|
|
height: UM.Theme.getSize("logo").height;
|
|
|
|
sourceSize.width: width;
|
|
sourceSize.height: height;
|
|
}
|
|
|
|
Row
|
|
{
|
|
id: stagesMenuContainer
|
|
anchors.left: logo.right
|
|
anchors.leftMargin: UM.Theme.getSize("topbar_logo_right_margin").width
|
|
spacing: UM.Theme.getSize("default_margin").width
|
|
|
|
// The topbar is dynamically filled with all available stages
|
|
Repeater
|
|
{
|
|
id: stagesMenu
|
|
|
|
model: UM.StageModel{}
|
|
|
|
delegate: Button
|
|
{
|
|
text: model.name
|
|
checkable: true
|
|
checked: model.active
|
|
exclusiveGroup: topbarMenuGroup
|
|
style: (model.stage.iconSource != "") ? UM.Theme.styles.topbar_header_tab_no_overlay : UM.Theme.styles.topbar_header_tab
|
|
height: UM.Theme.getSize("sidebar_header").height
|
|
onClicked: UM.Controller.setActiveStage(model.id)
|
|
iconSource: model.stage.iconSource
|
|
|
|
property color overlayColor: "transparent"
|
|
property string overlayIconSource: ""
|
|
}
|
|
}
|
|
|
|
ExclusiveGroup { id: topbarMenuGroup }
|
|
}
|
|
|
|
// View orientation Item
|
|
Row
|
|
{
|
|
id: viewOrientationControl
|
|
height: 30
|
|
spacing: 2
|
|
visible: UM.Controller.activeStage.stageId != "MonitorStage"
|
|
|
|
anchors
|
|
{
|
|
verticalCenter: base.verticalCenter
|
|
right: viewModeButton.left
|
|
rightMargin: UM.Theme.getSize("default_margin").width
|
|
}
|
|
|
|
// #1 3d view
|
|
Button
|
|
{
|
|
iconSource: UM.Theme.getIcon("view_3d")
|
|
style: UM.Theme.styles.small_tool_button
|
|
anchors.verticalCenter: viewOrientationControl.verticalCenter
|
|
onClicked:{
|
|
UM.Controller.rotateView("3d", 0);
|
|
}
|
|
visible: base.width - allItemsWidth - 4 * this.width > 0;
|
|
}
|
|
|
|
// #2 Front view
|
|
Button
|
|
{
|
|
iconSource: UM.Theme.getIcon("view_front")
|
|
style: UM.Theme.styles.small_tool_button
|
|
anchors.verticalCenter: viewOrientationControl.verticalCenter
|
|
onClicked:{
|
|
UM.Controller.rotateView("home", 0);
|
|
}
|
|
visible: base.width - allItemsWidth - 3 * this.width > 0;
|
|
}
|
|
|
|
// #3 Top view
|
|
Button
|
|
{
|
|
iconSource: UM.Theme.getIcon("view_top")
|
|
style: UM.Theme.styles.small_tool_button
|
|
anchors.verticalCenter: viewOrientationControl.verticalCenter
|
|
onClicked:{
|
|
UM.Controller.rotateView("y", 90);
|
|
}
|
|
visible: base.width - allItemsWidth - 2 * this.width > 0;
|
|
}
|
|
|
|
// #4 Left view
|
|
Button
|
|
{
|
|
iconSource: UM.Theme.getIcon("view_left")
|
|
style: UM.Theme.styles.small_tool_button
|
|
anchors.verticalCenter: viewOrientationControl.verticalCenter
|
|
onClicked:{
|
|
UM.Controller.rotateView("x", 90);
|
|
}
|
|
visible: base.width - allItemsWidth - 1 * this.width > 0;
|
|
}
|
|
|
|
// #5 Left view
|
|
Button
|
|
{
|
|
iconSource: UM.Theme.getIcon("view_right")
|
|
style: UM.Theme.styles.small_tool_button
|
|
anchors.verticalCenter: viewOrientationControl.verticalCenter
|
|
onClicked:{
|
|
UM.Controller.rotateView("x", -90);
|
|
}
|
|
visible: base.width - allItemsWidth > 0;
|
|
}
|
|
}
|
|
|
|
ComboBox
|
|
{
|
|
id: viewModeButton
|
|
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
right: parent.right
|
|
rightMargin: rightMargin
|
|
}
|
|
|
|
style: UM.Theme.styles.combobox
|
|
visible: UM.Controller.activeStage.stageId != "MonitorStage"
|
|
|
|
model: UM.ViewModel { }
|
|
textRole: "name"
|
|
|
|
// update the model's active index
|
|
function updateItemActiveFlags () {
|
|
currentIndex = getActiveIndex()
|
|
for (var i = 0; i < model.rowCount(); i++) {
|
|
model.getItem(i).active = (i == currentIndex)
|
|
}
|
|
}
|
|
|
|
// get the index of the active model item on start
|
|
function getActiveIndex () {
|
|
for (var i = 0; i < model.rowCount(); i++) {
|
|
if (model.getItem(i).active) {
|
|
return i
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// set the active index
|
|
function setActiveIndex (index) {
|
|
UM.Controller.setActiveView(index)
|
|
// the connection to UM.ActiveView will trigger update so there is no reason to call it manually here
|
|
}
|
|
|
|
onCurrentIndexChanged: viewModeButton.setActiveIndex(model.getItem(currentIndex).id)
|
|
currentIndex: getActiveIndex()
|
|
|
|
// watch the active view proxy for changes made from the menu item
|
|
Connections
|
|
{
|
|
target: UM.ActiveView
|
|
onActiveViewChanged: viewModeButton.updateItemActiveFlags()
|
|
}
|
|
}
|
|
|
|
Loader
|
|
{
|
|
id: view_panel
|
|
|
|
anchors.top: viewModeButton.bottom
|
|
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
|
anchors.right: viewModeButton.right
|
|
|
|
property var buttonTarget: Qt.point(viewModeButton.x + viewModeButton.width / 2, viewModeButton.y + viewModeButton.height / 2)
|
|
|
|
height: childrenRect.height
|
|
width: childrenRect.width
|
|
|
|
source: UM.ActiveView.valid ? UM.ActiveView.activeViewPanel : "";
|
|
}
|
|
|
|
// Expand or collapse sidebar
|
|
Connections
|
|
{
|
|
target: Cura.Actions.expandSidebar
|
|
onTriggered: updateMarginsAndSizes()
|
|
}
|
|
|
|
Component.onCompleted:
|
|
{
|
|
updateMarginsAndSizes();
|
|
}
|
|
|
|
}
|