summaryrefslogtreecommitdiff
path: root/qt/qt-2.3.9.patch/qte239-qwsmouse.patch
blob: 865516e52529f25e7fb82efeb8ae835d1949d586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#
# Patch managed by http://www.holgerschurig.de/patcher.html
#

--- qt-2.3.9-snapshot-20041211/src/kernel/qwsmouse_qws.cpp~tslib.patch
+++ qt-2.3.9-snapshot-20041211/src/kernel/qwsmouse_qws.cpp
@@ -7,6 +7,14 @@
 **
 ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
 **
+** Portions Copyright (C) 2003 Texas Instruments, Inc.
+**      Rights to said portions for use under the GPL and QPL licenses
+**     are hereby granted to Trolltech AS.
+**
+** Portions Copyright (C) 2004 Holger Hans Peter Freyther <freyther@handhelds.org>
+**      Rights to said portions for use under the GPL and QPL licenses
+**      are hereby granted to Trolltech AS.
+**
 ** This file is part of the kernel module of the Qt GUI Toolkit.
 **
 ** This file may be distributed and/or modified under the terms of the
@@ -60,6 +68,10 @@
 #include <linux/tpanel.h>
 #endif
 
+#ifdef QWS_TSLIB
+#include <tslib.h>
+#endif
+
 //#define QT_QWS_K2
 
 #if defined(QT_QWS_IPAQ) || defined(QT_QWS_K2)
@@ -1124,6 +1136,221 @@
     return sent;
 }
 
+
+class QTSLibHandler : public QCalibratedMouseHandler
+{
+    Q_OBJECT
+public:
+    QTSLibHandler();
+    ~QTSLibHandler();
+
+    virtual void clearCalibration();
+    virtual void calibrate( QWSPointerCalibrationData * );
+
+    static int sortByX( const void*, const void* );
+    static int sortByY( const void*, const void* );
+private:
+    void openTs();
+    void closeTs();
+    void interpolateSample();
+
+private:
+    bool raw : 1;
+#ifdef QWS_TSLIB
+    struct tsdev *ts;
+#endif
+    QSocketNotifier *m_notify;
+
+private slots:
+    void readMouseData();
+};
+
+QTSLibHandler::QTSLibHandler()
+    : raw(false), m_notify(0l)
+{
+    openTs();
+}
+
+QTSLibHandler::~QTSLibHandler()
+{
+    closeTs();
+}
+
+void QTSLibHandler::openTs()
+{
+#ifdef QWS_TSLIB
+    char *tsdevice;
+
+    if( ( tsdevice = getenv( "TSLIB_TSDEVICE" ) ) != NULL ) {
+        ts = ts_open( tsdevice, 1 );
+    } else {
+        ts = ts_open( "/dev/ts", 1 );
+    }
+
+    if (!ts) {
+        qWarning( "Cannot open touchscreen (%s)", strerror( errno ) );
+        return;
+    }
+
+    if (ts_config( ts )) {
+        qWarning( "Cannot configure touchscreen (%s)", strerror( errno ) );
+        return;
+    }
+
+
+    m_notify = new QSocketNotifier( ts_fd(ts), QSocketNotifier::Read, this );
+    connect( m_notify, SIGNAL(activated(int)), this, SLOT(readMouseData()));
+#endif
+}
+
+void QTSLibHandler::closeTs()
+{
+#ifdef QWS_TSLIB
+    if (ts)
+        ts_close(ts);
+
+    delete m_notify;
+    m_notify = 0; ts = 0;
+    raw = false;
+#endif
+
+}
+
+void QTSLibHandler::clearCalibration()
+{
+    raw = true;
+}
+
+
+void QTSLibHandler::calibrate( QWSPointerCalibrationData *cd )
+{
+    QPoint dev_tl = cd->devPoints[ QWSPointerCalibrationData::TopLeft ];
+    QPoint dev_br = cd->devPoints[ QWSPointerCalibrationData::BottomRight ];
+    QPoint screen_tl = cd->screenPoints[ QWSPointerCalibrationData::TopLeft ];
+    QPoint screen_br = cd->screenPoints[ QWSPointerCalibrationData::BottomRight ];
+    int a, b, c, d, e, f, s;
+
+    s = 1 << 16;
+
+    a = s * (screen_tl.x() - screen_br.x() ) / (dev_tl.x() - dev_br.x());
+    b = 0;
+    c = s * screen_tl.x() - a * dev_tl.x();
+
+    d = 0;
+    e = s * (screen_tl.y() - screen_br.y() ) / (dev_tl.y() - dev_br.y());
+    f = s * screen_tl.y() - e * dev_tl.y();
+
+    QString calFile = "/etc/pointercal";
+#ifndef QT_NO_TEXTSTREAM
+    QFile file( calFile );
+    if ( file.open( IO_WriteOnly ) ) {
+        QTextStream t( &file );
+        t << a << " " << b << " " << c << " ";
+        t << d << " " << e << " " << f << " " << s;
+       file.flush(); closeTs();
+       openTs();
+    } else
+#endif
+    {
+        qDebug( "Could not save calibration: %s", calFile.latin1() );
+    }
+}
+
+void QTSLibHandler::readMouseData()
+{
+#ifdef QWS_TSLIB
+    if(!qt_screen)
+        return;
+
+    /*
+     * After clear Calibration
+     * we're in raw mode and do some easy median
+     * search.
+     */
+    if (raw )
+        return interpolateSample();
+
+    static struct ts_sample sample;
+    static int ret;
+
+    /*
+     * Ok. We need to see if we can read more than one event
+     * We do this not to lose an update.
+     */
+    while ( true ) {
+        if ((ret = ts_read(ts, &sample, 1)) != 1 )
+            return;
+
+
+        QPoint pos( sample.x, sample.y );
+        emit mouseChanged( pos, sample.pressure != 0 ? 1 : 0 );
+    }
+#endif
+}
+
+
+/*
+ * Lets take all down events and then sort them
+ * and take the event in the middle.
+ *
+ * inspired by testutils.c
+ */
+void QTSLibHandler::interpolateSample() {
+    static struct ts_sample samples[25];
+    int index = 0;
+    int ret;
+
+    do {
+        /* fill only the last sample again */
+        if ( index >= 25 )
+            index = 24;
+
+        /* we're opened non-blocking */
+        if((ret= ts_read_raw(ts, &samples[index], 1 ) ) !=  1 ) {
+            /* no event yet, so try again */
+            if (ret==-1 ) {
+                index--;
+                continue;
+            }
+        }
+    }while (samples[index++].pressure != 0);
+
+    /*
+     * index is maximal 25  and we at least one sample
+     */
+    if( index >= 25 )
+        index = 24;
+    int x, y;
+
+    /*
+     * now let us use the median value
+     * even index does not have an item in the middle
+     * so let us take the average of n/2 and (n/2)-1 as the middle
+     */
+    int m = index/2;
+    ::qsort(samples, index, sizeof(ts_sample), QTSLibHandler::sortByX);
+    x = (index % 2 ) ? samples[m].x :
+        ( samples[m-1].x + samples[m].x )/2;
+
+    ::qsort(samples, index, sizeof(ts_sample), QTSLibHandler::sortByY);
+    y = (index % 2 ) ? samples[m].y :
+        ( samples[m-1].y + samples[m].y )/2;
+
+    emit mouseChanged( QPoint(x, y), 1 );
+    emit mouseChanged( QPoint(0, 0), 0 );
+}
+
+int QTSLibHandler::sortByX( const void* one, const void* two) {
+    return reinterpret_cast<const struct ts_sample*>(one)->x -
+           reinterpret_cast<const struct ts_sample*>(two)->x;
+}
+
+int QTSLibHandler::sortByY( const void* one, const void* two) {
+    return reinterpret_cast<const struct ts_sample*>(one)->y -
+           reinterpret_cast<const struct ts_sample*>(two)->y;
+}
+
+
 /*
  * Handler for /dev/tpanel Linux kernel driver
  */
@@ -1731,7 +1958,9 @@
 
        case TPanel:
 #if defined(QWS_CUSTOMTOUCHPANEL)
-           handler = new QCustomTPanelHandlerPrivate(mouseProtocol,mouseDev);
+            handler = new QCustomTPanelHandlerPrivate(mouseProtocol,mouseDev);
+#elif defined(QWS_TSLIB)
+            handler = new QTSLibHandler();
 #elif defined(QT_QWS_YOPY)
            handler = new QYopyTPanelHandlerPrivate(mouseProtocol,mouseDev);
 #elif defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) || defined(QT_QWS_K2)
--- qt-2.3.9-snapshot-20041211/configure~tslib.patch
+++ qt-2.3.9-snapshot-20041211/configure
@@ -406,6 +406,9 @@
    -kde)
        KDE=yes
        ;;
+   -tslib)
+       TSLIB=YES
+       ;;
    -no-g++-exceptions)
        GPLUSPLUS_EXCEPTIONS=no
        ;;
@@ -1290,6 +1293,9 @@
                         set to point to a KDE 2 installation.
                          See http://www.kde.org
 
+    -tslib ............. Use the TSLib (touchscreen access library) mouse handler
+                         by default, instead of the normal device default.
+
     -no-g++-exceptions . Disable exceptions on platforms using the GNU C++
                         compiler by using the -fno-exceptions flag.
 
@@ -1353,6 +1359,13 @@
 [ "x$SM" = "xno" ] && QT_CXX="${QT_CXX} -DQT_NO_SM_SUPPORT"
 [ "x$XFT" = "xyes" ] && QT_CXX="${QT_CXX} -DQT_XFT"
 [ "x$XFT" = "xno" ] && QT_CXX="${QT_CXX} -DQT_NO_XKB"
+
+if [ "x$TSLIB" = "xyes" ]
+then
+   QT_CXX="${QT_CXX} -DQWS_TSLIB"
+   QT_LIBS="${QT_LIBS} -lts"
+fi
+
 if [ "x$THREAD" = "xyes" ]
 then
    cat >src-mt.mk <<EOF