Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToolboxDetailList.qml « components « qml « resources « Toolbox « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22c6b6045f43c9bb64347114d2a128cf5af9c747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2019 Ultimaker B.V.
// Toolbox is released under the terms of the LGPLv3 or higher.

import QtQuick 2.10
import QtQuick.Controls 2.3
import UM 1.1 as UM

Item
{
    id: detailList
    ScrollView
    {
        clip: true
        anchors.fill: detailList

        Column
        {
            anchors
            {
                right: parent.right
                topMargin: UM.Theme.getSize("wide_margin").height
                bottomMargin: UM.Theme.getSize("wide_margin").height
                top: parent.top
            }
            height: childrenRect.height + 2 * UM.Theme.getSize("wide_margin").height
            spacing: UM.Theme.getSize("default_margin").height

            Repeater
            {
                model: toolbox.packagesModel
                delegate: Loader
                {
                    // FIXME: When using asynchronous loading, on Mac and Windows, the tile may fail to load complete,
                    // leaving an empty space below the title part. We turn it off for now to make it work on Mac and
                    // Windows.
                    // Can be related to this QT bug: https://bugreports.qt.io/browse/QTBUG-50992
                    asynchronous: false
                    source: "ToolboxDetailTile.qml"
                }
            }
        }
    }
}