Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\xyin.h
15 // Generic digitiser driver header
26 #include <kernel/kpower.h>
31 //#define __DIGITISER_DEBUG1__
32 //#define __DIGITISER_DEBUG2__
34 #ifdef __DIGITISER_DEBUG1__
35 #define __KTRACE_XY1(s) s;
37 #define __KTRACE_XY1(s)
39 #ifdef __DIGITISER_DEBUG2__
40 #define __KTRACE_XY2(s) s;
42 #define __KTRACE_XY2(s)
48 const TInt KMaxXYSamples=4;
54 struct SDigitiserConfig
56 TInt iPenDownDiscard; // number of samples to discard on entering the detection volume (area if 2 dimensional)
57 TInt iPenUpDiscard; // number of samples to discard on leaving the detection volume (area if 2 dimensional)
58 TInt iDriveXRise; // number of milliseconds to wait when driving horizontal edges
59 TInt iDriveYRise; // number of milliseconds to wait when driving vertical edges
60 TInt iMinX; // minimum valid X value
61 TInt iMaxX; // maximum valid X value
62 TInt iSpreadX; // maximum valid X spread
63 TInt iMinY; // minimum valid Y value
64 TInt iMaxY; // maximum valid Y value
65 TInt iSpreadY; // maximum valid Y spread
66 TInt iMaxJumpX; // maximum X movement per sample (pixels)
67 TInt iMaxJumpY; // maximum Y movement per sample (pixels)
68 TInt iAccThresholdX; // accumulated offset in pixels to cause movement in X direction
69 TInt iAccThresholdY; // accumulated offset in pixels to cause movement in Y direction
70 TInt iNumXYSamples; // number of samples to average
71 TBool iDisregardMinMax; // TRUE if we want to disregard minimum and maximum
78 struct SDigitiserConfigV01
80 SDigitiserConfig i2dConfig;
81 TInt iMinZ; // minimum valid Z value (distance to screen): 0 when lighlty touching (no pressure applied)
82 TInt iMaxZ; // maximum valid Z value: positive for distance to screen, negative for pressure
83 TInt iSpreadZ; // maximum valid Z spread (in distance to screen units)
84 TInt iMaxJumpZ; // maximum Z movement per sample (in distance to screen units)
85 TInt iAccThresholdX; // accumulated offset in distance to screen units to cause movement in Z direction
92 NONSHARABLE_CLASS(DDigitiser) : public DPowerHandler
100 EIdle=0, // waiting for pen to go down
101 EDiscardOnPenDown, // discarding just after pen down
102 EBufferFilling, // buffer filling with samples
103 EBufferFull, // delay line is now full
104 EPenDown, // pen-down event has been delivered
108 static DDigitiser* New();
111 virtual TInt DoCreate()=0;
113 // signals from hardware-dependent code
114 void RawSampleValid();
117 // signals to hardware-dependent code
118 virtual void WaitForPenDown()=0;
119 virtual void WaitForPenUp()=0;
120 virtual void WaitForPenUpDebounce()=0;
121 virtual void DigitiserOn()=0;
122 virtual void DigitiserOff()=0;
124 // machine-configuration related things
125 virtual TInt DigitiserToScreen(const TPoint& aDigitiserPoint, TPoint& aScreenPoint)=0;
126 virtual void ScreenToDigitiser(TInt& aX, TInt& aY)=0;
127 virtual TInt SetXYInputCalibration(const TDigitizerCalibration& aCalibration)=0;
128 virtual TInt CalibrationPoints(TDigitizerCalibration& aCalibration)=0;
129 virtual TInt SaveXYInputCalibration()=0;
130 virtual TInt RestoreXYInputCalibration(TDigitizerCalibrationType aType)=0;
131 virtual void DigitiserInfo(TDigitiserInfoV01& aInfo)=0;
137 void ProcessRawSample();
145 TBool SamplesToPoint(TPoint& aPoint);
149 TInt DelayAndConvertSample(const TPoint& aSample, TPoint& aScreenPoint);
153 void IssuePenDownEvent();
157 void IssuePenUpEvent();
158 void IssuePenMoveEvent(const TPoint& aPoint);
159 virtual void FilterPenMove(const TPoint& aPoint)=0;
160 virtual void ResetPenMoveFilter()=0;
164 virtual TInt HalFunction(TInt aFunction, TAny* a1, TAny* a2);
168 void HandleMsg(TMessageBase* aMsg);
172 TDfc iSampleDfc; // called when a raw sample is available
173 TDfc iPenUpDfc; // called when the pen goes up
174 TInt iX[KMaxXYSamples]; // raw X samples from hardware
175 TInt iY[KMaxXYSamples]; // raw Y samples from hardware
176 SDigitiserConfig iCfg; // configuration
177 TInt iBufferIndex; // delay line index
178 TPoint* iBuffer; // delay line for samples
179 TPoint iLastPos; // last pen position