coreapplicationuis/Rfs/Plugins/GSRFSPlugin/inc/GSRFSPluginContainer.h
branchRCL_3
changeset 19 924385140d98
parent 18 0818dd463d41
child 20 c2c61fdca848
equal deleted inserted replaced
18:0818dd463d41 19:924385140d98
     1 /*
       
     2 * Copyright (c) 2007-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef GSRFSPLUGINCONTAINER_H
       
    19 #define GSRFSPLUGINCONTAINER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <gsbasecontainer.h>
       
    23 #include "gssettingid.h"
       
    24 
       
    25 // CLASS DECLARATION
       
    26 class CGSRFSPlugin;
       
    27 class CGSListBoxItemTextArray;
       
    28 
       
    29 
       
    30 class CGSRFSPluginContainer : public CGSBaseContainer
       
    31     {
       
    32 public: 
       
    33         
       
    34     /**
       
    35      *  C++ default constructor.
       
    36      */
       
    37     CGSRFSPluginContainer( CGSRFSPlugin* aGSRFSPlugin );
       
    38 
       
    39     /**
       
    40      * By default Symbian OS constructor is private.
       
    41      */
       
    42     void ConstructL(const TRect& aRect);
       
    43 
       
    44     /**
       
    45      * Destructor.
       
    46      */
       
    47     ~CGSRFSPluginContainer();
       
    48         
       
    49 public: // new methods
       
    50         
       
    51     TInt CurrentFeatureId() const;
       
    52 
       
    53 protected: // from CGSBaseContainer
       
    54     
       
    55     void ConstructListBoxL( TInt aResLbxId );
       
    56     
       
    57 private: // from CCoeControl    
       
    58         
       
    59     void GetHelpContext( TCoeHelpContext& aContext ) const;
       
    60 
       
    61 private: // data
       
    62 
       
    63     CGSRFSPlugin* iGSRFSPlugin;                 // not own    
       
    64     CGSListBoxItemTextArray* iListboxItemArray;
       
    65     };
       
    66 
       
    67 
       
    68 #endif  // GSRFSPLUGINCONTAINER_H
       
    69 
       
    70 // End of File