equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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 #include "MTactileFeedbackInterface.h" |
|
19 #include "flogger.h" |
|
20 |
|
21 class CTactileFeedbackInterfaceLCDUI : public CBase, public MTactileFeedbackInterface |
|
22 { |
|
23 CMIDToolkit* iLcduiToolkit; |
|
24 MTouchFeedback* iFeedback; |
|
25 |
|
26 public: |
|
27 CTactileFeedbackInterfaceLCDUI(CMIDToolkit* aToolkit); |
|
28 |
|
29 virtual void DirectFeedback(TTouchLogicalFeedback aStyle); |
|
30 virtual void RegisterFeedbackArea(void* aControl,TInt aControlType, TInt aAreaIndex, TInt aX, TInt aY, TInt aWidth, TInt aHeight, TTouchLogicalFeedback aStyle); |
|
31 virtual void UnregisterFeedbackArea(void* aControl, TInt aControlType, TInt aAreaIndex); |
|
32 virtual void UnregisterFeedbackForControl(void* aControl, TInt aControlType); |
|
33 virtual void MoveAreaToFirstPriority(void* aControl, TInt aControlType, TInt aAreaIndex); |
|
34 virtual TBool IsTouchFeedbackSupported(); |
|
35 |
|
36 }; |
|
37 |