iaupdate/IAD/ui/inc/iaupdatewaitdialogobserver.h
changeset 0 ba25891c3a9e
child 25 7333d7932ef7
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2007-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:   This file contains the header file of the 
       
    15 *                MIAUpdateWaitDialogObserver class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef IAUPDATEDIALOGS_H
       
    22 #define IAUPDATEDIALOGS_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 
       
    27 
       
    28 //  CLASS DECLARATIONS
       
    29 
       
    30 /**
       
    31 * A callback interface for handling common non modal dialog cancellation.
       
    32 * 
       
    33 */
       
    34 class MIAUpdateWaitDialogObserver
       
    35     {
       
    36     public:
       
    37         
       
    38         /**
       
    39         * This is called when the dialog is about to be closed.
       
    40         * @param aButtonId - Id of the button, which was used to cancel the dialog.
       
    41         * @return ETrue, if it's ok to close the dialog, EFalse otherwise.
       
    42         */
       
    43         virtual TBool HandleDialogExitL( TInt aButtonId ) = 0;    
       
    44     };
       
    45 
       
    46 
       
    47 #endif // IAUPDATEDIALOGS_H
       
    48             
       
    49 // End of File