mpengine/src/mpmpxplaybackframeworkwrapper.cpp
changeset 58 ed94e1e8390e
parent 54 c5b304f4d89b
child 61 3cd404d31176
equal deleted inserted replaced
54:c5b304f4d89b 58:ed94e1e8390e
    34     This signal is emitted when MPXPlaybackUtility sends a volume related property notification,
    34     This signal is emitted when MPXPlaybackUtility sends a volume related property notification,
    35     such as EPbPropertyVolume, EPbPropertyMaxVolume, EPbPropertyMute.
    35     such as EPbPropertyVolume, EPbPropertyMaxVolume, EPbPropertyMute.
    36  */
    36  */
    37 
    37 
    38 /*!
    38 /*!
    39     \fn void corruptedStop();
    39     \fn void corruptedStop( bool lastSong );
    40 
    40 
    41     This signal is emitted when a courrpted song is discovered and is the last song of 
    41     This signal is emitted when playback encounters a corrupted song. \a lastSong
    42     the playlist
    42     indicates whether this is the last song of the playlist.
    43  */
    43 */
    44 
    44 
    45 /*!
    45 /*!
    46     \fn void fileCorrupted(int fileId);
    46     \fn void fileCorrupted(int fileId);
    47 
    47 
    48     This signal is emitted when a courrpted song is discovered with fileId.
    48     This signal is emitted when a courrpted song is discovered with fileId.
    49  */
    49  */
    50 
    50 
    51 /*!
    51 /*!
    52  Constructs the utility wrapper.
    52  Constructs the utility wrapper.
    53  */
    53  */
    54 MpMpxPlaybackFrameworkWrapper::MpMpxPlaybackFrameworkWrapper( TUid hostUid, MpSongData *songData, QObject *parent )
    54 MpMpxPlaybackFrameworkWrapper::MpMpxPlaybackFrameworkWrapper( quint32 clientSecureId, MpSongData *songData, QObject *parent )
    55     : QObject(parent)
    55     : QObject(parent)
    56 {
    56 {
    57     d_ptr = new MpMpxPlaybackFrameworkWrapperPrivate(this );
    57     d_ptr = new MpMpxPlaybackFrameworkWrapperPrivate(this );
    58     d_ptr->init( hostUid, songData );
    58     d_ptr->init( clientSecureId, songData );
    59 }
    59 }
    60 
    60 
    61 /*!
    61 /*!
    62  Destructs the utility wrapper.
    62  Destructs the utility wrapper.
    63  */
    63  */