cbs/cbsui/UiInc/CCbsUiConfirmationNote.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     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 *       Shows global confirmation note and instance of this class
       
    16 *       has to be a member variable.
       
    17 *
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #ifndef __CCbsUiConfirmationNote_h
       
    23 #define __CCbsUiConfirmationNote_h
       
    24 
       
    25 //  INCLUDES
       
    26 #include <e32base.h>
       
    27 
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 class CAknGlobalConfirmationQuery;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 class CCbsUiConfirmationNote : public CBase
       
    35     {
       
    36     public: // Constructor and destructor
       
    37 
       
    38         /**
       
    39         * Constructor. Prohibited to make a instance.
       
    40         */
       
    41         CCbsUiConfirmationNote();
       
    42 
       
    43         /**
       
    44         * Destructor.
       
    45         */
       
    46         virtual ~CCbsUiConfirmationNote();
       
    47 
       
    48     public: // New functions
       
    49 
       
    50         /**
       
    51         * Shows global confirmation note, not enough memory...
       
    52         */
       
    53         void ShowGlobalConfirmationNoteL( CCoeEnv& aCoeEnv );
       
    54 
       
    55     private:
       
    56 
       
    57         // Own: Confirmation query
       
    58         CAknGlobalConfirmationQuery* iGlobalConfirmationQuery;
       
    59 
       
    60         // Forward declaration
       
    61         class CGlobalConfirmationQueryObserver;
       
    62 
       
    63         // Own: Confirmation query observer
       
    64         CGlobalConfirmationQueryObserver* iConfQueryObserver;
       
    65 
       
    66     };
       
    67 
       
    68 #endif // __CCbsUiConfirmationNote_h
       
    69 
       
    70 //  End of File