mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 00:04:27 +08:00
46 lines
1.1 KiB
QML
46 lines
1.1 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Toolbox is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
import UM 1.1 as UM
|
|
|
|
Column
|
|
{
|
|
height: childrenRect.height
|
|
spacing: UM.Theme.getSize("toolbox_showcase_spacing").width
|
|
width: parent.width
|
|
Label
|
|
{
|
|
id: heading
|
|
text: catalog.i18nc("@label", "Featured")
|
|
width: parent.width
|
|
color: UM.Theme.getColor("text_medium")
|
|
font: UM.Theme.getFont("medium")
|
|
}
|
|
Row
|
|
{
|
|
height: childrenRect.height
|
|
spacing: UM.Theme.getSize("wide_margin").width
|
|
anchors
|
|
{
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
Repeater
|
|
{
|
|
model: {
|
|
if ( toolbox.viewCategory == "plugin" )
|
|
{
|
|
return toolbox.pluginsShowcaseModel
|
|
}
|
|
if ( toolbox.viewCategory == "material" )
|
|
{
|
|
return toolbox.materialsShowcaseModel
|
|
}
|
|
}
|
|
delegate: ToolboxDownloadsShowcaseTile {}
|
|
}
|
|
}
|
|
}
|