locsrv_plat/supl_query_secondary_display_api/inc/epos_omasuplquerycoverui.h
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Cover UI command definitions for SUPL queries
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef EPOS_OMASUPLQUERYCOVERUI_H_
       
    19 #define EPOS_OMASUPLQUERYCOVERUI_H_
       
    20 
       
    21 // System Includes
       
    22 #include <e32base.h>
       
    23 
       
    24 // The category UID for the commands in this header file.
       
    25 // UID of the SUPL Query Notifier Dll ( epos_omasuplnotifier.dll )
       
    26 //
       
    27 const TUid KCatUidSuplQuery = { 0x10009BF6 };
       
    28 
       
    29 
       
    30 // Dialogs shown by SUPL Notifers. These commands are handled using the
       
    31 // Secondary Display support in Avkon.
       
    32 //
       
    33 enum TEposSUPLSettingsCoverUiCmds
       
    34     {
       
    35     /**
       
    36      * Command for displaying a confirmation query dialog, which seeks confirmation from the 
       
    37      * user as to whether he wants to use SUPL. The dialog is displayed when the user is
       
    38      * in his home network.
       
    39      * Dialog Type : Message Query Dialog     
       
    40      * Hint String : "Connection to network positioning server is requested. Proceed?"
       
    41      *               "Server Settings ?" Link     
       
    42      */
       
    43     ECmdSuplHomeNetwork = 1,
       
    44     
       
    45     /**
       
    46      * Command for displaying a confirmation query dialog, which seeks confirmation from the 
       
    47      * user as to whether he wants to use SUPL. The dialog is displayed when the user is
       
    48      * not in his home network.
       
    49      * Dialog Type : Message Query Dialog with link     
       
    50      * Hint String : "Connection to network positioning server is requested. You are outside home network. Proceed?"
       
    51      *               "Server Settings ?" Link
       
    52      */
       
    53     ECmdSuplRoamingNetwork = 2,    
       
    54     
       
    55     /**
       
    56      * Command for displaying a timeout query dialog, which informs the user about the 
       
    57      * timeout of SUPL Request. The dialog is displayed when the SUPL connection times out.
       
    58      * Dialog Type : Query Dialog     
       
    59      * Hint String : "Positioning server SUPL request timed out. Network connection not started."
       
    60      */
       
    61     ECmdSuplTimeOut = 3    
       
    62     };
       
    63 
       
    64 #endif      // EPOS_OMASUPLQUERYCOVERUI_H_            
       
    65 // End of File