mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00
48 lines
1.2 KiB
QML
48 lines
1.2 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
Component
|
|
{
|
|
Item
|
|
{
|
|
Rectangle
|
|
{
|
|
color: UM.Theme.getColor("main_background")
|
|
|
|
anchors.right: parent.right
|
|
width: parent.width * 0.3
|
|
anchors.top: parent.top
|
|
anchors.bottom: parent.bottom
|
|
|
|
Cura.PrintMonitor
|
|
{
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Rectangle
|
|
{
|
|
id: footerSeparator
|
|
width: parent.width
|
|
height: UM.Theme.getSize("wide_lining").height
|
|
color: UM.Theme.getColor("wide_lining")
|
|
anchors.bottom: monitorButton.top
|
|
anchors.bottomMargin: UM.Theme.getSize("thick_margin").height
|
|
}
|
|
|
|
// MonitorButton is actually the bottom footer panel.
|
|
Cura.MonitorButton
|
|
{
|
|
id: monitorButton
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
}
|
|
}
|
|
} |