pkiutilities/CTSecurityDialogs/NotifInc/CTCertificateQuery.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2002 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 
       
    19 
       
    20 #ifndef __SECNOT_CERTIFICATE_QUERY_H__
       
    21 #define __SECNOT_CERTIFICATE_QUERY_H__
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 #include <aknmessagequerydialog.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 
       
    29 class CCTSecurityDialogsAO;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  Query class for showing certificate details
       
    35 */
       
    36 NONSHARABLE_CLASS( CCTCertificateQuery ) : public CAknMessageQueryDialog
       
    37     {
       
    38     public:     // constructors and destructor
       
    39         static CCTCertificateQuery* NewL(CCTSecurityDialogsAO& aAO);
       
    40         virtual ~CCTCertificateQuery();
       
    41 
       
    42     private:    // from CEikDialog
       
    43         TBool OkToExitL( TInt aButtonId );
       
    44 
       
    45     private:    // new functions
       
    46         CCTCertificateQuery(CCTSecurityDialogsAO& aAO);
       
    47         void ConstructL();
       
    48 
       
    49     private:    // data
       
    50 
       
    51         CCTSecurityDialogsAO& iNotifier;        
       
    52         HBufC* iHeader;
       
    53         HBufC* iMessage;
       
    54     };
       
    55 
       
    56 #endif  // __SECNOT_CERTIFICATE_QUERY_H__
       
    57 
       
    58 // End of file