このページでは

user QML Value Type

ユーザータイプは、特定のPlace コンテンツアイテムを投稿したユーザーを識別します。詳細...

Import Statement: import QtLocation 6.11
Since: QtLocation 5.5

プロパティ

詳細な説明

Place の各コンテンツアイテムには、コンテンツを投稿したユーザが関連付けられています。このタイプはそのユーザーに関する情報を提供します。

次の例は、ある論説を投稿したユーザーに関する情報を表示する方法を示している:

import QtQuick
import QtPositioning
import QtLocation

EditorialModel {
    id: editorialModel
    batchSize: 3
    place: place
}

ListView {
    model: editorialModel
    delegate: Item {
        anchors.fill: parent

        Column {
            width: parent.width
            clip: true

            Text {
                text: title
                width: parent.width
                wrapMode: Text.WordWrap
                font.pixelSize: 24
            }

            Text {
                text: text
                width: parent.width
                wrapMode: Text.WordWrap
                font.pixelSize: 20
            }

            Row {
                Image {
                    width: 16
                    height: 16

                    source: supplier.icon.url(Qt.size(width, height), Icon.List)
                }

                Text {
                    text: "Provided by " + supplier.name
                    font.pixelSize: 16
                }
            }

            Text {
                text: "Contributed by " + user.name
                font.pixelSize: 16
            }

            Text {
                text: attribution
                font.pixelSize: 8
            }
        }
    }
}

ImageModelReviewModelEditorialModelも参照してください

プロパティ文書

name : string

このプロパティはユーザー名を保持する。

userId : string

このプロパティは、ユーザの一意な識別子を保持する。

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.