uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdomaiwakn/inc/bctestdomaiwaknappui.h
branchRCL_3
changeset 56 d48ab3b357f1
equal deleted inserted replaced
55:aecbbf00d063 56:d48ab3b357f1
       
     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: 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_CBCTESTDOMAIWAKNAPPUI_H
       
    19 #define C_CBCTESTDOMAIWAKNAPPUI_H
       
    20 
       
    21 #include <aknviewappui.h>
       
    22 
       
    23 class CBCTestDomAiwAknView;
       
    24 class CBCTestDomAknAnimatedView;
       
    25 class CBCTestUtil;
       
    26 
       
    27 
       
    28 /**
       
    29  *  Application UI class
       
    30  *  
       
    31  *
       
    32  *  @code
       
    33  *   
       
    34  *  @endcode
       
    35  *
       
    36  *  @lib bctestutil.lib
       
    37  *  @since S60 v5.0
       
    38  */ 
       
    39 class CBCTestDomAiwAknAppUi : public CAknViewAppUi
       
    40     {
       
    41 public:  
       
    42 
       
    43     /**
       
    44      * constructor
       
    45      */      
       
    46     CBCTestDomAiwAknAppUi();
       
    47 
       
    48     /**
       
    49      * symbian 2nd constructor
       
    50      */
       
    51      void ConstructL();
       
    52 
       
    53     /**
       
    54      * destructor
       
    55      */
       
    56      virtual ~CBCTestDomAiwAknAppUi();
       
    57 
       
    58 private:
       
    59 
       
    60 // from base class CEikAppUi
       
    61     /**
       
    62      * From CEikAppUi.
       
    63      * HandleCommandL()
       
    64      *
       
    65      * @since S60 v5.0
       
    66      * @param aCommand  Command Id.
       
    67      */
       
    68     void HandleCommandL( TInt aCommand );
       
    69 
       
    70 private: // data
       
    71       
       
    72     /**
       
    73      * pointor to the view.
       
    74      * own
       
    75      */
       
    76      CBCTestDomAiwAknView*  iView;
       
    77 
       
    78     /**
       
    79      * iAnimView, The Animated view .
       
    80      * own.
       
    81      */
       
    82      CBCTestDomAknAnimatedView* iAnimView;
       
    83 
       
    84 	/**
       
    85      * pointor to the BC Test framework utility.
       
    86      * own
       
    87      */
       
    88      CBCTestUtil*  iTestUtil;
       
    89     };
       
    90 
       
    91 #endif // C_CBCTESTDOMAIWAKNAPPUI_H
       
    92 
       
    93 // End of File