RESOLVED FIXED 32482
[Qt] Add support for keyboard modifiers to TouchEvent
https://bugs.webkit.org/show_bug.cgi?id=32482
Summary [Qt] Add support for keyboard modifiers to TouchEvent
Simon Hausmann
Reported 2009-12-13 02:34:56 PST
The iPhone's TouchEvent interface provides access to the keyboard modifiers as properties. QTouchEvent has the same properties and it should be straight-forward to map those and test the mapping. (This issue is part of http://bugreports.qt.nokia.com/browse/QTWEBKIT-20 )
Attachments
Patch (14.88 KB, patch)
2009-12-13 14:52 PST, Simon Hausmann
no flags
Patch with corrected coding style (14.86 KB, patch)
2009-12-13 14:55 PST, Simon Hausmann
no flags
Updated patch with better tests (15.26 KB, patch)
2009-12-13 23:51 PST, Simon Hausmann
no flags
Updated patch with indenting glitch in TouchEvent.idl fixed (15.22 KB, patch)
2009-12-13 23:53 PST, Simon Hausmann
no flags
Simon Hausmann
Comment 1 2009-12-13 14:52:53 PST
Simon Hausmann
Comment 2 2009-12-13 14:55:38 PST
Created attachment 44767 [details] Patch with corrected coding style
WebKit Review Bot
Comment 3 2009-12-13 14:56:54 PST
style-queue ran check-webkit-style on attachment 44767 [details] without any errors.
Holger Freyther
Comment 4 2009-12-13 19:51:07 PST
Comment on attachment 44767 [details] Patch with corrected coding style Do you plan to do dump the other modifiers in the test case too? It would be interesting to set two modifiers at the same time... mostly to test the bit setting, clearling logic in the Event Sender :) > : MouseRelatedEvent(type, true, true, view, 0, screenX, screenY, pageX, pageY, > - false, false, false, false) > + ctrlKey, altKey, shiftKey, metaKey) maybe add isSimulated as well... that is the only missing one from MouseRelatedEvent... > + bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); > > virtual bool isTo > + : m_type(TouchStart) > + , m_shiftKey(false) > + , m_ctrlKey(false) > + , m_altKey(false) > + , m_metaKey(false) > + {} and in Qt you change the order... but I don't see an issue with it. > +void EventSender::setTouchModifier(const QString &modifier, bool enable) > +{ > +#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) > + Qt::KeyboardModifier mod = Qt::NoModifier; > + if (!modifier.compare(QLatin1String("shift"), Qt::CaseInsensitive)) > + mod = Qt::ShiftModifier; > + else if (!modifier.compare(QLatin1String("alt"), Qt::CaseInsensitive)) > + mod = Qt::AltModifier; > + else if (!modifier.compare(QLatin1String("meta"), Qt::CaseInsensitive)) > + mod = Qt::MetaModifier; > + else if (!modifier.compare(QLatin1String("ctrl"), Qt::CaseInsensitive)) > + mod = Qt::ControlModifier; I'm confused about the "!". Can you explain?
Simon Hausmann
Comment 5 2009-12-13 23:42:24 PST
(In reply to comment #4) > (From update of attachment 44767 [details]) > Do you plan to do dump the other modifiers in the test case too? It would be > interesting to set two modifiers at the same time... mostly to test the bit > setting, clearling logic in the Event Sender :) Ok, will do :) > > : MouseRelatedEvent(type, true, true, view, 0, screenX, screenY, pageX, pageY, > > - false, false, false, false) > > + ctrlKey, altKey, shiftKey, metaKey) > > maybe add isSimulated as well... that is the only missing one from > MouseRelatedEvent... Hm, I could, but it would be completely unused AFAICS. > > + bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); > > > > virtual bool isTo > > + : m_type(TouchStart) > > + , m_shiftKey(false) > > + , m_ctrlKey(false) > > + , m_altKey(false) > > + , m_metaKey(false) > > + {} > > > and in Qt you change the order... but I don't see an issue with it. Hehe, copy & paste. Will fix > > +void EventSender::setTouchModifier(const QString &modifier, bool enable) > > +{ > > +#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) > > + Qt::KeyboardModifier mod = Qt::NoModifier; > > + if (!modifier.compare(QLatin1String("shift"), Qt::CaseInsensitive)) > > + mod = Qt::ShiftModifier; > > + else if (!modifier.compare(QLatin1String("alt"), Qt::CaseInsensitive)) > > + mod = Qt::AltModifier; > > + else if (!modifier.compare(QLatin1String("meta"), Qt::CaseInsensitive)) > > + mod = Qt::MetaModifier; > > + else if (!modifier.compare(QLatin1String("ctrl"), Qt::CaseInsensitive)) > > + mod = Qt::ControlModifier; > > I'm confused about the "!". Can you explain? QString::compare returns an int, similar to strcmp, which is zero when the strings are equal ;(
Simon Hausmann
Comment 6 2009-12-13 23:51:05 PST
Created attachment 44776 [details] Updated patch with better tests
Simon Hausmann
Comment 7 2009-12-13 23:53:11 PST
Created attachment 44778 [details] Updated patch with indenting glitch in TouchEvent.idl fixed
WebKit Review Bot
Comment 8 2009-12-13 23:56:16 PST
style-queue ran check-webkit-style on attachment 44778 [details] without any errors.
WebKit Commit Bot
Comment 9 2009-12-14 12:57:39 PST
Comment on attachment 44778 [details] Updated patch with indenting glitch in TouchEvent.idl fixed Clearing flags on attachment: 44778 Committed r52113: <http://trac.webkit.org/changeset/52113>
WebKit Commit Bot
Comment 10 2009-12-14 12:57:44 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.