Namespaces
Variants
Actions
(Difference between revisions)

Archived:Location Settings Launch Symbian API

Jump to: navigation, search
m
m (Lpvalente -)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:Symbian C++]][[Category:S60 3rd Edition, Feature Pack 2 ]][[Category:Code Examples]]
+
[[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category:Code Examples]][[Category:Code Snippet]]
__NOTOC__
+
{{Archived|timestamp=20120313122051|user=roy.debjit| }}
__NOEDITSECTION__
+
 
{{KBCS}}
+
{{ArticleMetaData <!-- v1.2 -->
{{CodeSnippet
+
|sourcecode= [[Media:LocalSettingUi.zip]]
|id=CS001035
+
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) -->
|platform=S60 3rd Edition, FP2
+
|devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') -->
|devices=
+
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) -->
|category=Symbian C++
+
|platform= S60 3rd Edition, FP2
|subcategory=Location
+
|devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) -->
|creationdate=June 13, 2008
+
|dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 -->
|keywords=Location Settings Launch API
+
|signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer -->
 +
|capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. -->
 +
|keywords= Location Settings Launch API
 +
|language= <!-- Language category code for non-English topics - e.g. Lang-Chinese -->
 +
|translated-by= <!-- [[User:XXXX]] -->
 +
|translated-from-title= <!-- Title only -->
 +
|translated-from-id= <!-- Id of translated revision -->
 +
|review-by= <!-- After re-review: [[User:username]] -->
 +
|review-timestamp= <!-- After re-review: YYYYMMDD -->
 +
|update-by= <!-- After significant update: [[User:username]]-->
 +
|update-timestamp= <!-- After significant update: YYYYMMDD -->
 +
|creationdate= 20080613
 +
|author= [[User:Technical writer 1]]
 +
<!-- The following are not in current metadata -->
 +
|subcategory= Location
 +
|id= CS001035
 
}}
 
}}
  
  
{{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==
  
The Location Settings Launch API is used for launching the Location Notation Prefences Settings UI and the Position Method Settings UI.
+
{{Abstract|The Location Settings Launch API is used for launching the Location Notation Prefences Settings UI and the Position Method Settings UI.}}
  
 
==Header files==
 
==Header files==
Line 33: Line 48:
 
==Code examples==
 
==Code examples==
  
The client-side resource class to launch the Location settings UI is done using the <tt>CLocSettingsUiClient</tt> class. The following code is used to initialize the class.
+
The client-side resource class to launch the Location settings UI is done using the {{Icode|CLocSettingsUiClient}} class. The following code is used to initialize the class.
  
 
<code cpp>
 
<code cpp>
Line 43: Line 58:
 
<code cpp>
 
<code cpp>
 
  // UID for launching Position Method Settings  
 
  // UID for launching Position Method Settings  
  // const TInt KLocPsySettingsUID  = 0x10275062;
+
  // const TInt KLocPsySettingsUID  = 0x10275062;
 
  TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(TUid::Uid
 
  TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(TUid::Uid
 
  (KLocPsySettingsUID),KDefaultParamValue,iStatus));
 
  (KLocPsySettingsUID),KDefaultParamValue,iStatus));
Line 52: Line 67:
 
<code cpp>
 
<code cpp>
 
  // UID for launching Location Notation Prefences Settings UI is  
 
  // UID for launching Location Notation Prefences Settings UI is  
  // const TInt KLocNotPrefSettingsUID = 0x1020690F;
+
  // const TInt KLocNotPrefSettingsUID = 0x1020690F;
 
  TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(  
 
  TRAPD(err, iLocSettingsUi->LaunchSettingsUiAsEmbeddedAppL(  
 
  TUid::Uid(KLocNotPrefSettingsUID), KDefaultParamValue, iStatus ));
 
  TUid::Uid(KLocNotPrefSettingsUID), KDefaultParamValue, iStatus ));
Line 70: Line 85:
  
 
==Example project==
 
==Example project==
[[Image:LocalSettingUi.zip]]
+
[[File:LocalSettingUi.zip]]

Latest revision as of 17:18, 4 October 2012

Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

Article Metadata

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

Article
Keywords: Location Settings Launch API
Created: User:Technical writer 1 (13 Jun 2008)
Last edited: lpvalente (04 Oct 2012)


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

Contents

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

This page was last modified on 4 October 2012, at 17:18.
547 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