Namespaces
Variants
Actions
(Difference between revisions)

Archived:Location Settings Launch Symbian API

Jump to: navigation, search
m
m (Automated change of text from {{NoteS}} to {{Note|. (using newer note template))
Line 14: Line 14:
  
  
{{NoteS}}
+
{{Note|
 
:This API is not part of the public SDK. It can be found in the [[SDK API Plug-in]].  
 
:This API is not part of the public SDK. It can be found in the [[SDK API Plug-in]].  
{{NoteE}}
+
}}
  
 
==Purpose==
 
==Purpose==

Revision as of 05:51, 8 June 2011

Template:KBCS

Article Metadata

Compatibility
Platform(s): S60 3rd Edition, FP2

Article
Keywords: Location Settings Launch API
Created: (13 Jun 2008)
Last edited: hamishwillee (08 Jun 2011)


Note.png
Note: :This API is not part of the public SDK. It can be found in the SDK API Plug-in.

Purpose

The Location Settings Launch API is used for launching the Location Notation Prefences Settings UI and the Position Method Settings UI.

Header files

 locsettingsuiclient.h

Link against

 locsettingsuiclient.lib


Code examples

The client-side resource class to launch the Location settings UI is done using the CLocSettingsUiClient class. The following code is used to initialize the class.

 CLocSettingsUiClient* iLocSettingsUi = CLocSettingsUiClient::NewL();

Launching the Position Method Settings UI:

 // UID for launching Position Method Settings 
// const TInt KLocPsySettingsUID = 0x10275062;
TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(TUid::Uid
(KLocPsySettingsUID),KDefaultParamValue,iStatus));

Launching the Location Notation Preferences Setting UI:

 // UID for launching Location Notation Prefences Settings UI is 
// const TInt KLocNotPrefSettingsUID = 0x1020690F;
TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(
TUid::Uid(KLocNotPrefSettingsUID), KDefaultParamValue, iStatus ));

Canceling an already launched settings UI:

 iLocSettingsUi->CancelLaunchedSettingsUi();

Releasing code:

 delete iLocSettingsUi;


Example project

File:LocalSettingUi.zip

522 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved