QDeclarativeNdefRecord Class ReferenceThe QDeclarativeNdefRecord class implements the NdefRecord element in QML. More... #include <QDeclarativeNdefRecord> Inherits: QObject. Properties
Public Functions
Signals
Macros
Additional Inherited Members
Detailed DescriptionThe QDeclarativeNdefRecord class implements the NdefRecord element in QML. The QDeclarativeNdefRecord class is the base class for all NdefRecord elements in QML. To support a new NDEF record type in QML subclass this class and expose new properties, member functions and signals appropriate for the new record type. The following must be done to create a new NDEF record type in QML:
For example the declaration of such a class may look like the following. class QDeclarativeNdefFooRecord : public QDeclarativeNdefRecord { Q_OBJECT Q_PROPERTY(int foo READ foo WRITE setFoo NOTIFY fooChanged) public: explicit QDeclarativeNdefFooRecord(QObject *parent = 0); Q_INVOKABLE QDeclarativeNdefFooRecord(const QNdefRecord &record, QObject *parent = 0); ~QDeclarativeNdefFooRecord(); int foo() const; void setFoo(int value); signals: void fooChanged(); }; Within the implementation file the Q_DECLARE_NDEFRECORD() macro is expanded: Q_DECLARE_NDEFRECORD(QDeclarativeNdefFooRecord, QNdefRecord::ExternalRtd, "com.example:f") Finially the application or plugin code calls qmlRegisterType(): qmlRegisterType<QDeclarativeNdefFooRecord>(uri, 1, 0, "NdefFooRecord"); See also NdefRecord. Property Documentation
|
QString | recordType () const |
void | setRecordType ( const QString & type ) |
Notifier signal:
void | recordTypeChanged () |
Constructs a new empty QDeclarativeNdefRecord with parent.
Constructs a new QDeclarativeNdefRecord representing record. The parent of the newly constructed object will be set to parent.
Returns a copy of the record.
See also setRecord().
This signal is emitted when the record type changes.
Sets the record to record.
See also record().
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt qtmobility-1.2 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com