iaupdate/IAD/ui/inc/iaupdatenavipanehandler.h
branchRCL_3
changeset 66 8b7f4e561641
parent 0 ba25891c3a9e
equal deleted inserted replaced
65:7333d7932ef7 66:8b7f4e561641
       
     1 /*
       
     2 * Copyright (c) 2007-2008 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:   Header file of CIAUpdateNaviPaneHandler class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef IAUPDATENAVIPANEHANDLER_H
       
    21 #define IAUPDATENAVIPANEHANDLER_H
       
    22 
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 #include <aknnavide.h>
       
    27 
       
    28 //FORWARD DECLARATIONS
       
    29 class CEikStatusPane;
       
    30 
       
    31 
       
    32 /**
       
    33 * CIAUpdateNaviPaneHandler
       
    34 * 
       
    35 * This class is used for changing navipane title.
       
    36 */
       
    37 class CIAUpdateNaviPaneHandler : public CBase
       
    38 	{
       
    39     public:
       
    40         /**
       
    41         * Destructor.
       
    42         */
       
    43 		virtual ~CIAUpdateNaviPaneHandler();
       
    44 
       
    45         /**
       
    46         * C++ default constructor.
       
    47         */
       
    48 		CIAUpdateNaviPaneHandler(CEikStatusPane* aStatusPane);
       
    49 
       
    50 	public:
       
    51 
       
    52 		/**
       
    53 		* Sets navi pane title.
       
    54 		* @param aTitle.
       
    55 		* @return None.
       
    56 		*/
       
    57 		void SetNaviPaneTitleL(const TDesC& aTitle);
       
    58 		
       
    59 
       
    60 	private:
       
    61 		// status pane
       
    62 		CEikStatusPane* iStatusPane;
       
    63 	
       
    64 	    // navi Pane
       
    65 	    CAknNavigationControlContainer* iNaviPane;
       
    66         
       
    67         // navi decorator
       
    68         CAknNavigationDecorator* iNaviDecorator;
       
    69         
       
    70         // has Navidecorator been pushed into navi pane
       
    71         TBool iNavidecoratorPushed;
       
    72         
       
    73         // has navi pane been pushed into navigation pane's object stack
       
    74         TBool iNavipanePushed;
       
    75 	};
       
    76 #endif      // IAUPDATENAVIPANEHANDLER_H
       
    77             
       
    78 // End of File