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