mapnavproviderrefapp/inc/mnrpappview.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     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:  CMnrpAppView class definition 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MNRP_APPVIEW_H
       
    20 #define MNRP_APPVIEW_H
       
    21 
       
    22 #include <aknview.h>
       
    23 
       
    24 class CMnrpAppControl;
       
    25 
       
    26 /** Empty view for the case when application is started
       
    27  *	from menu*/
       
    28 class CMnrpAppView : public CAknView
       
    29     {
       
    30     public:
       
    31 
       
    32         static CMnrpAppView* NewL();
       
    33         virtual ~CMnrpAppView();
       
    34 
       
    35     public: // from CAknView
       
    36 
       
    37         TUid Id() const;
       
    38 
       
    39         void DoActivateL(
       
    40             const TVwsViewId& aPrevViewId,
       
    41             TUid aCustomMessageId,
       
    42             const TDesC8& aCustomMessage);
       
    43 
       
    44         void DoDeactivate();
       
    45 
       
    46     private:
       
    47 
       
    48         CMnrpAppView();
       
    49         void ConstructL();
       
    50         
       
    51     private:
       
    52     
       
    53     	/** UI control */
       
    54         CMnrpAppControl* iControl;    
       
    55 
       
    56     };
       
    57 
       
    58 #endif // MNRP_APPVIEW_H
       
    59