You Are Here:

Community: Wiki

This page was last modified on 9 April 2008, at 09:36.

CMPMediaPlayerSettings:

From Forum Nokia Wiki

The CMPMediaPlayerSettings application provides the Media Settings UI, where the user can control the volume and playing mode of the file. The SetAutoDisconTimeL(TInt) can be used to automatically discontinue playing the file after a given period of time.

Below is the example code of CMPMediaPlayerSettings usage.

void CTestMPSettingsAppUi::ContructL()
{
...
CMPMediaPlayerSettings* iSetting = CMPMediaPlayerSettings::NewL();
...
}
 
void CTestMPSettingsAppUi::ControlVolumeLevelL()
{
//Returns Media Player volume level.
TInt i = iSetting->VolumeLevelL();
 
//Sets Media Player volume level. Ranges between 1-10.
iSetting->SetVolumeLevelL(8);
 
}
void CTestMPSettingsAppUi::ControlMutedL()
{
//Sets Media Player in Mute mode.
iSetting->SetMutedL(ETrue);
 
//Returns true if Media Player is in Mute mode.
iSetting->IsMutedL()
}
 
void CTestMPSettingsAppUi::ControlAutoDisconTimeL()
{
//Sets Media Player auto disconnection time to 10 mins.
//Ranges between 1-99, Time in minutes
iSetting->SetAutoDisconTimeL(10);
 
//Returns Media Player auto disconnection time.
//disconTime contains auto disconnection time.
TInt disconTime = iSetting->AutoDisconTimeL();
}

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia