phoneapp/phoneuivoipextension/src/cphonetransferdialercontroller.cpp
changeset 21 92ab7f8d0eab
parent 0 5f000ab63145
child 22 6bb1b21d2484
--- a/phoneapp/phoneuivoipextension/src/cphonetransferdialercontroller.cpp	Tue Feb 02 00:10:04 2010 +0200
+++ b/phoneapp/phoneuivoipextension/src/cphonetransferdialercontroller.cpp	Fri Mar 19 09:28:42 2010 +0200
@@ -23,13 +23,21 @@
 #include <AknsItemID.h>
 #include <StringLoader.h>
 
-#include <phoneui.mbg>
-#include <phoneui.rsg>
-#include <phoneuivoip.rsg>
-#include <data_caging_path_literals.hrh> // For KDC_APP_BITMAP_DIR
+
+// <-- QT PHONE START -->
+//#include <phoneui.mbg>
+#include "phoneresourceids.h"
+//#include <phoneui.rsg>
+//#include <phoneuivoip.rsg>
+// <-- QT PHONE END -->
 
 #include "phoneui.pan"
 #include "phonelogger.h"
+// <-- QT PHONE START -->
+//#include "cphonebubblewrapper.h" // For KDC_APP_BITMAP_DIR
+#include <data_caging_path_literals.hrh>
+// <-- QT PHONE END -->
+
 #include "cphonetransferdialercontroller.h"
 #include "cphonemainresourceresolver.h"
 #include "phonerssvoip.h"
@@ -43,6 +51,8 @@
 // Number of buttons 
 const TInt KButtonCount = 2;
 
+// <-- QT PHONE START -->
+/*
 class TPhoneDialerToolbarButton 
     {
 public:
@@ -62,7 +72,9 @@
               EPhoneCmdTransferDialerSearch
             }                 
         };  
-
+        
+ */
+// <-- QT PHONE END -->
 // ================= MEMBER FUNCTIONS =======================
 
 // C++ default constructor can NOT contain any code, that
@@ -116,10 +128,13 @@
         iToolbar = &aToolbar;
         // Create transfer specific buttons and add them to the 
         // toolbar starting from index 0
-        CAknButton* button( NULL );
-    
+ // <-- QT PHONE START --> 
+        //CAknButton* button( NULL );
+  
+ /*
         for( TInt i = 0; i < KButtonCount; i++ )
             {
+           
             TAknsItemID skinId = SkinId( bArray[i].iIconIndex );
             // Load tooltip text.
             HBufC* tooltipText = GetTooltipTextL( bArray[i].iCommandId );  
@@ -133,7 +148,9 @@
             iToolbar->AddItemL( button, EAknCtButton, bArray[i].iCommandId, 0, i );
             CleanupStack::Pop( button );
             CleanupStack::PopAndDestroy( tooltipText );
-            }      
+            } 
+            */
+ // <-- QT PHONE END -->        
         iIsInitialized = ETrue;
         }
    
@@ -209,9 +226,9 @@
     __ASSERT_DEBUG( iToolbar, Panic( EPhoneCtrlInvariant ) );
     for( TInt i = 0; i < KButtonCount; i++ )
         {
-        iToolbar->HideItem( bArray[ i ].iCommandId, !aShow, EFalse );
-        }    
-    
+// <-- QT PHONE START -->   
+        //iToolbar->HideItem( bArray[ i ].iCommandId, !aShow, EFalse );
+        }
     if ( aShow )
         {
         iToolbar->SetItemDimmed( EPhoneCmdTransferDialerOk, ETrue, EFalse ); 
@@ -219,7 +236,8 @@
         iToolbar->SetItemDimmed( EPhoneDialerCmdClear, ETrue, EFalse ); 
         }
     
-    iToolbar->DrawDeferred();
+    //iToolbar->DrawDeferred();
+// <-- QT PHONE END --> 
     }
 
 // ---------------------------------------------------------------------------
@@ -293,12 +311,14 @@
 // CPhoneTransferDialerController::SkinId
 // ---------------------------------------------------------------------------
 //    
-TAknsItemID CPhoneTransferDialerController::SkinId( TInt aIconIndex ) const
+TAknsItemID CPhoneTransferDialerController::SkinId( TInt /*aIconIndex*/ ) const
     {
     TAknsItemID skinId;
-    
+ // <-- QT PHONE START -->
+ /*
     switch ( aIconIndex )
         {
+        
         case EMbmPhoneuiQgn_indi_button_send_dtmf:
             skinId = KAknsIIDQgnIndiButtonSendDtmf;
             break;
@@ -309,6 +329,8 @@
             skinId = KAknsIIDNone;        
             break;            
         }
-    
+  */
+  skinId = KAknsIIDNone; 
+// <-- QT PHONE END -->     
     return skinId;  
     }