supl/locationomasuplprotocolhandler/protocolhandlerver1/inc/epos_comasupldialogtimer.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/supl/locationomasuplprotocolhandler/protocolhandlerver1/inc/epos_comasupldialogtimer.h Tue Feb 02 01:06:48 2010 +0200
@@ -0,0 +1,135 @@
+/*
+* Copyright (c) 2002-2005 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: General purpose class for timeout notification.
+*
+*/
+
+
+
+#ifndef C_COMASUPLDIALOGTIMER_H
+#define C_COMASUPLDIALOGTIMER_H
+
+#include <e32base.h>
+
+class MOMASuplDialogTimeOutNotifier;
+
+enum TDialogTimerPanicCode
+{
+ ESuplDialogTimeoutTimerFailed
+};
+
+/**
+* This class will notify an object after a specified timeout.
+* @lib eposomasuplprotocolhandler.lib
+* @since S60 v3.1u
+*/
+
+class COMASuplDialogTimer : public CTimer
+ {
+public:
+ /**
+ *NewL,Create a COMASuplDialogTimer object
+ *@since S60 v3.1u
+ *@param aTimeOutNotify object to notify of timeout event
+ *@return a pointer to the created instance of COMASuplTimeoutTimer
+ */
+ static COMASuplDialogTimer* NewL(MOMASuplDialogTimeOutNotifier& aTimeOutNotify);
+
+ /**
+ *NewLC
+ *Create a COMASuplTimeoutTimer object
+ *@since S60 v3.1u
+ *@param aTimeOutNotify object to notify of timeout event
+ *@return a pointer to the created instance of COMASuplTimeoutTimer
+ */
+ static COMASuplDialogTimer* NewLC(MOMASuplDialogTimeOutNotifier& aTimeOutNotify);
+
+ /**
+ *~COMASuplTimeoutTimer,Destroy the object and release all memory objects
+ *@since S60 v3.1u
+ *@param None
+ *@return None
+ */
+ ~COMASuplDialogTimer();
+
+protected: // From CTimer
+
+ /**
+ *RunL,Invoked when a timeout occurs
+ *@since S60 v3.1u
+ *@param None
+ *@return None
+ */
+ virtual void RunL();
+
+public:
+
+ /**
+ *StartTimer,Starts the timer with specified timeout value
+ *@since S60 v3.1u
+ *@param aTimeOut
+ *@return None
+ */
+ void StartTimer( const TInt aTimeOut);
+
+ /**
+ *StopTimer,Cancels the timer started timer
+ *@since S60 v3.1u
+ *@param None
+ *@return None
+ */
+ void StopTimer();
+
+ /**
+ *IsTimerExpired,Checks if Timer expired on last call
+ *@since S60 v3.1u
+ *@param TBool, ETrue if it's expired else EFalse
+ *@return None
+ */
+ TBool IsTimerExpired();
+
+ TBool IsTimerStarted();
+
+private:
+
+ /**
+ *COMASuplTimeoutTimer,Perform the first phase of two phase construction
+ *@since S60 v3.1u
+ *@param aTimeOutNotify An observer to notify
+ */
+ COMASuplDialogTimer(MOMASuplDialogTimeOutNotifier& aTimeOutNotify);
+
+ /**
+ *ConstructL,Perform the second phase construction of a COMASuplTimeoutTimer
+ *@since S60 v3.1u
+ *@param None
+ *@return None
+ */
+ void ConstructL();
+
+private: // Member variables
+
+ /** The observer for this objects events */
+ MOMASuplDialogTimeOutNotifier& iNotify;
+
+ //Is TimerExpired on last call
+ TBool iTimerExpired;
+
+
+
+ };
+
+#endif // C_COMASuplDialogTimer_H
+
+