pkiutilities/SecModUI/inc/SecModUIPluginContainer.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 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:   Declaration of the CSecModUIPluginContainer class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CSECMODUIPLUGINCONTAINER_H
       
    21 #define CSECMODUIPLUGINCONTAINER_H
       
    22 
       
    23 // INCLUDES
       
    24 #include    <coeccntx.h>
       
    25 #include    <eikclb.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  CSecModUIPluginContainer container class
       
    31 *
       
    32 *  container class for Security UI Module view
       
    33 */
       
    34 class CSecModUIPluginContainer : public CCoeControl
       
    35     {
       
    36     public: // Constructors and destructor
       
    37 
       
    38         CSecModUIPluginContainer();
       
    39 
       
    40         /**
       
    41         * Symbian OS constructor.
       
    42         *
       
    43         * @param aRect Listbox's rect.
       
    44         */
       
    45         void ConstructL( const TRect& aRect );
       
    46 
       
    47         /**
       
    48         * Destructor.
       
    49         */
       
    50         ~CSecModUIPluginContainer();
       
    51 
       
    52     public: // From CCoeControl
       
    53 
       
    54         /**
       
    55         * From CoeControl returns the amount of controls
       
    56         */
       
    57         TInt CountComponentControls() const;
       
    58 
       
    59         /**
       
    60         * From CCoeControl returns controls for CONE actions
       
    61         */
       
    62         CCoeControl* ComponentControl( TInt aIndex ) const;
       
    63 
       
    64         /**
       
    65         * From CCoeControl changes the size of the list box
       
    66         */
       
    67         void SizeChanged();
       
    68 
       
    69     };
       
    70 
       
    71 #endif //CSECMODUIPLUGINCONTAINER_H