summaryrefslogtreecommitdiffstats
path: root/examples/nfc/ndefeditor/NdefRecordDelegate.qml
blob: f01aff054b116a2ca69b3b978df2a9e1896adb08 (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
46
47
48
49
50
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

import NdefEditor

SwipeDelegate {
    required property int index
    required property int recordType
    required property string recordText

    id: delegate

    contentItem: ColumnLayout {
        Label {
            text: qsTr("Record %L1 - %2").arg(delegate.index + 1).arg(
                    delegate.describeRecordType(delegate.recordType))
            font.bold: true
        }

        Label {
            text: delegate.recordText
            elide: Text.ElideRight
            maximumLineCount: 1
            Layout.fillWidth: true
        }
    }

    swipe.left: Button {
        text: qsTr("Delete")
        padding: 12
        height: delegate.height
        anchors.left: delegate.left
        SwipeDelegate.onClicked: delegate.deleteClicked()
    }

    function describeRecordType(type) {
        switch (type) {
        case NdefMessageModel.TextRecord: return qsTr("Text")
        case NdefMessageModel.UriRecord: return qsTr("URI")
        default: return qsTr("Other")
        }
    }

    signal deleteClicked()
}