phonebookui/Phonebook/View/src/CPbkWaitNoteWrapper.cpp
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     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 *       Provides methods for the phonebook wait note wrapper.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <CPbkWaitNoteWrapper.h>
       
    22 #include <AknWaitDialog.h>
       
    23 
       
    24 
       
    25 // ================= MEMBER FUNCTIONS =======================
       
    26 
       
    27 inline CPbkWaitNoteWrapper::CPbkWaitNoteWrapper()
       
    28     {
       
    29     }
       
    30 
       
    31 EXPORT_C CPbkWaitNoteWrapper* CPbkWaitNoteWrapper::NewL()
       
    32     {
       
    33     CPbkWaitNoteWrapper* self = new(ELeave) CPbkWaitNoteWrapper;
       
    34     return self;
       
    35     }
       
    36 
       
    37 CPbkWaitNoteWrapper::~CPbkWaitNoteWrapper()
       
    38     {
       
    39     }
       
    40 
       
    41 CAknProgressDialog* CPbkWaitNoteWrapper::CreateDialogL
       
    42         (CEikDialog** aSelfPtr, TBool aVisibilityDelayOff)
       
    43     {
       
    44     return (new(ELeave) CAknWaitDialog(aSelfPtr,aVisibilityDelayOff));
       
    45     }
       
    46 
       
    47 TBool CPbkWaitNoteWrapper::ShowProgressInfo() const
       
    48     {
       
    49     // Wait note doesn't have a progress indicator
       
    50     return EFalse;
       
    51     }
       
    52 
       
    53 
       
    54 //  End of File