ipcm_plat/bearer_settings_plugin_api/inc/cmpbasesettingsdlgadv.h
changeset 0 5a93021fdf25
child 8 2e6c4614c58e
equal deleted inserted replaced
-1:000000000000 0:5a93021fdf25
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Declares dialog for access point view/edit.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CMPLUGINBASEADV_SETTINGS_DLG_H
       
    19 #define CMPLUGINBASEADV_SETTINGS_DLG_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <coecntrl.h>
       
    23 #include <coeccntx.h>
       
    24 #include <eiklbo.h>
       
    25 #include <eikapp.h>
       
    26 #include <eikdoc.h>
       
    27 #include <aknlists.h>
       
    28 #include <akndialog.h>
       
    29 #include <cmpbasesettingsdlg.h>
       
    30 
       
    31 // FORWARD DECLARATIONS
       
    32 class CEikStatusPane;
       
    33 class CAknTitlePane;
       
    34 class CAknNavigationControlContainer;
       
    35 class CAknNavigationDecorator;
       
    36 class CCmPluginBaseEng;
       
    37 
       
    38 /**
       
    39  *  CmPluginBaseSettingsDlgAdv dialog class
       
    40  *  base class for plugin settings dialogs
       
    41  *  @lib cmmanager.lib
       
    42  *  @since S60 v3.2
       
    43  */
       
    44 class CmPluginBaseSettingsDlgAdv : public CmPluginBaseSettingsDlg 
       
    45                                 
       
    46     {
       
    47 
       
    48     public: // Constructors and destructor
       
    49 
       
    50         /** Constructor */
       
    51         IMPORT_C CmPluginBaseSettingsDlgAdv( 
       
    52                                         CCmPluginBaseEng& aCmPluginBaseEng );
       
    53 
       
    54         /** Destructor. */
       
    55         IMPORT_C ~CmPluginBaseSettingsDlgAdv();
       
    56     
       
    57     public: // From CmPluginBaseSettingsDlg
       
    58         
       
    59         virtual void UpdateListBoxContentBearerSpecificL( 
       
    60                                                CDesCArray& aItemArray );
       
    61                                                
       
    62         IMPORT_C virtual void RunAdvancedSettingsL();
       
    63 
       
    64     public: // From MEikMenuObserver
       
    65         
       
    66         IMPORT_C virtual void DynInitMenuPaneL( TInt aResourceId, 
       
    67                                                 CEikMenuPane* aMenuPane ) ;
       
    68 
       
    69     protected: // from CmPluginBaseSettingsDlg
       
    70     
       
    71         IMPORT_C virtual void UpdateListBoxContentL();
       
    72 
       
    73 
       
    74         IMPORT_C virtual TBool ShowPopupSettingPageL( TInt aAttribute, 
       
    75                                                        TInt aCommandId );
       
    76     };
       
    77 #endif