mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 17:57:55 -06:00
Move additional component loader into ActionPanelWidget
This commit is contained in:
parent
1a037bdb82
commit
e6f722b29c
2 changed files with 69 additions and 62 deletions
|
@ -12,45 +12,85 @@ import Cura 1.0 as Cura
|
||||||
// This element hold all the elements needed for the user to trigger the slicing process, and later
|
// This element hold all the elements needed for the user to trigger the slicing process, and later
|
||||||
// to get information about the printing times, material consumption and the output process (such as
|
// to get information about the printing times, material consumption and the output process (such as
|
||||||
// saving to a file, printing over network, ...
|
// saving to a file, printing over network, ...
|
||||||
Rectangle
|
Item
|
||||||
{
|
{
|
||||||
id: actionPanelWidget
|
id: base
|
||||||
|
width: childrenRect.width
|
||||||
|
height: childrenRect.height
|
||||||
|
|
||||||
width: UM.Theme.getSize("action_panel_widget").width
|
Rectangle
|
||||||
height: childrenRect.height + 2 * UM.Theme.getSize("thick_margin").height
|
|
||||||
|
|
||||||
color: UM.Theme.getColor("main_background")
|
|
||||||
border.width: UM.Theme.getSize("default_lining").width
|
|
||||||
border.color: UM.Theme.getColor("lining")
|
|
||||||
radius: UM.Theme.getSize("default_radius").width
|
|
||||||
z: 10
|
|
||||||
|
|
||||||
property bool outputAvailable: UM.Backend.state == UM.Backend.Done || UM.Backend.state == UM.Backend.Disabled
|
|
||||||
|
|
||||||
Loader
|
|
||||||
{
|
{
|
||||||
id: loader
|
id: actionPanelWidget
|
||||||
anchors
|
|
||||||
|
width: UM.Theme.getSize("action_panel_widget").width
|
||||||
|
height: childrenRect.height + 2 * UM.Theme.getSize("thick_margin").height
|
||||||
|
anchors. right: parent.right
|
||||||
|
color: UM.Theme.getColor("main_background")
|
||||||
|
border.width: UM.Theme.getSize("default_lining").width
|
||||||
|
border.color: UM.Theme.getColor("lining")
|
||||||
|
radius: UM.Theme.getSize("default_radius").width
|
||||||
|
z: 10
|
||||||
|
|
||||||
|
property bool outputAvailable: UM.Backend.state == UM.Backend.Done || UM.Backend.state == UM.Backend.Disabled
|
||||||
|
|
||||||
|
Loader
|
||||||
{
|
{
|
||||||
top: parent.top
|
id: loader
|
||||||
topMargin: UM.Theme.getSize("thick_margin").height
|
anchors
|
||||||
left: parent.left
|
{
|
||||||
leftMargin: UM.Theme.getSize("thick_margin").width
|
top: parent.top
|
||||||
right: parent.right
|
topMargin: UM.Theme.getSize("thick_margin").height
|
||||||
rightMargin: UM.Theme.getSize("thick_margin").width
|
left: parent.left
|
||||||
|
leftMargin: UM.Theme.getSize("thick_margin").width
|
||||||
|
right: parent.right
|
||||||
|
rightMargin: UM.Theme.getSize("thick_margin").width
|
||||||
|
}
|
||||||
|
sourceComponent: actionPanelWidget.outputAvailable ? outputProcessWidget : sliceProcessWidget
|
||||||
|
}
|
||||||
|
|
||||||
|
Component
|
||||||
|
{
|
||||||
|
id: sliceProcessWidget
|
||||||
|
SliceProcessWidget { }
|
||||||
|
}
|
||||||
|
|
||||||
|
Component
|
||||||
|
{
|
||||||
|
id: outputProcessWidget
|
||||||
|
OutputProcessWidget { }
|
||||||
}
|
}
|
||||||
sourceComponent: outputAvailable ? outputProcessWidget : sliceProcessWidget
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Component
|
Item
|
||||||
{
|
{
|
||||||
id: sliceProcessWidget
|
id: additionalComponents
|
||||||
SliceProcessWidget { }
|
width: childrenRect.width
|
||||||
|
anchors.right: actionPanelWidget.left
|
||||||
|
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
||||||
|
anchors.bottom: actionPanelWidget.bottom
|
||||||
|
anchors.bottomMargin: UM.Theme.getSize("thick_margin").height * 2
|
||||||
|
visible: actionPanelWidget.visible
|
||||||
|
Row
|
||||||
|
{
|
||||||
|
id: additionalComponentsRow
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
spacing: UM.Theme.getSize("default_margin").width
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component
|
Component.onCompleted: base.addAdditionalComponents()
|
||||||
|
|
||||||
|
Connections
|
||||||
{
|
{
|
||||||
id: outputProcessWidget
|
target: CuraApplication
|
||||||
OutputProcessWidget { }
|
onAdditionalComponentsChanged: base.addAdditionalComponents()
|
||||||
|
}
|
||||||
|
|
||||||
|
function addAdditionalComponents()
|
||||||
|
{
|
||||||
|
for (var component in CuraApplication.additionalComponents["saveButton"])
|
||||||
|
{
|
||||||
|
CuraApplication.additionalComponents["saveButton"][component].parent = additionalComponentsRow
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -270,39 +270,6 @@ UM.MainWindow
|
||||||
visible: CuraApplication.platformActivity && (main.item == null || !qmlTypeOf(main.item, "QQuickRectangle"))
|
visible: CuraApplication.platformActivity && (main.item == null || !qmlTypeOf(main.item, "QQuickRectangle"))
|
||||||
}
|
}
|
||||||
|
|
||||||
Item
|
|
||||||
{
|
|
||||||
id: additionalComponents
|
|
||||||
width: childrenRect.width
|
|
||||||
anchors.right: actionPanelWidget.left
|
|
||||||
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
|
||||||
anchors.bottom: actionPanelWidget.bottom
|
|
||||||
anchors.bottomMargin: UM.Theme.getSize("thick_margin").height * 2
|
|
||||||
visible: actionPanelWidget.visible
|
|
||||||
Row
|
|
||||||
{
|
|
||||||
id: additionalComponentsRow
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
spacing: UM.Theme.getSize("default_margin").width
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onCompleted: contentItem.addAdditionalComponents()
|
|
||||||
|
|
||||||
Connections
|
|
||||||
{
|
|
||||||
target: CuraApplication
|
|
||||||
onAdditionalComponentsChanged: contentItem.addAdditionalComponents("saveButton")
|
|
||||||
}
|
|
||||||
|
|
||||||
function addAdditionalComponents()
|
|
||||||
{
|
|
||||||
for (var component in CuraApplication.additionalComponents["saveButton"])
|
|
||||||
{
|
|
||||||
CuraApplication.additionalComponents["saveButton"][component].parent = additionalComponentsRow
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Loader
|
Loader
|
||||||
{
|
{
|
||||||
// A stage can control this area. If nothing is set, it will therefore show the 3D view.
|
// A stage can control this area. If nothing is set, it will therefore show the 3D view.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue