browserutilities/feedsengine/FeedsUI/FeedsApp/inc/FeedsAppUI.h
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 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 the License "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:  Feeds application UI instance.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef FEEDS_APPUI_H
       
    19 #define FEEDS_APPUI_H
       
    20 
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknViewAppUi.h>
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 // MACROS
       
    28 
       
    29 // DATA TYPES
       
    30 
       
    31 // FUNCTION PROTOTYPES
       
    32 
       
    33 // FORWARD DECLARATIONS
       
    34 class CEikMenuPane;
       
    35 
       
    36 // CLASS DECLARATION
       
    37 
       
    38 
       
    39 /**
       
    40 *  Feeds application UI instance.
       
    41 *
       
    42 *  \b Library: FeedsEngine.lib
       
    43 *
       
    44 *  @since 3.0
       
    45 */
       
    46 class CFeedsAppUi : public CAknViewAppUi
       
    47     {
       
    48     public: // Constructors and destructor
       
    49         /**
       
    50         * ConstructL.
       
    51         * 2nd phase constructor.
       
    52         */
       
    53         void ConstructL();
       
    54 
       
    55         /**
       
    56         * Destructor.
       
    57         */        
       
    58         virtual ~CFeedsAppUi();
       
    59 
       
    60 
       
    61     public: // From CAknAppUi
       
    62         /**
       
    63         * Takes care of command handling.
       
    64         * 
       
    65         * @since ??
       
    66         * @param aCommand Command to be handled.
       
    67         * @return The value.
       
    68         */
       
    69         void HandleCommandL(TInt aCommand);
       
    70 
       
    71 
       
    72     private:
       
    73         /**
       
    74         * Inits the Engine.
       
    75         *
       
    76         * @since 3.0
       
    77         * @return void
       
    78         */
       
    79         void InitEngineL();
       
    80 
       
    81         /**
       
    82         * Inits the UI.
       
    83         *
       
    84         * @since 3.0
       
    85         * @return void
       
    86         */
       
    87         void InitUIL();
       
    88 
       
    89 
       
    90     private:  // Data
       
    91         //CTestHarness*  iTestHarness;
       
    92     };
       
    93 
       
    94 #endif      // FEEDS_APPUI_H
       
    95             
       
    96 // End of File