Example Application Guide

 

geoprofiles.hrh

00001 /*
00002 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
00003 * All rights reserved.
00004 * This component and the accompanying materials are made available
00005 * under the terms of the License "Eclipse Public License v1.0"
00006 * which accompanies this distribution, and is available
00007 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
00008 *
00009 * Initial Contributors:
00010 * Nokia Corporation - initial contribution.
00011 *
00012 * Contributors:
00013 *
00014 * Description:  Commands for Geo Profiles Application.
00015 *
00016 */
00017 
00018 
00019 #ifndef GEOPROFILES_HRH
00020 #define GEOPROFILES_HRH
00021 
00022 /**
00023  * Geo Profiles Application commands
00024  */
00025 enum TGeoProfilesCommands
00026         {
00027         EGeoProfilesNone = 0x6000,
00028         EGeoProfilesAdd,
00029         EGeoProfilesOpen,
00030         EGeoProfilesDelete
00031         };                  
00032 
00033 /**
00034  * Form Element Ids
00035  */
00036 enum TGeoProfileFormIds
00037     {
00038     EGeoProfileIdNone   = 0,
00039     EGeoPlace,
00040     EGeoProfileName,
00041     EGeoProfileType,
00042     EGeoRadius
00043     };
00044     
00045 // Constant Defintions
00046 #define KGeoPlaceNameMaxLength          256
00047 
00048 #define KGeoProfileRadiusMaxLength      3
00049 
00050 #define KGeoProfileRadiusMax            500
00051 
00052 #define KGeoProfileRadiusMin            100
00053 
00054 #define KGeoProfileRadiusUnsetValue     -1
00055 
00056 #define KGeoProfileTriggerModeLength    50
00057 
00058 #define KGeoProfileNameMaxLength        256
00059     
00060 #endif
00061         

© Nokia 2009

Back to top