gssettingsuis/Gs/GSCallBarringPlugin/Inc/GSCallBarringPluginContainer.h
branchRCL_3
changeset 24 8ee96d21d9bf
parent 23 8bda91a87a00
child 25 7e0eff37aedb
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
     1 /*
       
     2 * Copyright (c) 2002-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 "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:  Container for Barrings sub-menu in General Settings.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef GSCALLBARRINGPLUGINCONTAINER_H
       
    20 #define GSCALLBARRINGPLUGINCONTAINER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include "gsbasecontainer.h"
       
    24 #include "GSPhoneSettingConstants.h"
       
    25 
       
    26 // FORWARD DECLARATIOIN
       
    27 class CGSListBoxItemTextArray;
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 * CGSCallBarringPluginContainer container class
       
    33 */
       
    34 class CGSCallBarringPluginContainer : public CGSBaseContainer
       
    35     {
       
    36     public: // Constructors and destructor
       
    37         
       
    38         /**
       
    39         * Symbian OS default constructor. 
       
    40         *
       
    41         * @param aRect gives the correct TRect for construction.
       
    42         */
       
    43         void ConstructL( const TRect& aRect );
       
    44 
       
    45         /* Destructor */
       
    46         ~CGSCallBarringPluginContainer();
       
    47 
       
    48     public:  //from CGSBaseContainer
       
    49 
       
    50         /* 
       
    51         * Creates list box object.
       
    52         * @param aResLbxId resource list id to create list box.
       
    53         */
       
    54         void ConstructListBoxL( TInt aResLbxId );
       
    55 
       
    56     private: //new
       
    57 
       
    58         /**
       
    59         * Required for help.
       
    60         */
       
    61         void GetHelpContext( TCoeHelpContext& aContext ) const;
       
    62 
       
    63     private: //member variables
       
    64         //listbox array
       
    65         CGSListBoxItemTextArray* iListboxItemArray;
       
    66         //Is VoIP supported (feature on, dynamic voip setting on)
       
    67         TBool iVoIPSupported;        
       
    68     };
       
    69 
       
    70 #endif //GSCALLBARRINGPLUGINCONTAINER_H
       
    71 
       
    72 // End of File