mediasettings/mediasettingsapp/inc/MPSettingsNetworkContainer.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:   Declares container control for application.*
       
    15 */
       
    16 
       
    17 
       
    18 // Version : %version: 2 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef MPSETTINGSNETWORKCONTAINER_H
       
    23 #define MPSETTINGSNETWORKCONTAINER_H
       
    24 
       
    25 // INCLUDES
       
    26 #include    "MPSettingsBaseContainer.h"
       
    27    
       
    28 // FORWARD DECLARATIONS
       
    29 class CMPSettingsNetworkSettingItemList;
       
    30 class CMPSettingsModelForROP;   
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 *  CMPSettingsNetworkContainer container control class.
       
    36 *  
       
    37 *  @lib MediaSettings.app
       
    38 *  @since 2.0
       
    39 */
       
    40 class CMPSettingsNetworkContainer : public CMPSettingsBaseContainer
       
    41     {
       
    42     public: // Constructors and destructor
       
    43         
       
    44         /**
       
    45         * C++ default constructor.
       
    46         */
       
    47         CMPSettingsNetworkContainer(CMPSettingsModelForROP* aModel);
       
    48 
       
    49         /**
       
    50         * Destructor.
       
    51         */
       
    52         virtual ~CMPSettingsNetworkContainer();
       
    53 
       
    54     public: // New
       
    55 
       
    56         /**
       
    57         * Edits current setting item.
       
    58         * @since 2.0
       
    59         */
       
    60         void EditCurrentItemFromMenuL();
       
    61 
       
    62     public: // Functions from base classes
       
    63             
       
    64         /**
       
    65         * From CoeControl
       
    66         */
       
    67         void GetHelpContext(TCoeHelpContext& aContext) const;
       
    68 		void FocusChanged(TDrawNow /*aDrawNow*/);
       
    69   		void SizeChanged();
       
    70   		void HandleResourceChange(TInt aType);
       
    71   
       
    72     protected: // Functions from base classes 
       
    73 
       
    74         /**
       
    75         * From CMPSettingsBaseContainer
       
    76         */
       
    77         void ConstructComponentControlsL();
       
    78 
       
    79     private:  // Functions from base classes
       
    80 
       
    81         /**
       
    82         * From CMPSettingsBaseContainer
       
    83         */
       
    84         TInt TitleResourceId();
       
    85 
       
    86     private:
       
    87         CMPSettingsNetworkSettingItemList* iSettingList;
       
    88 		CMPSettingsModelForROP* iModel;      
       
    89     };
       
    90 
       
    91 #endif // MPSETTINGSNETWORKCONTAINER_H
       
    92 
       
    93 // End of File