mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
187 lines
No EOL
6.3 KiB
QML
187 lines
No EOL
6.3 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Uranium is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
Item
|
|
{
|
|
id: materialList
|
|
width: materialScrollView.width - 17
|
|
height: childrenRect.height
|
|
|
|
// Children
|
|
UM.I18nCatalog { id: catalog; name: "cura"; }
|
|
Cura.MaterialBrandsModel { id: materialsModel }
|
|
Cura.FavoriteMaterialsModel { id: favoriteMaterialsModel }
|
|
Cura.GenericMaterialsModel { id: genericMaterialsModel }
|
|
Column
|
|
{
|
|
Rectangle
|
|
{
|
|
property var expanded: true
|
|
|
|
id: favorites_section
|
|
height: childrenRect.height
|
|
width: materialList.width
|
|
Rectangle
|
|
{
|
|
id: favorites_header_background
|
|
color: UM.Theme.getColor("favorites_header_bar")
|
|
anchors.fill: favorites_header
|
|
}
|
|
Row
|
|
{
|
|
id: favorites_header
|
|
Label
|
|
{
|
|
id: favorites_name
|
|
text: "Favorites"
|
|
height: UM.Theme.getSize("favorites_row").height
|
|
width: materialList.width - UM.Theme.getSize("favorites_button").width
|
|
verticalAlignment: Text.AlignVCenter
|
|
leftPadding: 4
|
|
}
|
|
Button
|
|
{
|
|
text: ""
|
|
implicitWidth: UM.Theme.getSize("favorites_button").width
|
|
implicitHeight: UM.Theme.getSize("favorites_button").height
|
|
UM.RecolorImage {
|
|
anchors
|
|
{
|
|
verticalCenter: parent.verticalCenter
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
width: UM.Theme.getSize("standard_arrow").width
|
|
height: UM.Theme.getSize("standard_arrow").height
|
|
sourceSize.width: width
|
|
sourceSize.height: height
|
|
color: "black"
|
|
source: favorites_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
|
|
}
|
|
style: ButtonStyle
|
|
{
|
|
background: Rectangle
|
|
{
|
|
anchors.fill: parent
|
|
color: "transparent"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
MouseArea
|
|
{
|
|
anchors.fill: favorites_header
|
|
onPressed:
|
|
{
|
|
favorites_section.expanded = !favorites_section.expanded
|
|
}
|
|
}
|
|
Column
|
|
{
|
|
anchors.top: favorites_header.bottom
|
|
anchors.left: parent.left
|
|
width: materialList.width
|
|
height: favorites_section.expanded ? childrenRect.height : 0
|
|
visible: favorites_section.expanded
|
|
Repeater
|
|
{
|
|
model: favoriteMaterialsModel
|
|
delegate: MaterialSlot {
|
|
material: model
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Rectangle
|
|
{
|
|
property var expanded: true
|
|
|
|
id: generic_section
|
|
height: childrenRect.height
|
|
width: materialList.width
|
|
Rectangle
|
|
{
|
|
id: generic_header_background
|
|
color: UM.Theme.getColor("favorites_header_bar")
|
|
anchors.fill: generic_header
|
|
}
|
|
Row
|
|
{
|
|
id: generic_header
|
|
Label
|
|
{
|
|
id: generic_name
|
|
text: "Generic"
|
|
height: UM.Theme.getSize("favorites_row").height
|
|
width: materialList.width - UM.Theme.getSize("favorites_button").width
|
|
verticalAlignment: Text.AlignVCenter
|
|
leftPadding: 4
|
|
}
|
|
Button
|
|
{
|
|
text: ""
|
|
implicitWidth: UM.Theme.getSize("favorites_button").width
|
|
implicitHeight: UM.Theme.getSize("favorites_button").height
|
|
UM.RecolorImage {
|
|
anchors
|
|
{
|
|
verticalCenter: parent.verticalCenter
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
width: UM.Theme.getSize("standard_arrow").width
|
|
height: UM.Theme.getSize("standard_arrow").height
|
|
sourceSize.width: width
|
|
sourceSize.height: height
|
|
color: "black"
|
|
source: generic_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
|
|
}
|
|
style: ButtonStyle
|
|
{
|
|
background: Rectangle
|
|
{
|
|
anchors.fill: parent
|
|
color: "transparent"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
MouseArea
|
|
{
|
|
anchors.fill: generic_header
|
|
onPressed:
|
|
{
|
|
generic_section.expanded = !generic_section.expanded
|
|
}
|
|
}
|
|
Column
|
|
{
|
|
anchors.top: generic_header.bottom
|
|
width: materialList.width
|
|
anchors.left: parent.left
|
|
height: generic_section.expanded ? childrenRect.height : 0
|
|
visible: generic_section.expanded
|
|
Repeater
|
|
{
|
|
model: genericMaterialsModel
|
|
delegate: MaterialSlot {
|
|
material: model
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Repeater
|
|
{
|
|
id: brand_list
|
|
model: materialsModel
|
|
delegate: MaterialBrandSection {}
|
|
}
|
|
}
|
|
} |