summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--qt/qte234-for-opie091-simpad.patch77
1 files changed, 71 insertions, 6 deletions
diff --git a/qt/qte234-for-opie091-simpad.patch b/qt/qte234-for-opie091-simpad.patch
index 5b892d4..74a8d83 100644
--- a/qt/qte234-for-opie091-simpad.patch
+++ b/qt/qte234-for-opie091-simpad.patch
@@ -1,26 +1,26 @@
1 --- src/kernel/qkeyboard_qws.cpp.origFri May 30 16:05:20 2003 1 --- qt-2.3.5/src/kernel/qkeyboard_qws.cpp~qte234-for-opie091-simpad2003-06-13 16:59:33.000000000 +0200
2 +++ src/kernel/qkeyboard_qws.cppFri May 30 16:03:41 2003 2 +++ qt-2.3.5/src/kernel/qkeyboard_qws.cpp2003-06-13 16:59:33.000000000 +0200
3@@ -37,6 +37,7 @@ 3@@ -37,6 +37,7 @@
4 #include <qapplication.h> 4 #include <qapplication.h>
5 #include <qsocketnotifier.h> 5 #include <qsocketnotifier.h>
6 #include <qnamespace.h> 6 #include <qnamespace.h>
7+#include <qdatetime.h> 7+#include <qdatetime.h>
8 #include <qtimer.h> 8 #include <qtimer.h>
9 9
10 #include <stdlib.h> 10 #include <stdlib.h>
11@@ -131,6 +132,59 @@ 11@@ -131,6 +132,59 @@
12 12
13 #endif // QNX6 13 #endif // QNX6
14 14
15+/* 15+/*
16+ * SIMpad switches handler 16+ * SIMpad switches handler
17+ * (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> 17+ * (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
18+ */ 18+ */
19+ 19+
20+//TODO: guard this against inclusion with #ifdef QT_QWS_SIMPAD 20+//TODO: guard this against inclusion with #ifdef QT_QWS_SIMPAD
21+ 21+
22+#include <linux/switches.h> 22+#include <linux/switches.h>
23+#define SIMPAD_SWITCHES_DEVICE "/dev/misc/switches" 23+#define SIMPAD_SWITCHES_DEVICE "/dev/misc/switches"
24+ 24+
25+// switches from left top to right down over the SIMpad surface 25+// switches from left top to right down over the SIMpad surface
26+ 26+
@@ -47,87 +47,87 @@
47+ void autoRepeat(); 47+ void autoRepeat();
48+ 48+
49+ private: 49+ private:
50+ switches_mask_t switches; 50+ switches_mask_t switches;
51+ 51+
52+ int fd; 52+ int fd;
53+ int repeatdelay; 53+ int repeatdelay;
54+ int repeatperiod; 54+ int repeatperiod;
55+ 55+
56+ int lastCode; // last native code 56+ int lastCode; // last native code
57+ int lastPress; // last press/release state 57+ int lastPress; // last press/release state
58+ 58+
59+ int k; // last emitted Qt key code 59+ int k; // last emitted Qt key code
60+ int shiftKeyPressed; // true if one of the SHIFT keys has been pressed and not yet released 60+ int shiftKeyPressed; // true if one of the SHIFT keys has been pressed and not yet released
61+ bool shiftUsed; // true if SHIFT has been used 61+ bool shiftUsed; // true if SHIFT has been used
62+ 62+
63+ QTime eventTimer; // tracks time between raw events 63+ QTime eventTimer; // tracks time between raw events
64+ QTimer* repeater; 64+ QTimer* repeater;
65+ QSocketNotifier *notifier; 65+ QSocketNotifier *notifier;
66+}; 66+};
67+ 67+
68 #ifdef QT_QWS_SL5XXX 68 #ifdef QT_QWS_SL5XXX
69 static const QWSServer::KeyMap keyM[] = { 69 static const QWSServer::KeyMap keyM[] = {
70 { Qt::Key_unknown,0xffff , 0xffff , 0xffff }, // 00 70 { Qt::Key_unknown,0xffff , 0xffff , 0xffff }, // 00
71@@ -1440,7 +1494,11 @@ 71@@ -1444,7 +1498,11 @@
72 } else { 72 } else {
73 type = spec; 73 type = spec;
74 } 74 }
75- 75-
76+ if ( type == "SIMpad" ) 76+ if ( type == "SIMpad" )
77+ { 77+ {
78+ qDebug( "QWSKeyboardHandler: using SIMpad keyboard handler..." ); 78+ qDebug( "QWSKeyboardHandler: using SIMpad keyboard handler..." );
79+ handler = new QWSsimpadButtonsHandler(); 79+ handler = new QWSsimpadButtonsHandler();
80+ } 80+ }
81 if ( type == "Buttons" ) { 81 if ( type == "Buttons" ) {
82 #if defined(QT_QWS_YOPY) 82 #if defined(QT_QWS_YOPY)
83 handler = new QWSyopyButtonsHandler(); 83 handler = new QWSyopyButtonsHandler();
84@@ -1469,6 +1527,217 @@ 84@@ -1473,6 +1531,217 @@
85 return keyM; 85 return keyM;
86 } 86 }
87 87
88-#endif // QT_NO_QWS_KEYBOARD 88-#endif // QT_NO_QWS_KEYBOARD
89 89
90+/* 90+/*
91+ * SIMpad switches handler 91+ * SIMpad switches handler
92+ * (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> 92+ * (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
93+ */ 93+ */
94+ 94
95+ 95+
96+QWSsimpadButtonsHandler::QWSsimpadButtonsHandler() 96+QWSsimpadButtonsHandler::QWSsimpadButtonsHandler()
97+ :QWSKeyboardHandler(), fd( -1 ), 97+ :QWSKeyboardHandler(), fd( -1 ),
98+ repeatdelay( 700 ), repeatperiod( 80 ), 98+ repeatdelay( 700 ), repeatperiod( 80 ),
99+ lastCode( 0 ), lastPress( 0 ), 99+ lastCode( 0 ), lastPress( 0 ),
100+ k( -1 ), shiftKeyPressed( 0 ), shiftUsed( false ) 100+ k( -1 ), shiftKeyPressed( 0 ), shiftUsed( false )
101+{ 101+{
102+ qDebug( "SimpadButtonsHandler() - V4.1" ); 102+ qDebug( "SimpadButtonsHandler() - V4.1" );
103+ fd = ::open( SIMPAD_SWITCHES_DEVICE, O_RDWR | O_NDELAY, 0 ); 103+ fd = ::open( SIMPAD_SWITCHES_DEVICE, O_RDWR | O_NDELAY, 0 );
104+ if ( fd < 0 ) 104+ if ( fd < 0 )
105+ { 105+ {
106+ qWarning( "SimpadButtonsHandler(): can't open %s", SIMPAD_SWITCHES_DEVICE ); 106+ qWarning( "SimpadButtonsHandler(): can't open %s", SIMPAD_SWITCHES_DEVICE );
107+ return; 107+ return;
108+ } 108+ }
109 109+
110+ notifier = new QSocketNotifier( fd, QSocketNotifier::Read, this ); 110+ notifier = new QSocketNotifier( fd, QSocketNotifier::Read, this );
111+ connect( notifier, SIGNAL( activated(int) ),this, SLOT( readSwitchesData() ) ); 111+ connect( notifier, SIGNAL( activated(int) ),this, SLOT( readSwitchesData() ) );
112+ 112+
113+ repeater = new QTimer(this); 113+ repeater = new QTimer(this);
114+ connect(repeater, SIGNAL(timeout()), this, SLOT(autoRepeat())); 114+ connect(repeater, SIGNAL(timeout()), this, SLOT(autoRepeat()));
115+ 115+
116+} 116+}
117+ 117+
118+ 118+
119+QWSsimpadButtonsHandler::~QWSsimpadButtonsHandler() 119+QWSsimpadButtonsHandler::~QWSsimpadButtonsHandler()
120+{ 120+{
121+ qDebug( "~SimpadButtonsHandler()" ); 121+ qDebug( "~SimpadButtonsHandler()" );
122+ if ( fd > 0 ) 122+ if ( fd > 0 )
123+ { 123+ {
124+ ::close( fd ); 124+ ::close( fd );
125+ fd = -1; 125+ fd = -1;
126+ } 126+ }
127+} 127+}
128+ 128+
129+ 129+
130+void QWSsimpadButtonsHandler::readSwitchesData() 130+void QWSsimpadButtonsHandler::readSwitchesData()
131+{ 131+{
132+ qDebug( "SimpadButtonsHandler() - detected switches action" ); 132+ qDebug( "SimpadButtonsHandler() - detected switches action" );
133+ 133+
@@ -279,24 +279,89 @@
279+ k = xform_dirkey( k ); 279+ k = xform_dirkey( k );
280+ qDebug( "SimpadButtonsHandler() - Old Key: %d - New Key %d", oldK, k ); 280+ qDebug( "SimpadButtonsHandler() - Old Key: %d - New Key %d", oldK, k );
281+ } 281+ }
282+ 282+
283+ if ( repeatable && press ) 283+ if ( repeatable && press )
284+ repeater->start( repeatdelay, true ); 284+ repeater->start( repeatdelay, true );
285+ else 285+ else
286+ repeater->stop(); 286+ repeater->stop();
287+ 287+
288+ qwsServer->processKeyEvent( 0, k, 0, press, false ); 288+ qwsServer->processKeyEvent( 0, k, 0, press, false );
289+} 289+}
290+ 290+
291+ 291+
292+void QWSsimpadButtonsHandler::autoRepeat() 292+void QWSsimpadButtonsHandler::autoRepeat()
293+{ 293+{
294+ qDebug( "Emitting key = %d (released)", k ); 294+ qDebug( "Emitting key = %d (released)", k );
295+ processKeyEvent( 0, k, 0, false, true ); 295+ processKeyEvent( 0, k, 0, false, true );
296+ qDebug( "Emitting key = %d (pressed)", k ); 296+ qDebug( "Emitting key = %d (pressed)", k );
297+ processKeyEvent( 0, k, 0, true, true ); 297+ processKeyEvent( 0, k, 0, true, true );
298+ repeater->start(repeatperiod); 298+ repeater->start(repeatperiod);
299+} 299+}
300+ 300+
301+ 301+
302+#endif // QT_NO_QWS_KEYBOARD 302+#endif // QT_NO_QWS_KEYBOARD
303 --- qt-2.3.5/src/kernel/qwsmouse_qws.cpp~qte234-for-opie091-simpad2003-04-02 03:26:52.000000000 +0200
304 +++ qt-2.3.5/src/kernel/qwsmouse_qws.cpp2003-06-13 16:59:33.000000000 +0200
305@@ -47,6 +47,7 @@
306 #include <stdlib.h>
307 #include <stdio.h>
308 #include <sys/ioctl.h>
309+#include <sys/time.h>
310 #include <sys/types.h>
311 #include <sys/stat.h>
312 #include <fcntl.h>
313@@ -67,6 +68,7 @@
314 unsigned short x;
315 unsigned short y;
316 unsigned short pad;
317+ struct timeval stamp;
318 } TS_EVENT;
319 #elif defined(QT_QWS_SL5XXX)
320 #define QT_QWS_SL5XXX_RAW
321@@ -1238,29 +1240,11 @@
322 : samples(QT_QWS_TP_SAMPLE_SIZE), currSample(0), lastSample(0),
323 numSamples(0), skipCount(0)
324 {
325-#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX)
326-#if defined(QT_QWS_IPAQ)
327-# ifdef QT_QWS_IPAQ_RAW
328- if ((mouseFD = open( "/dev/h3600_tsraw", O_RDONLY | O_NDELAY)) < 0) {
329-# else
330- if ((mouseFD = open( "/dev/h3600_ts", O_RDONLY | O_NDELAY)) < 0) {
331-# endif
332- qWarning( "Cannot open /dev/h3600_ts (%s)", strerror(errno));
333+#ifdef QT_QWS_SIMPAD
334+ if ((mouseFD = open( "/dev/touchscreen/ucb1x00", O_RDONLY | O_NONBLOCK )) < 0) {
335+ qWarning( "Cannot open /dev/touchscreen/ucb1x00 (%s)", strerror(errno));
336 return;
337 }
338-#elif defined(QT_QWS_SL5XXX)
339-//# ifdef QT_QWS_SL5XXX_TSRAW
340-# if 0
341- if ((mouseFD = open( "/dev/tsraw", O_RDONLY | O_NDELAY)) < 0) {
342- qWarning( "Cannot open /dev/tsraw (%s)", strerror(errno));
343- return;
344- }
345-# else
346- if ((mouseFD = open( "/dev/ts", O_RDONLY | O_NDELAY)) < 0) {
347- qWarning( "Cannot open /dev/ts (%s)", strerror(errno));
348- return;
349- }
350-# endif
351 #endif
352
353 QSocketNotifier *mouseNotifier;
354@@ -1269,12 +1253,11 @@
355 connect(mouseNotifier, SIGNAL(activated(int)),this, SLOT(readMouseData()));
356 waspressed=FALSE;
357 mouseIdx = 0;
358-#endif
359 }
360
361 QTPanelHandlerPrivate::~QTPanelHandlerPrivate()
362 {
363-#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX)
364+#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) || defined(QT_QWS_SIMPAD)
365 if (mouseFD >= 0)
366 close(mouseFD);
367 #endif