videoplayback/videoplaybackcontrols/src/mpxvideoplaybackprogressbar.cpp
branchRCL_3
changeset 12 7f2b2a65da29
parent 11 8970fbd719ec
child 14 55fa1ec415c6
--- a/videoplayback/videoplaybackcontrols/src/mpxvideoplaybackprogressbar.cpp	Wed Apr 14 15:59:50 2010 +0300
+++ b/videoplayback/videoplaybackcontrols/src/mpxvideoplaybackprogressbar.cpp	Tue Apr 27 16:40:33 2010 +0300
@@ -15,7 +15,7 @@
 *
 */
 
-// Version : %version: e003sa33#20 %
+// Version : %version: 21 %
 
 
 // INCLUDE FILES
@@ -86,7 +86,6 @@
     iMinSecFormatString = iEikonEnv->AllocReadResourceL(R_QTN_TIME_DURAT_MIN_SEC);
     iHourMinSecFormatString = iEikonEnv->AllocReadResourceL(R_QTN_TIME_DURAT_LONG);
 
-
 #ifdef RD_TACTILE_FEEDBACK
     iFeedback = MTouchFeedback::Instance();
 #endif //RD_TACTILE_FEEDBACK
@@ -182,9 +181,9 @@
     }
 
 #ifdef RD_TACTILE_FEEDBACK
-    if (iFeedback)
+    if ( iFeedback )
     {
-        iFeedback->RemoveFeedbackForControl(this);
+        iFeedback->RemoveFeedbackForControl( this );
     }
 #endif //RD_TACTILE_FEEDBACK
 
@@ -217,7 +216,6 @@
     //
     // Calculate icon rects
     //
-
     TRect progressRect = Rect();
     TInt topMarginHeight = ( progressRect.iBr.iY - KMPXProgressBarHeight ) / 2 - 10;
     progressRect.iTl.iY += topMarginHeight;
@@ -284,6 +282,7 @@
 
     delete iFrameIcon;
     iFrameIcon = NULL;
+
     iFrameIcon = AknsUtils::CreateGulIconL(
         skin,
         KAknsIIDQgnGrafMup2BarFrame,
@@ -300,6 +299,7 @@
 
     delete iPlaybackIcon;
     iPlaybackIcon = NULL;
+
     iPlaybackIcon = AknsUtils::CreateGulIconL(
         skin,
         KAknsIIDQgnGrafMup2BarProgress2,
@@ -374,7 +374,7 @@
                    _L("ratio = %f"), aRatio );
 
     iPointerEventStarted = ETrue;
-    iWasPlaying = iController->State() == EPbStatePlaying? ETrue:EFalse;
+    iWasPlaying = iController->State() == EPbStatePlaying ? ETrue : EFalse;
 
     if ( iWasPlaying )
     {
@@ -388,7 +388,7 @@
         iFeedback->InstantFeedback( ETouchFeedbackSlider );
 #else
         iFeedback->InstantFeedback( ETouchFeedbackBasic );
-#endif //SYMBIAN_BUILD_GCE        
+#endif //SYMBIAN_BUILD_GCE
     }
 #endif //RD_TACTILE_FEEDBACK
 
@@ -421,7 +421,7 @@
         iFeedback->InstantFeedback( ETouchFeedbackSlider );
 #else
         iFeedback->InstantFeedback( ETouchFeedbackSensitive );
-#endif //SYMBIAN_BUILD_GCE        
+#endif //SYMBIAN_BUILD_GCE
     }
 #endif //RD_TACTILE_FEEDBACK
 
@@ -502,9 +502,11 @@
     }
     else
     {
-        // draw a solid background so that the entire progress
-        // bar is shown not just the area representing the
-        // portion that has been played.
+        //
+        //  draw a solid background so that the entire progress
+        //  bar is shown not just the area representing the
+        //  portion that has been played.
+        //
         gc.SetBrushColor( KRgbBlack );
         gc.SetBrushStyle( CGraphicsContext::ESolidBrush );
         gc.DrawRect( aRect );
@@ -630,7 +632,8 @@
 //
 void CMPXVideoPlaybackProgressBar::PositionChangedL( TInt aPosition, TBool aUserChanged )
 {
-    MPX_DEBUG(_L("CMPXVideoPlaybackProgressBar::PositionChangedL() [%d]"), aPosition );
+    MPX_ENTER_EXIT(_L("CMPXVideoPlaybackProgressBar::PositionChangedL()"),
+                   _L("aPosition = %d, aUserChanged = %d"), aPosition, aUserChanged );
 
     //
     //  We will ignore position information which engine sent
@@ -722,7 +725,8 @@
 //
 void CMPXVideoPlaybackProgressBar::SetTextLWithReadableTimeL( TInt aTime, CEikLabel* aLabel )
 {
-    MPX_DEBUG(_L("CMPXVideoPlaybackProgressBar::SetTextLWithReadableTimeL() [%d]"), aTime);
+    MPX_ENTER_EXIT(_L("CMPXVideoPlaybackProgressBar::SetTextLWithReadableTimeL()"),
+                   _L("aTime = %d"), aTime );
 
     TBuf<16> text;
 
@@ -768,6 +772,7 @@
     {
         delete iDownloadIcon;
         iDownloadIcon = NULL;
+
         iDownloadIcon = AknsUtils::CreateGulIconL(
             skin,
             KAknsIIDQgnGrafMup2BarProgress,
@@ -796,6 +801,7 @@
     {
         delete iSliderIcon;
         iSliderIcon = NULL;
+
         iSliderIcon = AknsUtils::CreateGulIconL(
             skin,
             KAknsIIDQgnGrafNsliderMarker,
@@ -805,6 +811,7 @@
 
         delete iSelectedSliderIcon;
         iSelectedSliderIcon = NULL;
+
         iSelectedSliderIcon = AknsUtils::CreateGulIconL(
             skin,
             KAknsIIDQgnGrafNsliderMarkerSelected,
@@ -856,6 +863,8 @@
 //
 void CMPXVideoPlaybackProgressBar::Reset()
 {
+    MPX_ENTER_EXIT(_L("CMPXVideoPlaybackProgressBar::Reset()"));
+
     if ( iPointerEventStarted || iDragging )
     {
         TPointerEvent event;