pkiutilities/SecModUI/inc/SecModUIContainerSignature.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 CSecModUIContainerSignature class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SECMODUICONTAINERSIGNATURE_H
       
    20 #define SECMODUICONTAINERSIGNATURE_H
       
    21 
       
    22 // INCLUDES
       
    23 #include "SecModUIContainerBase.h"
       
    24 #include "SecModUIViewSignature.h"
       
    25    
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  CSecModUIContainerSignature  container control class.
       
    33 *  
       
    34 */
       
    35 class CSecModUIContainerSignature : public CSecModUIContainerBase, public MCoeControlObserver
       
    36     {
       
    37     public: // Constructors and destructor
       
    38         
       
    39         /**
       
    40         * Overrided Default constructor
       
    41         */
       
    42         CSecModUIContainerSignature(CSecModUIModel& aModel, CSecModUIViewSignature* aView );
       
    43 
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         virtual ~CSecModUIContainerSignature();
       
    48     
       
    49     public: // Function from CSecModUIContainerBase    
       
    50         void SetupListItemsL();
       
    51         
       
    52         // from MCoeControlObserver
       
    53         void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType); 
       
    54 
       
    55     private: // Functions from base classes        
       
    56         void ConstructListL();             
       
    57            
       
    58     private: //data
       
    59         CSecModUIViewSignature* iView; //Not owned
       
    60     };
       
    61 
       
    62 #endif // SECMODUICONTAINERSIGNATURE_H
       
    63 
       
    64 // End of File