aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicknativestyle/controls/DefaultItemDelegateIconLabel.qml
blob: 7ac31e9f3eccaf3ef6462cc75259cc6154035f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

import QtQuick.Controls.impl
import QtQuick.Templates as T

IconLabel {
    text: control.text
    font: control.font
    icon: control.icon
    color: control.palette.windowText
    spacing: control.spacing
    mirrored: control.mirrored
    display: control.display
    alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon
        ? Qt.AlignCenter : Qt.AlignLeft
    leftPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0
    rightPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0

    readonly property T.ItemDelegate control: parent as T.ItemDelegate
}