speechsrv_plat/srsf_secondarydisplay_api/inc/secondarydisplay/appcontrollersecondarydisplayapi.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     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:  The set of messages provided to Secondary Display software by
       
    15 *              : Application controller.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef APPCONTROLLERSECONDARYDISPLAYAPI_H
       
    20 #define APPCONTROLLERSECONDARYDISPLAYAPI_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 /*
       
    26 * ==============================================================================
       
    27 * This file contains the following sections:
       
    28 *   - Dialog definitions
       
    29 *   - Command definitions
       
    30 *   - Event definitions
       
    31 *   - Parameter definitions
       
    32 * ==============================================================================
       
    33 */
       
    34 
       
    35 namespace SecondaryDisplay
       
    36 {
       
    37 	
       
    38 // The category UID for the messages in this header file.
       
    39 //
       
    40 const TUid KCatAppController = {0x10281D15};
       
    41 
       
    42 /*
       
    43 * ==============================================================================
       
    44 * Dialogs shown by VCExecutorApp subsystem. These messages are handled using the
       
    45 * Secondary Display support in Avkon.
       
    46 * ==============================================================================
       
    47 */
       
    48 enum TAppControllerSecondaryDisplayDialogs
       
    49     {
       
    50     /**
       
    51     * No note. Error condition if this comes to CoverUI
       
    52     */
       
    53     ECmdAppControllerNoNote = 0,
       
    54     
       
    55     /**
       
    56     * A command for showing BT activation note on secondary display.
       
    57     */
       
    58     ECmdShowOfflineBtActivationQuery,
       
    59 
       
    60     /**
       
    61     * A command for showing BT disabled in offline on secondary display.
       
    62     */
       
    63     ECmdShowBtDisabledOfflineNote,
       
    64 
       
    65     /**
       
    66     * A command for showing BT general error on secondary display.
       
    67     */
       
    68     ECmdShowBtGeneralErrorNote,
       
    69     
       
    70     /**
       
    71     * A command for showing leave offline profile note on secondary display.
       
    72     */
       
    73     ECmdShowLeaveOfflineProfileQuery
       
    74     };
       
    75 }
       
    76 
       
    77 #endif      // APPCONTROLLERSECONDARYDISPLAYAPI_H
       
    78             
       
    79 // End of File