uiservicetab/vimpstui/src/cvimpstuisearchviewcontrol.cpp
branchRCL_3
changeset 14 9fdee5e1da30
parent 0 5e5d6b214f4f
--- a/uiservicetab/vimpstui/src/cvimpstuisearchviewcontrol.cpp	Wed Mar 31 21:14:49 2010 +0300
+++ b/uiservicetab/vimpstui/src/cvimpstuisearchviewcontrol.cpp	Wed Apr 14 15:46:18 2010 +0300
@@ -27,7 +27,7 @@
 #include "cvimpstuisearchview.h"
 #include "vimpstui.hrh"
 #include "vimpstutilsdialog.h"
-#include    "vimpstdebugprint.h" 
+#include "uiservicetabtracer.h"
 // imlauncher
 #include <imcvlauncher.h>
 
@@ -225,6 +225,7 @@
 void CVIMPSTUiSearchViewControl::HandleListBoxEventL( CEikListBox* /*aListBox*/,
 												 TListBoxEvent aEventType )
     {
+	TRACER_AUTO;
     switch(aEventType)
         {
 
@@ -288,6 +289,7 @@
 // ---------------------------------------------------------
 void CVIMPSTUiSearchViewControl::OpenConversationL(const TDesC& aContactId )
 	{
+	TRACER_AUTO;
 	MVIMPSTProcessArray& arrayProcess = iCommandHandler.GetProcessInterface();
 	TInt indexInTabbedView = arrayProcess.FindContactIndexL( aContactId );
 	TInt result = EAknSoftkeyOk;
@@ -336,6 +338,7 @@
 //
 void CVIMPSTUiSearchViewControl::SizeChanged()
 	{
+	TRACER_AUTO;
 	if ( iListBox )
         {
         iListBox->SetRect(Rect());
@@ -381,6 +384,7 @@
 TKeyResponse CVIMPSTUiSearchViewControl::OfferKeyEventL( const TKeyEvent& aKeyEvent,
 													TEventCode aType )
 	{
+	TRACER_AUTO;
 	TKeyResponse result = EKeyWasNotConsumed;
 
     // Offer key event first to the key event handler
@@ -422,7 +426,7 @@
 //
 void CVIMPSTUiSearchViewControl::UpdateListBoxL(RArray<TVIMPSTSearchData> aSerachData)
     {
-	
+	TRACER_AUTO;
 	TInt granularity( iItemArray->Count() );
 	++granularity;
 	
@@ -487,6 +491,7 @@
 //
 HBufC* CVIMPSTUiSearchViewControl::GetFocusedContactLC() const
 	{
+	TRACER_AUTO;
 	HBufC* retText=NULL;
 	TInt curIndex = iListBox->CurrentItemIndex();
     TPtrC ptr= iItemArray->MdcaPoint(curIndex);
@@ -508,6 +513,7 @@
 //
 void CVIMPSTUiSearchViewControl::ClearListBoxContents()
     {
+	TRACER_AUTO;
 	iItemArray->Reset();
     TRAPD( err, iListBox->HandleItemRemovalL() );
     if( err != KErrNone )
@@ -523,6 +529,7 @@
 //
 void CVIMPSTUiSearchViewControl::UpdateCbaL( TBool  aUseDefaultCba /*= EFalse*/ )
     {
+	TRACER_AUTO;
     TInt cbaRes = R_SERVTAB_SOFTKEYS_OPTIONS_BACK__EMPTY;
     iCurrentCmdToExe = -1;
     TInt index = KErrNotFound;
@@ -547,20 +554,20 @@
 		{
 		if(iSearchView.HideAddToContactsL())
 		    {			
-		    CHAT_DP( D_CHAT_LIT("CVIMPSTUiDoubleListboxArray::HideAddToContactsL after" ) );		
+		   TRACE(" after"  );		
 		    HBufC* contactId = GetFocusedContactLC();
 		    TInt curIndex = iCommandHandler.GetProcessInterface().FindContactIndexL(*contactId); 
 		    TVIMPSTEnums::TOnlineStatus onlinestatus = iCommandHandler.GetProcessInterface().GetOnlineStatusL(curIndex);   
 		    CleanupStack::PopAndDestroy(contactId);
 		    if( TVIMPSTEnums::EPending == onlinestatus )
 		        {
-		        CHAT_DP( D_CHAT_LIT("CVIMPSTUiDoubleListboxArray::EPending in" ) );		
+		        TRACE(" EPending in"  );		
 		        cbaRes = R_SERVTAB_SOFTKEYS_OPTIONS_BACK__EMPTY;
 		        iCurrentCmdToExe = -1;    
 		        }
 		    else
 		        {
-		        CHAT_DP( D_CHAT_LIT("CVIMPSTUiDoubleListboxArray::ESearchOpenConversation" ) );		
+		        TRACE("ESearchOpenConversation"  );		
 		        cbaRes = R_SERVTAB_SOFTKEYS_OPTION_SEARCH_OPENCONV__BACK;
 		        iCurrentCmdToExe = ESearchOpenConversation;    
 		        }