photosgallery/viewframework/views/cloudview/src/glxbubbletimer.cpp
changeset 0 4e91876724a2
child 18 bcb43dc84c44
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/photosgallery/viewframework/views/cloudview/src/glxbubbletimer.cpp	Thu Dec 17 08:45:44 2009 +0200
@@ -0,0 +1,124 @@
+/*
+* Copyright (c) 2008-2009 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:    Implementation of Cloud view
+ *
+*/
+
+
+
+
+// INCLUDE FILES
+#include "glxbubbletimer.h" //class declaration
+
+#include <glxtracer.h>					// For Logs
+
+
+// ======== MEMBER FUNCTIONS ========
+// ---------------------------------------------------------------------------
+// Destructor
+// ---------------------------------------------------------------------------
+//
+
+CGlxBubbleTimer::~CGlxBubbleTimer()
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::~CGlxBubbleTimer");
+	//if (iTimer)	
+	//	{
+	//iTimer.Cancel ();
+	iTimer.Close ();
+	//}
+	if ( iNotifier)
+		{
+		iNotifier =NULL;
+		}
+	}
+
+// ConstructL
+// ---------------------------------------------------------------------------
+// 
+void CGlxBubbleTimer::ConstructL()
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::ConstructL()");
+	User::LeaveIfError (iTimer.CreateLocal ());
+	}
+
+// ---------------------------------------------------------------------------
+// Two-phased constructor.
+// ---------------------------------------------------------------------------
+// 
+CGlxBubbleTimer *CGlxBubbleTimer::NewL(MGlxTimerNotifier *aNotifier)
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::NewL");
+	CGlxBubbleTimer *self = new(ELeave)CGlxBubbleTimer(aNotifier);
+	CleanupStack::PushL (self);
+	self->ConstructL ();
+	CleanupStack::Pop (self);
+	return self;
+	}
+
+// ---------------------------------------------------------------------------
+// Default C++ Constructor
+// ---------------------------------------------------------------------------
+// 
+
+CGlxBubbleTimer::CGlxBubbleTimer(MGlxTimerNotifier *aNotifier) :
+	CActive(0), iNotifier(aNotifier)
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::CGlxBubbleTimer");
+	CActiveScheduler::Add (this);
+
+	}
+
+// ---------------------------------------------------------------------------
+// SetDelay()
+// ---------------------------------------------------------------------------
+//
+void CGlxBubbleTimer::SetDelay(TTimeIntervalMicroSeconds32 aDelay)
+    {
+    TRACER("GLX_CLOUD::CGlxBubbleTimer::SetDelay");
+    //iTimer.Cancel() ;
+    Cancel ();
+
+    _LIT(KDelayedHelloPanic, "CGlxBubbleTimer");
+    __ASSERT_ALWAYS(!IsActive(), User::Panic(KDelayedHelloPanic, 1));
+    // iTimer.Close() ;
+    if( !IsActive() )
+        {
+        iTimer.After (iStatus, aDelay);
+        SetActive ();
+        }
+    }
+
+// ---------------------------------------------------------------------------
+// RunL()
+// ---------------------------------------------------------------------------
+//
+void CGlxBubbleTimer::RunL()
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::RunL");
+	iNotifier->TimerComplete (); //notify that timer is over
+	}
+
+// ---------------------------------------------------------------------------
+// DoCancel()
+// ---------------------------------------------------------------------------
+//
+
+void CGlxBubbleTimer::DoCancel()
+	{
+	TRACER("GLX_CLOUD::CGlxBubbleTimer::DoCancel");
+	iTimer.Cancel ();
+	}
+
+//  End of File