basiclocationinfodisplay/blid/ui/inc/cblidnotedialog.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2005 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:  execute the note dialog.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CBLIDNOTEDIALOG_H
       
    20 #define CBLIDNOTEDIALOG_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 * An active object that handles the note dialog execution
       
    29 */
       
    30 
       
    31 class CBlidNoteDialog : public CActive
       
    32     {
       
    33     public:  // Constructors and destructor
       
    34         /**
       
    35          * Two-phased constructor.
       
    36          */
       
    37         static CBlidNoteDialog* NewL();
       
    38 
       
    39         /**
       
    40          * Destructor.
       
    41          */
       
    42         virtual ~CBlidNoteDialog();
       
    43         
       
    44     private:
       
    45         /**
       
    46          * C++ default constructor.
       
    47          */
       
    48         CBlidNoteDialog();
       
    49 
       
    50         /**
       
    51          * By default Symbian 2nd phase constructor is private.
       
    52          */
       
    53         void ConstructL();  
       
    54 
       
    55     private: // From CActive
       
    56         void RunL();
       
    57         void DoCancel();
       
    58     
       
    59     public:
       
    60         void ExecuteNoteDialog();   
       
    61 
       
    62     private:
       
    63         TBool iIsNoteDisplayed;             
       
    64    
       
    65     };
       
    66 
       
    67 
       
    68 #endif  //CBLIDNOTEDIALOGOBJECT_H