equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 "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: |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MTACTILEFEEDBACKINTERFACE_H |
|
19 #define MTACTILEFEEDBACKINTERFACE_H |
|
20 |
|
21 |
|
22 class MTactileFeedbackInterface |
|
23 { |
|
24 public: |
|
25 |
|
26 virtual void DirectFeedback(TTouchLogicalFeedback aStyle) = 0; |
|
27 virtual void RegisterFeedbackArea(void* aControl, TInt aControlType, TInt aAreaIndex, TInt aX, TInt aY, TInt aWidth, TInt aHeight, TTouchLogicalFeedback aStyle) = 0; |
|
28 virtual void UnregisterFeedbackArea(void* aControl, TInt aControlType, TInt aAreaIndex) = 0; |
|
29 virtual void UnregisterFeedbackForControl(void* aControl, TInt aControlType) = 0; |
|
30 virtual void MoveAreaToFirstPriority(void* aControl, TInt aControlType, TInt aAreaIndex) = 0; |
|
31 virtual TBool IsTouchFeedbackSupported() = 0; |
|
32 |
|
33 }; |
|
34 |
|
35 #endif // MTACTILEFEEDBACKINTERFACE_H |