stifui/stifui/inc/Stifui.hrh
branchRCL_3
changeset 9 404ad6c9bc20
parent 8 87e9ebfbe96a
child 11 454d022d514b
equal deleted inserted replaced
8:87e9ebfbe96a 9:404ad6c9bc20
     1 /*
       
     2 * Copyright (c) 2009 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: Const definitions file.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef STIF_UI_HRH
       
    19 #define STIF_UI_HRH
       
    20 
       
    21 enum TAppUICommandIds
       
    22     {
       
    23     EAppUIGoBack = 1,
       
    24     EAppUIGoToMainMenu,
       
    25     EAppUIGoToTestCaseMenu,
       
    26     EAppUIGoToModulesMenu,
       
    27     EAppUIGoToTestSetsMenu,
       
    28 	ECmdGoToStartCasesView,
       
    29 	ECmdGoToStartedCasesView,
       
    30     ECmdShowStartedTestSet,
       
    31     ECmdCreateTestSet,
       
    32     ECmdLoadTestSet,
       
    33     ECmdStartTestSet,
       
    34     ECmdSaveTestSet,
       
    35     ECmdInsertTestCases,
       
    36     ECmdRemoveTestCases,
       
    37 	ECmdFilterCases,
       
    38 	ECmdMarkMenu,
       
    39     ECmdInsertSelectedCases,
       
    40     ECmdShowSetMenu,
       
    41 	ECmdStartCases,
       
    42 	ECmdShowAllStartedCases,
       
    43 	ECmdShowOngoingCases,
       
    44 	ECmdShowPassedCases,
       
    45 	ECmdShowFailedCases,
       
    46 	ECmdShowPausedCases,
       
    47 	ECmdShowCrashedAbortedCases,
       
    48 	ECmdShowStatistics,
       
    49     ECmdViewOutput,
       
    50 	ECmdPauseTestCase,
       
    51 	ECmdResumeTestCase,
       
    52 	ECmdAbortTestCase,
       
    53 	ECmdRemoveExecution,
       
    54 	ECmdRemoveAllExecutions,
       
    55 	ECmdOpenModule,
       
    56 	ECmdAddModule,
       
    57 	ECmdRemoveModule,
       
    58     ECmdFilterMenu,
       
    59     ECmdShowAbout,
       
    60 	ECmdFilterByModule = 0x1000,
       
    61 	ECmdFilterByTestCaseFile = 0x2000,
       
    62 	ECmdNOFiltering = 0x3000,
       
    63 	ECmdGoToTestSetView
       
    64     };
       
    65 
       
    66 
       
    67 enum TAppUITabViewId
       
    68     {
       
    69 	ETestCaseMenuTab = 1,
       
    70     ETestModulesMenuTab,
       
    71     ETestSetsMenuTab
       
    72     };
       
    73  
       
    74 // Application view ids.
       
    75 enum TAppUIViewNumber
       
    76 	{
       
    77     EMainMenuViewId = 1,
       
    78     ETestCaseMenuViewId,
       
    79     EStartCaseMenuViewId,
       
    80     EStartedCasesMenuViewId,
       
    81     ETestModulesMenuViewId,
       
    82     ETestSetBaseMenuViewId,
       
    83     ETestSetMenuViewId,
       
    84     ETestSetInsertMenuViewId,
       
    85     ETestSetStartedCasesViewId,
       
    86     ETestSetsMenuViewId, /*???*/
       
    87     EShowStartedCasesViewId,
       
    88     EShowStatisticsViewId,
       
    89 	ETestCaseOutputViewId,
       
    90 	EStatisticsViewId,
       
    91 	ECreatedTestSetMenuViewId
       
    92 	};
       
    93 
       
    94 enum TPanic
       
    95     {
       
    96     EModuleIndexOutOfBound,
       
    97     EShowCasesOutOfSync
       
    98     };
       
    99 
       
   100 enum TShowStartedCasesMode
       
   101     {
       
   102     EShowAllStartedCases,
       
   103     EShowOngoingCases,
       
   104     EShowPausedCases,
       
   105     EShowPassedCases,
       
   106     EShowFailedCases,
       
   107     EShowCrashedAbortedCases,
       
   108     EShowStatistics
       
   109     };
       
   110 
       
   111 #endif      // STIF_UI_HRH
       
   112 // End of File