mpxplugins/viewplugins/views/waitnotedialog/inc/mpxopeningdialog.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Wait note dialog for Opening
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_MPXOPENINGNOTEDIALOG_H
       
    20 #define C_MPXOPENINGNOTEDIALOG_H
       
    21 
       
    22 #include "mpxwaitnotedialog.h"
       
    23 
       
    24 /**
       
    25  *  Wait note class for the opening cases
       
    26  *
       
    27  *  Blocking dialog shown during opening
       
    28  *
       
    29  *  @lib mpxwaitnotedialog.dll
       
    30  *  @since S60 3.1
       
    31  */
       
    32 class CMPXOpeningWaitDialog : public CMPXWaitNoteDialog                              
       
    33     {
       
    34 
       
    35 public:
       
    36 
       
    37     /**
       
    38     * Two-phased constructor
       
    39     */
       
    40     static CMPXOpeningWaitDialog* NewL( MMPXWaitNoteObserver* aObs, TBool aVisibilityDelayOff = ETrue );
       
    41 
       
    42     /**
       
    43     * Virtual destructor
       
    44     */
       
    45     virtual ~CMPXOpeningWaitDialog();
       
    46 
       
    47 protected:
       
    48     
       
    49     /**
       
    50     * From CMPXWaitNoteDialog
       
    51     * Initialize the note before executing
       
    52     * The inherited class should set CBA, text, icons etc here
       
    53     */
       
    54     void PreNoteDisplayHandleL();
       
    55 
       
    56 private:
       
    57 
       
    58     /**
       
    59     * Private constructor
       
    60     */
       
    61     CMPXOpeningWaitDialog( MMPXWaitNoteObserver* aObs, TBool aVisibilityDelayOff );
       
    62 
       
    63     /**
       
    64     * Second phased constructor
       
    65     */
       
    66     void ConstructL();
       
    67 
       
    68 private: // data
       
    69     
       
    70     };
       
    71 
       
    72 #endif // C_MPXOPENINGNOTEDIALOG_H