qtmobility/src/multimedia/qmetadatawritercontrol.cpp
changeset 15 1f895d8a5b2b
parent 14 6fbed849b4f4
equal deleted inserted replaced
14:6fbed849b4f4 15:1f895d8a5b2b
    55 
    55 
    56     If a QMediaService can provide write access to the meta-data of its
    56     If a QMediaService can provide write access to the meta-data of its
    57     current media it will implement QMetaDataWriterControl.  This control
    57     current media it will implement QMetaDataWriterControl.  This control
    58     provides functions for both retrieving and setting meta-data values.
    58     provides functions for both retrieving and setting meta-data values.
    59     Meta-data may be addressed by the well defined keys in the
    59     Meta-data may be addressed by the well defined keys in the
    60     QtMultimedia::MetaData enumeration using the metaData() functions, or
    60     QtMultimediaKit::MetaData enumeration using the metaData() functions, or
    61     by string keys using the extendedMetaData() functions.
    61     by string keys using the extendedMetaData() functions.
    62 
    62 
    63     The functionality provided by this control is exposed to application code
    63     The functionality provided by this control is exposed to application code
    64     by the meta-data members of QMediaObject, and so meta-data access is
    64     by the meta-data members of QMediaObject, and so meta-data access is
    65     potentially available in any of the media object classes.  Any media
    65     potentially available in any of the media object classes.  Any media
   114 
   114 
   115     Returns true if the meta-data is writable and false otherwise.
   115     Returns true if the meta-data is writable and false otherwise.
   116 */
   116 */
   117 
   117 
   118 /*!
   118 /*!
   119     \fn QVariant QMetaDataWriterControl::metaData(QtMultimedia::MetaData key) const
   119     \fn QVariant QMetaDataWriterControl::metaData(QtMultimediaKit::MetaData key) const
   120 
   120 
   121     Returns the meta-data for the given \a key.
   121     Returns the meta-data for the given \a key.
   122 */
   122 */
   123 
   123 
   124 /*!
   124 /*!
   125     \fn void QMetaDataWriterControl::setMetaData(QtMultimedia::MetaData key, const QVariant &value)
   125     \fn void QMetaDataWriterControl::setMetaData(QtMultimediaKit::MetaData key, const QVariant &value)
   126 
   126 
   127     Sets the \a value of the meta-data element with the given \a key.
   127     Sets the \a value of the meta-data element with the given \a key.
   128 */
   128 */
   129 
   129 
   130 /*!
   130 /*!