Archived:Location Settings Launch Symbian API
extkbeditor1
(Talk | contribs) m |
m (Lpvalente -) |
||
| (8 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Symbian C++]][[Category:S60 3rd Edition | + | [[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category:Code Examples]][[Category:Code Snippet]] |
| − | + | {{Archived|timestamp=20120313122051|user=roy.debjit| }} | |
| − | + | ||
| − | {{ | + | {{ArticleMetaData <!-- v1.2 --> |
| − | {{ | + | |sourcecode= [[Media:LocalSettingUi.zip]] |
| − | | | + | |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'') --> |
| − | | | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | | | + | |platform= S60 3rd Edition, FP2 |
| − | | | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| − | | | + | |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 | ||
}} | }} | ||
| − | {{ | + | {{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]]. | ||
| − | + | }} | |
| − | + | ||
==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 | + | 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 | + | // 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 | + | // 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== | ||
| − | [[ | + | [[File:LocalSettingUi.zip]] |
Latest revision as of 17:18, 4 October 2012
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
Source file: Media:LocalSettingUi.zip
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: :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;

