File: ContactBookDelegate.qml

package info (click to toggle)
qt6-declarative 6.9.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 310,088 kB
  • sloc: cpp: 779,045; javascript: 514,338; xml: 10,981; python: 2,806; ansic: 2,253; java: 954; sh: 262; makefile: 41; php: 27
file content (44 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download
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
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

Rectangle {
    color: "white"
    border.width: model.isLoadingElement ? 0 : 1
    border.color: "black"
    implicitHeight: 50
    RowLayout {
        anchors.fill: parent
        spacing: 5
        BusyIndicator {
            Layout.alignment: Qt.AlignHCenter
            implicitHeight: 30
            implicitWidth: implicitHeight
            visible: model.isLoadingElement
        }
        Label {
            font.pixelSize: 30
            font.bold: true
            text: model.number
            visible: !model.isLoadingElement
        }
        ColumnLayout {
            implicitHeight: 40
            Layout.fillWidth: true
            Layout.fillHeight: true
            Layout.margins: 3
            visible: !model.isLoadingElement
            Label {
                font.pixelSize: 16
                text: model.title
            }
            Label {
                font.pixelSize: 14
                text: model.subtitle
            }
        }
    }
}