voiceui/vcommand/inc/vcommand.hrh
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2004-2005 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:  This file contains declarations for constants of Voice Commands UI.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VCOMMAND_HRH
       
    20 #define VCOMMAND_HRH
       
    21 
       
    22 enum TVCCommandIds
       
    23     {
       
    24     EVCCmdOpen = 1,
       
    25     EVCCmdEdit,
       
    26     EVCCmdPlayback,
       
    27     EVCCmdDelete,
       
    28     EVCCmdSettings,
       
    29     EVCCmdStartVui,
       
    30     EVCCmdRemove,
       
    31     EVCCmdShowMenuBar,
       
    32     EVCCmdIgnore // do nothing
       
    33     };
       
    34 
       
    35 enum TVCSettingsCommandIds
       
    36     {
       
    37     EVCCmdChange = 1,
       
    38     EVCMenuCmdChange,
       
    39     EVCCmdReset
       
    40     };
       
    41 
       
    42 enum TVCSettingsItemIds
       
    43     {
       
    44     EVCSynthesizerItem,
       
    45     EVCVolumeItem,
       
    46     EVCRejectionItem,
       
    47     EVCVerificationItem,
       
    48     EVCResetItem
       
    49     };
       
    50 
       
    51 
       
    52 enum VTCommand
       
    53     {
       
    54     EVCommandSoftKeyQuit=3
       
    55     };
       
    56     
       
    57 enum DialogControlId
       
    58     {
       
    59     EVoicePlaybackProgressNoteId = 100
       
    60     };
       
    61 
       
    62 // Control ids for dialogs
       
    63 enum TDeleteDialogControlId
       
    64     {
       
    65     EVCWaitNote = 1, 
       
    66     EVCProgressNote
       
    67     };
       
    68 
       
    69 enum TVCDialogId
       
    70     {
       
    71     EVCSettingsListboxId = 1    //Dialog control ID can't be zero
       
    72     };
       
    73 
       
    74 enum TVcSynthesizerSettingItem
       
    75     {
       
    76     ESynthesizerOff,
       
    77     ESynthesizerOn
       
    78     };
       
    79     
       
    80 enum TVcVerificationSettingItem
       
    81     {
       
    82     EAutomatic,
       
    83     EManual,
       
    84     EVoice
       
    85     };
       
    86 
       
    87 // Define edwin width and maxlength for Edit label
       
    88 #define KMaxEditableTextLength 64
       
    89 #define KMaxEditWidthLength 64
       
    90 
       
    91 #endif      // VCOMMAND_HRH
       
    92 
       
    93 // End of File