How to access device settings

Login to reply to this topic.
Wed, 2005-05-25 07:11
Joined: 2004-12-31
Forum posts: 83
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

saurabh


Wed, 2005-05-25 08:39
Joined: 2004-12-20
Forum posts: 13
Re: How to access device settings
Quote from: saurabh_gyl
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



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.



Thu, 2005-05-26 11:36
Joined: 2004-12-31
Forum posts: 83
Re: How to access device settings
hi there..
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

Thu, 2005-05-26 11:44
Joined: 2004-12-20
Forum posts: 13
Re: How to access device settings
All these classes are with apengine.lib(for connection information) ,gsmbas.lib (for network information)which are  in series 60 SDK 1.2(if i guess correctly).
Link against those libraries .

   
Thu, 2005-05-26 12:41
Joined: 2004-12-31
Forum posts: 83
Re: How to access device settings
Quote from: prasad
All these classes are with apengine.lib(for connection information) ,gsmbas.lib (for network information)which are  in series 60 SDK 1.2(if i guess correctly).
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

Fri, 2005-05-27 13:20
Joined: 2004-12-31
Forum posts: 83
Re: How to access device settings
can any one please tell whether this is even possible or not  Huh

warm regards

saurabh

Tue, 2005-06-14 07:02
Joined: 2005-06-09
Forum posts: 5
Re: How to access device settings
Date and Time settings can be accessed using the TLocale class.
Tue, 2005-08-16 12:56
Joined: 2005-05-02
Forum posts: 2
Re: How to access device settings
How to access call settings???
  • Login to reply to this topic.