Categories: S60 | Symbian C++ | Base/System | Multimedia | Audio
This page was last modified 10:41, 2 February 2008.
Profile UID API
From Forum Nokia Wiki
| Note! |
|---|
|
The Profiles UID API plugin provides keys using which we can query default ringing tone,message alert tone and Instant Message alert tone.It also has keys which give information about whether self recorded tones and DRM protected MP4 tones can be used as ringing tones or not.
Use cases
These APIs are useful to play default ringtone by your application. These default tones are stored in Z drive.
Example code
Headers files
#include <centralrepository.h> #include <ProfileEngineInternalCRKeys.h>
Library centralrepository.lib
// We need to Query Central Repository. CRepository* cRepository = CRepository::NewLC( KCRUidProfileEngine ); TBuf<100> tone; // Get the default tone.
KProEngDefaultRingingTone is the id of the default ringing tone.
CAknInformationNote* informationNote = new (ELeave) CAknInformationNote; User::LeaveIfError( cRepository->Get( KProEngDefaultRingingTone , tone ) ); informationNote->ExecuteLD(tone);
KProEngDefaultMessageTone is the id of the default message alert tone.
CAknInformationNote* informationNote = new (ELeave) CAknInformationNote; User::LeaveIfError( cRepository->Get( KProEngDefaultMessageTone, tone ) ); informationNote->ExecuteLD(tone);
KProEngDefaultImTone is the id of the default instant message alert tone.
CAknInformationNote* informationNote = new (ELeave) CAknInformationNote; User::LeaveIfError(cRepository->Get( KProEngDefaultImTone ,tone ) ); informationNote->ExecuteLD(tone);
// To know whether self recorded tones,DRM protected MP4 tones can be used as ringing tones or not
KProEngRecordedRingingTones is the id to check whether self recorded tones can be used as ringing tones or not.
TInt value; //Get the integer value User::LeaveIfError( cRepository->Get( KProEngRecordedRingingTones , value ) ); // To display message _LIT(message0,"Not Permitted"); _LIT(message1,"Permitted"); CAknInformationNote* informationNote = new (ELeave) CAknInformationNote; if(value==0) { informationNote->ExecuteLD(message0); //disabled } else { informationNote->ExecuteLD(message1); //enabled }
KProEngNoDrmMP4RingingTones is the id to check whether self recorded tones can be used as ringing tones or not.
TInt value; //Get the integer value User::LeaveIfError( cRepository->Get( KProEngNoDrmMP4RingingTones, value ) ); // To display message _LIT(message0,"Not Allowed"); _LIT(message1,"Allowed"); CAknInformationNote* informationNote = new (ELeave) CAknInformationNote; if(value==0) { informationNote->ExecuteLD(message1); //allowed, default } else { informationNote->ExecuteLD(message0); //Not allowed }
Example project
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SIP Stack Periodic Registration. | ravinathwani | Symbian Networking & Messaging | 5 | 2006-11-07 12:16 |
| CEikTimeEditor in "Offline" profile | m00gl3 | General Symbian C++ | 0 | 2007-11-06 12:09 |
| 3650 & Plantronics M1000 BT Headset Problem | warrenrazz | Bluetooth Technology | 2 | 2003-05-20 19:53 |
| Ericsson HBH-10 with Nokia 3650 | limjk | Bluetooth Technology | 5 | 2003-05-20 19:54 |
| Plain Profile DM Bootstrap of Nokia 7610 | ajay007 | OMA DM/DS/CP | 0 | 2004-08-03 01:59 |
