mediasettings/mediasettingsapp/inc/MPSettingsNaviPaneController.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     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 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:   M-class for NaviPane related callbacks to appui from view classes.*
       
    15 */
       
    16 
       
    17 
       
    18 // Version : %version: 2 %
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef MMPSETTINGSNAVIPANECONTROLLER_H
       
    24 #define MMPSETTINGSNAVIPANECONTROLLER_H
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CAknNavigationControlContainer;
       
    28 class CAknNavigationDecorator;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 *  
       
    34 *
       
    35 *  @lib MediaSettings.app
       
    36 *  @since 2.0
       
    37 */
       
    38 class MMPSettingsNaviPaneController
       
    39     {
       
    40     public: // New functions
       
    41         
       
    42         /**
       
    43         * Returns pointer to MP's Navi pane object.
       
    44         * @return CAknNavigationControlContainer.
       
    45         */
       
    46         virtual CAknNavigationControlContainer* NaviContainer() const = 0;
       
    47     
       
    48         /**
       
    49         * Returns pointer to MP's tab group object.
       
    50         * @return CAknNavigationDecorator.
       
    51         */
       
    52         virtual CAknNavigationDecorator* MPTabGroup() const = 0;
       
    53 
       
    54         /**
       
    55         * Updates tab group according to active view.
       
    56         */
       
    57         virtual void UpdateTabIndex() = 0;
       
    58 
       
    59     };
       
    60 
       
    61 #endif      // MMPSETTINGSNAVIPANECONTROLLER_H   
       
    62             
       
    63 // End of File