eventsui/eventsmgmtui/inc/evtmgmtuiappui.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2007 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:  Application class for Events Management UI.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_EVTMGMTUIAPPUI_H
       
    20 #define C_EVTMGMTUIAPPUI_H
       
    21 
       
    22 // SYSTEM INCLUDES
       
    23 #include <eikapp.h>
       
    24 #include <eikdoc.h>
       
    25 #include <e32std.h>
       
    26 #include <coeccntx.h>
       
    27 #include <aknViewAppUi.h>
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 class CEikStatusPane;
       
    31 class CEvtMgmtUiLegalNote;
       
    32 
       
    33 /**
       
    34  * Events Management UI application class. This class extends the Location
       
    35  * S60 Application UI class to provide the Events management UI related
       
    36  * Application
       
    37  *
       
    38  * @lib evtmgmtui.exe
       
    39  * @since S60 v5.0
       
    40  */
       
    41 class CEvtMgmtUiAppUi : public CAknViewAppUi
       
    42     {
       
    43 public:   
       
    44 	/**
       
    45 	 * Second phase of the two phase constructor
       
    46 	 *
       
    47 	 * Called by the Application framework
       
    48 	 */ 
       
    49     void ConstructL();
       
    50   
       
    51   	/**
       
    52   	 * Virtual destructor
       
    53   	 */
       
    54     virtual ~CEvtMgmtUiAppUi();  
       
    55   
       
    56 public: // Inherited from Base classes
       
    57 
       
    58   	/**
       
    59   	 * Inherited from CAknViewAppUi
       
    60   	 */
       
    61     void HandleCommandL( TInt aCommand );
       
    62                        
       
    63 private: // Inherited from Base classes
       
    64   	/**
       
    65   	 * Inherited from CAknViewAppUi
       
    66   	 */
       
    67     virtual TKeyResponse HandleKeyEventL( const TKeyEvent& aKeyEvent,
       
    68                                                 TEventCode aType );
       
    69                                                 
       
    70 private:
       
    71     /**
       
    72      * Create Events UI title text
       
    73      */                      
       
    74     void MakeTitleL( TInt aResourceText );
       
    75     
       
    76 private: //Data
       
    77     /**
       
    78      * Retrieve the application specific status pane
       
    79      */
       
    80     CEikStatusPane* StatusPane();
       
    81     
       
    82     /**
       
    83      * Legal Note
       
    84      */
       
    85     CEvtMgmtUiLegalNote* iLegalNote;
       
    86     };
       
    87 
       
    88 #endif  // C_EVTMGMTUIAPPUI_H
       
    89 
       
    90 // End of File