loadgen/ui/avkon/inc/loadgen_appui.h
branchRCL_3
changeset 21 b3cee849fa46
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
       
     1 /*
       
     2 * Copyright (c) 2010 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef LOADGEN_APPUI_H
       
    20 #define LOADGEN_APPUI_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <eikapp.h>
       
    24 #include <eikdoc.h>
       
    25 #include <e32std.h>
       
    26 #include <coeccntx.h>
       
    27 #include <aknViewAppUi.h>
       
    28 #include <akntabgrp.h>
       
    29 #include <aknnavide.h>
       
    30 #include "loadgen_std.h"
       
    31 
       
    32 // FORWARD DECLARATIONS
       
    33 class CLoadGenModel;
       
    34 class CAknNavigationControlContainer;
       
    35 class CAknTabGroup;
       
    36 class CAknNavigationDecorator;
       
    37 
       
    38 
       
    39 // CLASS DECLARATIONS
       
    40 
       
    41 class CLoadGenAppUi : public CAknViewAppUi
       
    42     {
       
    43 public: // constructors and destructor
       
    44     void ConstructL();
       
    45     ~CLoadGenAppUi();
       
    46     
       
    47 private: // From MEikMenuObserver
       
    48     void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
       
    49 
       
    50 private:
       
    51     void HandleCommandL(TInt aCommand);
       
    52 
       
    53     virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
       
    54 
       
    55 private: //Data
       
    56     CLoadGenModel*                  iModel;
       
    57     CAknNavigationControlContainer* iNaviPane;
       
    58     CAknTabGroup*                   iTabGroup;
       
    59     CAknNavigationDecorator*        iDecoratedTabGroup;
       
    60     };
       
    61 
       
    62 #endif
       
    63 
       
    64 // End of File