aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/itemdelegate/itemdelegate.qml
blob: d53ee6dc3cdea4727187b998991192864215b824 (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
44
45
import QtQuick.Controls

import "../shared"

FlowPane {
    ItemDelegate {
        text: "Style's icon color"
        icon.source: "../shared/heart.svg"
    }

    ItemDelegate {
        text: "Style's icon color (action)"
        action: Action {
            icon.source: "../shared/heart.svg"
        }
    }

    ItemDelegate {
        text: "Green icon color"
        icon.source: "../shared/heart.svg"
        icon.color: "green"
    }

    ItemDelegate {
        text: "Green icon color (action)"
        action: Action {
            icon.source: "../shared/heart.svg"
            icon.color: "green"
        }
    }

    ItemDelegate {
        text: "Original icon color"
        icon.source: "../shared/heart.svg"
        icon.color: "transparent"
    }

    ItemDelegate {
        text: "Original icon color (action)"
        action: Action {
            icon.source: "../shared/heart.svg"
            icon.color: "transparent"
        }
    }
}