summaryrefslogtreecommitdiffstats
path: root/examples/nfc/poster/doc/src/poster.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nfc/poster/doc/src/poster.qdoc')
-rw-r--r--examples/nfc/poster/doc/src/poster.qdoc62
1 files changed, 0 insertions, 62 deletions
diff --git a/examples/nfc/poster/doc/src/poster.qdoc b/examples/nfc/poster/doc/src/poster.qdoc
deleted file mode 100644
index b94bcca8..00000000
--- a/examples/nfc/poster/doc/src/poster.qdoc
+++ /dev/null
@@ -1,62 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2017 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the documentation of the Qt local connectivty modules.
-**
-** $QT_BEGIN_LICENSE:FDL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Free Documentation License Usage
-** Alternatively, this file may be used under the terms of the GNU Free
-** Documentation License version 1.3 as published by the Free Software
-** Foundation and appearing in the file included in the packaging of
-** this file. Please review the following information to ensure
-** the GNU Free Documentation License version 1.3 requirements
-** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-/*!
-\example poster
-\title QML Poster Example
-\brief A QML example about reading and displaying NFC Data Exchange Format (NDEF) messages.
-
-The QML Poster example displays the contents of specifically formatted NFC Data
-Exchange Format (NDEF) messages read from an NFC Tag. The NDEF message must
-contain a URI record, an optional \c image/* MIME record, and one or more
-localized Text records.
-
-\image qml-poster-example.png
-
-\include examples-run.qdocinc
-
-\section1 Applying NDEF Filters
-
-The example is designed to display the content of a very specific type of NFC tag.
-The tag must contain at least one URI record and one text record. If those two
-record types do not exist, nothing will happen. Such filtering is applied via the
-\l NearField type's filter property. The property accepts a list of \l NdefFilter objects.
-
-\snippet poster/poster.qml QML NDEF filtering
-
-\section1 Processing Found NDEF Messages
-
-Once an appropriate tag is found, the \l NearField::messageRecords property reflects the content.
-It transports the list of found NDEF records. The QML snippet below
-demonstrates how these records can be accessed:
-
-\snippet poster/poster.qml messageRecordsChanged 1
-\snippet poster/poster.qml messageRecordsChanged 2
-\snippet poster/poster.qml messageRecordsChanged 3
-
-\sa {Qt NFC}
-*/