diff -r 24062c24fe38 -r 2a26698d78ba phoneuis/Ussd/src/UssdNaviPane.cpp --- a/phoneuis/Ussd/src/UssdNaviPane.cpp Fri Mar 12 15:42:40 2010 +0200 +++ b/phoneuis/Ussd/src/UssdNaviPane.cpp Mon Mar 15 12:40:24 2010 +0200 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2010 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" @@ -24,9 +24,9 @@ #include #include #include "UssdComms.h" - #include "UssdAppUi.h" #include "UssdNaviPane.h" +#include "UssdLogger.h" #include // CONSTANTS @@ -82,9 +82,11 @@ // void CUssdNaviPane::ConstructL() { + _LOGSTRING( "CUssdNaviPane::ConstructL =>" ) CreateExtraNaviLabelL(); + User::LeaveIfError( iPeninputServer.Connect() ); iCharacterSetConverter = CCnvCharacterSetConverter::NewL(); iCharacterSetConverter->PrepareToConvertToOrFromL( @@ -93,7 +95,7 @@ iCharacterSetConverter->SetDowngradeForExoticLineTerminatingCharacters( CCnvCharacterSetConverter::EDowngradeExoticLineTerminatingCharactersToJustLineFeed ); - + _LOGSTRING( "CUssdNaviPane::ConstructL <=" ) } // ----------------------------------------------------------------------------- @@ -104,6 +106,8 @@ // CUssdNaviPane::~CUssdNaviPane() { + _LOGSTRING( "CUssdNaviPane::~CUssdNaviPane =>" ) + iPeninputServer.Close(); if ( iNaviPane && iNaviDecorator ) { @@ -117,7 +121,7 @@ iCharacterSetConverter = NULL; iNaviLabel = NULL; - + _LOGSTRING( "CUssdNaviPane::~CUssdNaviPane <=" ) } // ---------------------------------------------------- @@ -150,6 +154,8 @@ TInt CUssdNaviPane::UpdateMsgLengthL( const TDesC& aInputString, CCoeControl* aControl ) { + _LOGSTRING2( "CUssdNaviPane::UpdateMsgLengthL =>, aInputString=%S", + &aInputString ) TInt maxLen(0); const TInt txtLen = aInputString.Length(); @@ -196,7 +202,12 @@ } iNaviLabel->SetTextL( *digitBuffer ); + _LOGSTRING( + "CUssdNaviPane::UpdateMsgLengthL iPeninputServer.UpdateAppInfo" ) + iPeninputServer.UpdateAppInfo( *digitBuffer, EAppIndicatorMsg ); CleanupStack::PopAndDestroy( digitBuffer ); + _LOGSTRING2( "CUssdNaviPane::UpdateMsgLengthL <=, maxLen=%d", + maxLen ) return maxLen; } @@ -210,6 +221,9 @@ // TBool CUssdNaviPane::NeedsToBeSentAsUnicodeL( const TDesC& aInputString ) const { + _LOGSTRING2( + "CUssdNaviPane::NeedsToBeSentAsUnicodeL =>, aInputString=%S", + &aInputString ) TBool needsToBeSentAsUnicode = EFalse; @@ -255,6 +269,9 @@ remainderOfInputString.Set( remainderOfInputString.Right( returnValue ) ); } + _LOGSTRING2( + "CUssdNaviPane::NeedsToBeSentAsUnicodeL <=, needsToBeSentAsUnicode=%d", + needsToBeSentAsUnicode ) return needsToBeSentAsUnicode; }