testexecfw/useremul/inc/UserEmulator.hrh
changeset 0 3e07fef1e154
equal deleted inserted replaced
-1:000000000000 0:3e07fef1e154
       
     1 /*------------------------------------------------------------------
       
     2  -
       
     3  * Software Name : UserEmulator
       
     4  * Version       : v4.2.1309
       
     5  * 
       
     6  * Copyright (c) 2009 France Telecom. All rights reserved.
       
     7  * This software is distributed under the License 
       
     8  * "Eclipse Public License - v 1.0" the text of which is available
       
     9  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    10  *
       
    11  * Initial Contributors:
       
    12  * France Telecom 
       
    13  *
       
    14  * Contributors:
       
    15  *------------------------------------------------------------------
       
    16  -
       
    17  * File Name: UserEmulator.hrh
       
    18  * 
       
    19  * Created: 13/08/2009
       
    20  * Author(s): Marcell Kiss, Reshma Sandeep Das
       
    21  *   
       
    22  * Description:
       
    23  * This file contains declarations for constants of UserEmulator.
       
    24  * The file can be included in C++ or resource file.
       
    25  *------------------------------------------------------------------
       
    26  -
       
    27  *
       
    28  */
       
    29 
       
    30 #ifndef USEREMULATOR_HRH__
       
    31 #define USEREMULATOR_HRH__
       
    32 
       
    33 #define _UID3 0x2001C3AF
       
    34 
       
    35 /** User Emulator Menu commands */
       
    36 enum TUserEmulatorIds
       
    37 {
       
    38 	ERunScripts= 0x6001, // start value must not be 0,
       
    39 	EHelp,
       
    40 	EAbout,
       
    41 	ESettings,
       
    42 	ERecordKeys,
       
    43 	ERandomTestStart,
       
    44 	ESettingsPath,
       
    45 	ECmdOpen,
       
    46 	ECtGeneralId,
       
    47 	EMenuSelectCmdId,
       
    48 	ESelectRunScript,
       
    49 	ESystemInfo,
       
    50 	EViewLogs,
       
    51 	EConfirmationQuery,	
       
    52 	EMark,
       
    53 	EMarkAll,
       
    54 	EUnmark,
       
    55 	EUnmarkAll
       
    56 };
       
    57 
       
    58 /** User Emulator View Ids */
       
    59 enum TViewId
       
    60 {
       
    61     EScriptsView = 1
       
    62 };
       
    63 
       
    64 /** Script execution status */
       
    65 enum TScriptStatus
       
    66 {
       
    67 	EScriptPassed = 1,
       
    68 	EScriptFailed,
       
    69 	EScriptCancelled,
       
    70 	EScriptUnMark
       
    71 };
       
    72 
       
    73 #endif // USEREMULATOR_HRH__