diff -r 5cc91383ab1e -r 7333d7932ef7 iaupdate/IAD/ui/src/iaupdatenavipanehandler.cpp --- a/iaupdate/IAD/ui/src/iaupdatenavipanehandler.cpp Thu Aug 19 10:02:49 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,108 +0,0 @@ -/* -* Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - - - -// INCLUDE FILES - -#include "iaupdatenavipanehandler.h" -#include "iaupdatedebug.h" -#include -#include -#include - -/******************************************************************************* - * class CIAUpdateNaviPaneHandler - *******************************************************************************/ - - -// ----------------------------------------------------------------------------- -// Destructor -// -// ----------------------------------------------------------------------------- -// -CIAUpdateNaviPaneHandler::~CIAUpdateNaviPaneHandler() - { - if (iNaviDecorator) - { - if (iNaviPane && iNavidecoratorPushed) - { - iNaviPane->Pop(iNaviDecorator); - } - - delete iNaviDecorator; - } - - if (iNaviPane && iNavipanePushed) - { - iNaviPane->Pop(); // restore previous navi pane - } - } - - -// ----------------------------------------------------------------------------- -// CIAUpdateNaviPaneHandler::CIAUpdateNaviPaneHandler -// -// ----------------------------------------------------------------------------- -// -CIAUpdateNaviPaneHandler::CIAUpdateNaviPaneHandler(CEikStatusPane* aStatusPane) - : iStatusPane(aStatusPane) - { - iNavidecoratorPushed = EFalse; - iNavipanePushed = EFalse; - - if (iStatusPane) - { - TRAP_IGNORE( - iNaviPane = (CAknNavigationControlContainer*)iStatusPane->ControlL( - TUid::Uid(EEikStatusPaneUidNavi) ) ); - } - } - - -// ---------------------------------------------------------------------------- -// CIAUpdateNaviPaneHandler::SetNaviPaneTitleL -// -// ---------------------------------------------------------------------------- -// -void CIAUpdateNaviPaneHandler::SetNaviPaneTitleL(const TDesC& aTitle) - { - if (!iStatusPane || !iNaviPane) - { - return; - } - - if (iNaviDecorator) - { - CAknNaviLabel* naviLabel = static_cast(iNaviDecorator->DecoratedControl()); - if (naviLabel) - { - naviLabel->SetTextL(aTitle); - iNaviDecorator->DrawDeferred(); - } - } - else - { - iNaviDecorator = iNaviPane->CreateNavigationLabelL(aTitle); - iNaviPane->PushL(*iNaviDecorator); // activate navi label in navi pane - iNavidecoratorPushed = ETrue; - } - } - - - -// End of File