webengine/webkitutils/stmgesturefw/inc/timerinterface.h
changeset 28 d39add9822e2
equal deleted inserted replaced
27:6297cdf66332 28:d39add9822e2
       
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Interface for Timer
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TIMERINTERFACE_H_
       
    19 #define TIMERINTERFACE_H_
       
    20 
       
    21 class MTimerInterface
       
    22 {
       
    23 public:
       
    24 	virtual void startTouchTimer(TInt aDelay, TInt aPointerNumber) = 0 ;
       
    25 	virtual void cancelTouchTimer(TInt aPointerNumber) = 0 ;
       
    26 	virtual void startHoldTimer(TInt aDelay, TInt aPointerNumber) = 0 ;
       
    27 	virtual void cancelHoldTimer(TInt aPointerNumber) = 0 ;
       
    28 	virtual void startSuppressTimer(TInt aDelay, TInt aPointerNumber) = 0 ;
       
    29 	virtual void cancelSuppressTimer(TInt aPointerNumber) = 0 ;
       
    30 };
       
    31 #endif /* TIMERINTERFACE_H_ */