phonebookui/Phonebook2/NamesListExtension/src/CPbk2DelayedWaitNote.cpp
branchRCL_3
changeset 13 a6539d1e8e43
child 21 9da50d567e3c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/NamesListExtension/src/CPbk2DelayedWaitNote.cpp	Wed Jun 09 09:26:27 2010 +0300
@@ -0,0 +1,115 @@
+/*
+* Copyright (c) 2002-2007 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:  Phonebook2  helper class
+*              
+*/
+
+//  INCLUDES
+#include <Pbk2ProcessDecoratorFactory.h>
+#include <Pbk2UIControls.rsg>
+#include <avkon.hrh>
+#include "CPbk2DelayedWaitNote.h"
+
+#include <coemain.h> // For EActivePriorityClockTimer
+
+const TInt KDelay = 500000; // 0.5 seconds
+
+CPbk2DelayedWaitNote* CPbk2DelayedWaitNote::NewL
+        ( MPbk2ProcessDecoratorObserver& aObserver, TInt aResourceId )
+    {
+    CPbk2DelayedWaitNote* self = 
+        new ( ELeave ) CPbk2DelayedWaitNote( aObserver, aResourceId );
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+CPbk2DelayedWaitNote::~CPbk2DelayedWaitNote()
+    {
+    Cancel();
+    delete iDecorator;
+    iDecorator = NULL;
+    }
+
+CPbk2DelayedWaitNote::CPbk2DelayedWaitNote
+        ( MPbk2ProcessDecoratorObserver& aObserver, TInt aResourceId )
+        : CTimer( EActivePriorityClockTimer ), iObserver( aObserver ), 
+          iResourceId( aResourceId )
+    {
+    
+    }
+
+void CPbk2DelayedWaitNote::ConstructL()
+    {
+    CActiveScheduler::Add( this );
+    CTimer::ConstructL();
+    }
+
+void CPbk2DelayedWaitNote::Stop()
+    {
+    Cancel();
+    DismissWaitNote();
+    }
+
+void CPbk2DelayedWaitNote::Start()
+    {
+    if ( !IsActive() && !iStarted )
+        {
+        After( TTimeIntervalMicroSeconds32( KDelay ) );
+        }
+    }
+
+void CPbk2DelayedWaitNote::RunL()
+    {   
+    if( !iStarted && !iDecorator )
+        {   
+        iDecorator = Pbk2ProcessDecoratorFactory::CreateWaitNoteDecoratorL
+                  ( iResourceId, EFalse );
+        iDecorator->SetObserver( *this );
+        iDecorator->ProcessStartedL( 0 ); // wait note doesn't care about amount
+        iStarted = ETrue;
+        }
+    }
+
+void CPbk2DelayedWaitNote::ProcessDismissed( TInt aCancelCode )
+    {
+    iStarted = EFalse;
+    iObserver.ProcessDismissed( aCancelCode );
+    }
+
+TInt CPbk2DelayedWaitNote::RunError( TInt /*aError*/ )
+    {
+    iStarted = EFalse;
+    DismissWaitNote();
+    return KErrNone;
+    }
+
+void CPbk2DelayedWaitNote::DismissWaitNote()
+    {
+    if ( iDecorator )
+        {
+        TRAPD( err, iDecorator->ProcessStopped() );
+        if ( err != KErrNone )
+            {
+            delete iDecorator;
+            iDecorator = NULL;
+            }
+        }
+    else 
+        {
+        iObserver.ProcessDismissed( EAknSoftkeyDone );
+        }   
+    }
+// End of File