pkiutilities/CTSecurityDialogs/NotifInc/CTInvalidCertNote.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2008 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:   Info note shown for invalid and revoked certificates
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CTINVALIDCERTNOTE_H
       
    21 #define CTINVALIDCERTNOTE_H
       
    22 
       
    23 #include <aknnotedialog.h>
       
    24 
       
    25 class CCTSecurityDialogsAO;
       
    26 
       
    27 
       
    28 /**
       
    29 *  Notifier class for showing SSL security dialogs
       
    30 */
       
    31 NONSHARABLE_CLASS( CCTInvalidCertificateNote ): public CAknNoteDialog
       
    32     {
       
    33     public:     // constructors and destructor
       
    34         CCTInvalidCertificateNote(
       
    35             CCTSecurityDialogsAO& aNotifier,
       
    36             TRequestStatus& aClientStatus );
       
    37         ~CCTInvalidCertificateNote();
       
    38 
       
    39     private:    // from CEikDialog
       
    40         TBool OkToExitL( TInt aButtonId );
       
    41         void PostLayoutDynInitL();
       
    42         
       
    43     private: // New functions
       
    44         void ShowDetailsL();
       
    45 
       
    46     private:    // data
       
    47         CCTSecurityDialogsAO& iNotifier;
       
    48         TRequestStatus* iClientStatus;
       
    49     };
       
    50 
       
    51 #endif  // CTINVALIDCERTNOTE_H
       
    52 
       
    53 // End of file