wvuing/wvvariant/Src/MCAAHVariant.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Interface class for Arabic/Hebrew variant.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCAAHVARIANT_H
       
    21 #define MCAAHVARIANT_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include <w32std.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class CAknNavigationControlContainer;
       
    29 class CCAAppUi;
       
    30 class CCAStatusPaneHandler;
       
    31 class CAknNavigationDecorator;
       
    32 
       
    33 
       
    34 // CLASS DECLARATION
       
    35 
       
    36 /**
       
    37 *	Interface class for A/H variant.
       
    38 *  @lib chat.app
       
    39 *  @since 2.0
       
    40 */
       
    41 class MCAAHVariant
       
    42     {
       
    43     public: // New functions
       
    44 
       
    45         /**
       
    46         * Creates tabgroup.
       
    47         * @since 1.2s
       
    48         * @return, CAknNavigationDecorator*, created object.
       
    49         */
       
    50         virtual CAknNavigationDecorator* CreateTabGroupL(
       
    51             CAknNavigationControlContainer& aNaviPane,
       
    52             CCAAppUi& aAppUi,
       
    53             CCAStatusPaneHandler& aStatusPane ) = 0;
       
    54         /**
       
    55         * Handles changing of tabs.
       
    56         * @return ETrue if A/H tab handling was used, otherwise EFalse.
       
    57         * @since 1.2s
       
    58         */
       
    59         virtual TBool HandleTabsL( const TKeyEvent& aKeyEvent,
       
    60                                    TEventCode aType ) = 0;
       
    61     };
       
    62 
       
    63 #endif      // MCAAHVARIANT_H
       
    64 
       
    65 // End of File