class MRemConDatabaseUnawareNowPlayingTargetObserver |
It is intended for the client which is database aware. Clients must implement this interface in order to instantiate objects of type CRemConDatabaseUnawareNowPlayingTarget. This interface passes incoming commands from RemCon to the client.
Public Member Functions | |
---|---|
void | MrcdunptoAddToNowPlaying(const TRemConItemUid &, TRemConFolderScope) |
void | MrcdunptoPlayItem(const TRemConItemUid &, TRemConFolderScope) |
void | MrcdunptoAddToNowPlaying | ( | const TRemConItemUid & | aItem, |
TRemConFolderScope | aScope | |||
) | [pure virtual] |
Requests to add an item to now playing list.
const TRemConItemUid & aItem | The item requested to play.If it does not refer to any valid item, the client must call CRemConNowPlayingTargetBase::AddToNowPlayingResponse() with the error KErrInvalidUid;If it refers to a directory which can not be handled by this media player, the client must call CRemConNowPlayingTargetBase::AddToNowPlayingResponse() with the error KErrNowPlayingUidIsADirectory;If it is in use and can not be added to now playing list, the client must call CRemConNowPlayingTargetBase::AddToNowPlayingResponse() with the error KErrNowPlayingMediaInUse; |
TRemConFolderScope aScope | The scope in which the item was requested to play. |
void | MrcdunptoPlayItem | ( | const TRemConItemUid & | aItem, |
TRemConFolderScope | aScope | |||
) | [pure virtual] |
Requests to play an item.
const TRemConItemUid & aItem | The item requested to play.If it does not refer to any valid item, the client must call CRemConNowPlayingTargetBase::PlayItemResponse() with the error KErrInvalidUid;If it refers to a directory which can not be handled by this media player, the client must call CRemConNowPlayingTargetBase::PlayItemResponse() with the error KErrNowPlayingUidIsADirectory;If it is in use and can not be played, the client must call CRemConNowPlayingTargetBase::PlayItemResponse() with the error KErrNowPlayingMediaInUse; |
TRemConFolderScope aScope | The scope in which the item was requested to play. |