How to access device settings
| Wed, 2005-05-25 07:11 | |
|
hi all i am working on series 60 device N6600. Can anybody please tell me how do i access the device settings incl. all phone settings call settings, date n time settings etc. Is there any api for this or do we need check this from some file. any hints would be useful thanks warm regards |
|






Forum posts: 13
i am working on series 60 device N6600. Can anybody please tell me how do i access the device settings incl. all phone settings call settings, date n time settings etc. Is there any api for this or do we need check this from some file. any hints would be useful
thanks
It is very much possible to access device settings (any one like connection ,sms,mms,memory settings)using API s available in series60 SDK from settings database.
here is the sample code to access connection settings
CCommsDatabase* commDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
CleanupStack::PushL(commDb);
CApListItemList* apList = new (ELeave) CApListItemList();
CleanupStack::PushL(apList);
CApAccessPointItem* apItem= CApAccessPointItem::NewLC();
CApDataHandler *dataHandle=CApDataHandler::NewLC(*commDb);
dataHandle->AccessPointDataL(uid,*apItem);
const TDesC& name=apItem->ConnectionName();
I hope this will do ur purpose.
Forum posts: 83
i am still not able to fing any relevant information for following classes
CApListItemList
CApAccessPointItem
CApDataHandler
can any one please give some pointer for the same.
warm regards
saurabh
Forum posts: 13
Link against those libraries .
Forum posts: 83
Link against those libraries .
thats al right prasad but where can i find documentation for these libraries
and r u sure that using these classes one can access all device settings that are accessible to cell phone user. e.g. phone settings->standby mode , phone setting->Display->screen saver time out, Date and time Settings-> Date Seperator ecte etc.
warm regards
saurabh
Forum posts: 83
warm regards
saurabh
Forum posts: 5
Forum posts: 2