uifw/AvKon/src/aknwaitdialog.cpp
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     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 *       Implementation of the CAknWaitDialog class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #include <AknWaitDialog.h>
       
    21 #include <aknnotecontrol.h>
       
    22 #include <AknPanic.h>
       
    23 #include <eikenv.h>
       
    24 #include <eikappui.h>
       
    25 
       
    26 
       
    27 // const TInt KMinProcessTimeToShowDialog = 1000000;	// 1 sec
       
    28 // const TInt KMinTimeDialogOnScreen = 1500000;	// 1.5 sec
       
    29 
       
    30 //////////////////////////////////////////////////////////////////////
       
    31 // Construction/Destruction
       
    32 //////////////////////////////////////////////////////////////////////
       
    33 
       
    34 EXPORT_C CAknWaitDialog::CAknWaitDialog(CEikDialog** aSelfPtr) :
       
    35 	CAknProgressDialog(aSelfPtr)
       
    36 	{
       
    37 	}
       
    38 
       
    39 EXPORT_C CAknWaitDialog::CAknWaitDialog(CEikDialog** aSelfPtr,TBool aVisibilityDelayOff) :
       
    40 	CAknProgressDialog(aSelfPtr, aVisibilityDelayOff)
       
    41 	{
       
    42 	}
       
    43 
       
    44 EXPORT_C CEikProgressInfo* CAknWaitDialog::GetProgressInfo()
       
    45 	{
       
    46     Panic( EAknPanicNotSupported );
       
    47 	return NULL;
       
    48 	}
       
    49 	
       
    50 EXPORT_C void CAknWaitDialog::HandlePointerEventL(const TPointerEvent& aPointerEvent) 
       
    51     { 
       
    52     CAknProgressDialog::HandlePointerEventL(aPointerEvent); 
       
    53     }
       
    54 
       
    55 EXPORT_C void* CAknWaitDialog::ExtensionInterface( TUid /*aInterface*/ ) 
       
    56     { 
       
    57     return NULL;
       
    58     }
       
    59 
       
    60 EXPORT_C void CAknWaitDialog::CEikDialog_Reserved_1()
       
    61 	{
       
    62 	}
       
    63 
       
    64 EXPORT_C void CAknWaitDialog::CEikDialog_Reserved_2()
       
    65 	{
       
    66 	}
       
    67 
       
    68 EXPORT_C void CAknWaitDialog::CAknNoteDialog_Reserved()
       
    69 	{
       
    70 	}
       
    71 
       
    72 // End of File