Calculate an area in the touchscreen qpa plugin.

Instead of ignoring the touch major/minor and returning a rectangle
with width and height of 1, the size of the area is now calculated
based on the major. This is incomplete and far from perfect but at
least it makes visualizers, like the fingerpaint example app, work out
of the box.

Change-Id: I3bb70b4d7247f289e5cae4e7de2460ecf2c9d009
Reviewed-on: http://codereview.qt-project.org/6566
Reviewed-by: Paul Olav Tvete <paul.tvete@nokia.com>
This commit is contained in:
Laszlo Agocs 2011-10-13 08:55:56 +03:00 committed by Qt by Nokia
parent 1582407fc7
commit 472028c1d4
2 changed files with 6 additions and 3 deletions

View File

@ -102,7 +102,8 @@ void QTouchEventSenderQPA::touch_point(QEvent::Type state,
// Generate a screen position that is always inside the active window or the default screen.
const int wx = winRect.left() + int(nx * winRect.width());
const int wy = winRect.top() + int(ny * winRect.height());
tp.area.moveTopLeft(QPoint(wx, wy));
const qreal sizeRatio = (winRect.width() + winRect.height()) / qreal(hw_w + hw_h);
tp.area = QRect(wx, wy, tp.area.width() * sizeRatio, tp.area.height() * sizeRatio);
#ifdef POINT_DEBUG
qDebug() << " " << i << tp.area << tp.state << tp.id << tp.isPrimary << tp.pressure;

View File

@ -72,9 +72,10 @@ public:
int trackingId;
int x;
int y;
int maj;
Qt::TouchPointState state;
bool primary;
Slot() : trackingId(0), x(0), y(0), state(Qt::TouchPointPressed), primary(false) { }
Slot() : trackingId(0), x(0), y(0), maj(1), state(Qt::TouchPointPressed), primary(false) { }
};
QMap<int, Slot> m_slots;
QMap<int, QPoint> m_lastReport;
@ -254,6 +255,7 @@ void QTouchScreenData::processInputEvent(input_event *data)
m_slots[m_currentSlot].primary = m_slots.count() == 1;
}
} else if (data->code == ABS_MT_TOUCH_MAJOR) {
m_slots[m_currentSlot].maj = data->value;
if (data->value == 0)
m_slots[m_currentSlot].state = Qt::TouchPointReleased;
}
@ -273,7 +275,7 @@ void QTouchScreenData::processInputEvent(input_event *data)
tp.id = slot.trackingId;
tp.isPrimary = slot.primary;
tp.pressure = slot.state == Qt::TouchPointReleased ? 0 : 1;
tp.area = QRectF(slot.x, slot.y, 1, 1);
tp.area = QRectF(slot.x, slot.y, slot.maj, slot.maj);
tp.state = slot.state;
if (slot.state == Qt::TouchPointMoved && m_lastReport.contains(slot.trackingId)) {
QPoint lastPos = m_lastReport.value(slot.trackingId);