QtTestLib: Update porting guide

Few breaking changes. Some things moved header, but as they didn't
change namespace, naming or signature, and the old headers now include
the 'new' headers, it is SC anyway.

Change-Id: I6b0556049f6d9203dcf7420317a14992fbe85a80
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
This commit is contained in:
Mårten Nordheim 2020-11-02 11:56:27 +01:00
parent df57e1ac65
commit 1776c0b40d

View File

@ -41,6 +41,21 @@
In this topic we summarize those changes in Qt Test, and provide
guidance to handle them.
\section1 ADD STUFF HERE
\section1 Touch-related functionality
\section2 QTouchEventSequence
QTest::QTouchEventSequence functions taking a QWidget parameter has been moved
to a new class: QTest::QTouchEventWidgetSequence. The list of affected
functions is as follows:
\list
\li QTest::QTouchEventSequence::press(int touchId, const QPoint &pt, QWidget *widget)
\li QTest::QTouchEventSequence::move(int touchId, const QPoint &pt, QWidget *widget)
\li QTest::QTouchEventSequence::release(int touchId, const QPoint &pt, QWidget *widget)
\endlist
On that same note, the overload of QTest::touchEvent() taking a QWidget
parameter has been changed to return a QTouchEventWidgetSequence object.
*/