pkiutilities/CertmanUi/INC/Certmanuidialogs.h
changeset 0 164170e6151a
child 1 d5423fbb4f29
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 CCertManUIWaitDialog class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef     CERTMANUIDIALOGS_H
       
    20 #define     CERTMANUIDIALOGS_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 class CAknGlobalNote;
       
    28 class CAknGlobalConfirmationQuery;
       
    29 class CAknWaitDialog;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  CCertManUIKeeper view control class.
       
    35 *
       
    36 *
       
    37 */
       
    38 class CCertManUIWaitDialog: public CBase
       
    39     {
       
    40     public: // functions
       
    41 
       
    42         /**
       
    43         * Default Constructor
       
    44         */
       
    45         CCertManUIWaitDialog();
       
    46 
       
    47         /**
       
    48         * Destructor
       
    49         */
       
    50         ~CCertManUIWaitDialog();
       
    51 
       
    52         /**
       
    53         * Display dialog
       
    54         * @param selector for progress or delete dialog
       
    55         */
       
    56         void StartWaitDialogL(TInt aDialogSelector);
       
    57 
       
    58         /**
       
    59         * Close dialog.
       
    60         */
       
    61 
       
    62         void CloseWaitDialogL();
       
    63 
       
    64 
       
    65     private:    // Functions
       
    66 
       
    67 
       
    68         static void CleanupWaitDialog(TAny* aAny);
       
    69 
       
    70 
       
    71     private:    // Data
       
    72 
       
    73         /**
       
    74         * For wait note
       
    75         */
       
    76         CAknWaitDialog*     iDialog;
       
    77 
       
    78         /**
       
    79         *  Flag whether dialof is being displayed
       
    80         */
       
    81         TBool               iDisplayed;
       
    82 
       
    83     };
       
    84 
       
    85 #endif //   CERTMANUIDIALOGS_H
       
    86 
       
    87 // End of File