Modified changes-5.0.0 to reflect change to QTouchEvent API.
[profile/ivi/qtbase.git] / dist / changes-5.0.0
1 Some of the changes listed in this file include issue tracking numbers
2 corresponding to tasks in the Qt Bug Tracker:
3
4   http://bugreports.qt.nokia.com/
5
6 Each of these identifiers can be entered in the bug tracker to obtain more
7 information about a particular change.
8
9
10 ****************************************************************************
11 *                       Source incompatible changes                        *
12 ****************************************************************************
13
14
15 - QSslCertificate::subjectInfo() and QSslCertificate::issuerInfo() now
16   return a QStringList instead of a QString
17
18 - QSslCertificate::isValid() has been deprecated. Originally it only checked
19   the certificate dates, but later checking for blacklisting was added. Now
20   there's a more specific QSslCertificate::isBlacklisted() method.
21
22 - Unite clipping support has been removed from QPainter. The alternative is
23   to unite QRegion's and using the result on QPainter.
24
25 - QLibrary::resolve() now returns a function pointer instead of a void
26   pointer.
27
28 - QSslCertificate::alternateSubjectNames() is deprecated (but can be enabled
29   via QT_DISABLE_DEPRECATED_BEFORE), use
30   QSslCertificate::subjectAlternativeNames() instead.
31
32 - QLibraryInfo::buildKey() has been removed. Likewise, the QT_BUILD_KEY
33   preprocessor #define has also been removed. The build-key is obsolete
34   and is no longer necessary.
35
36 - QCoreApplication::translate() will no longer return the source text when
37   the translation is empty. Use lrelease -removeidentical for optimization.
38
39 - Qt::escape() is deprecated (but can be enabled via
40   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
41
42 - QMetaType::construct() has been renamed to QMetaType::create().
43
44 - QTestLib:
45   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
46     These macros formerly lived in tests/shared/util.h but are now provided
47     by including the <QtTest/QtTest> header. In addition,
48     QTRY_VERIFY_WITH_TIMEOUT and QTRY_COMPARE_WITH_TIMEOUT are provided,
49     allowing for specifying custom timeout values.
50   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
51     known at compile-time to be inapplicable for a particular build it should
52     be omitted via .pro file logic, or the test should call QSKIP in the
53     initTestCase() method to skip the entire test and report a meaningful
54     explanation in the test log.
55   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
56     and misled some users to believe that they could make test functions depend
57     on each other or impose an execution order on test functions.
58   * The QTest::qt_snprintf function has been removed from the API.  This was an
59     internal testlib function that was exposed in the public API due to its use
60     in a public macro.  Any calls to this function should be replaced by a call
61     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
62   * The QTest::pixmapsAreEqual() function has been removed from the API.
63     Comparison of QPixmap objects should be done using QCOMPARE, which provides
64     more informative output in the event of a failure.
65   * The QSKIP macro no longer has the "mode" parameter, which caused problems
66     for calculating test metrics, as the SkipAll mode hid information about
67     what test data was skipped.  Calling QSKIP in a test function now behaves
68     like SkipSingle -- skipping a non-data-driven test function or skipping
69     only the current data row of a data-driven test function.  Every skipped
70     data row is now reported in the test log.
71
72 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
73
74 - QAccessible:
75   * Internal QAccessible::State enum value HasInvokeExtension removed
76 - QAccessibleInterface:
77   * The "child" integer parameters have been removed. This moves the api
78     to be closer to IAccessible2.
79     This means several functions lose their integer parameter:
80     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
81     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
82     role(int child) -> role(), state(int child) -> state()
83     relationTo(int child, const QAccessibleInterface *other, int otherChild) ->
84       relationTo(const QAccessibleInterface *other)
85   * Accessible-Action related functions have been removed. QAccessibleInterface
86     subclasses are expected to implement the QAccessibleActionInterface instead.
87     These functions have been removed:
88     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
89     QAccessibleInterface::doAction
90 - QAccessibleEvent also loses the child parameter.
91     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
92     QAccessibleEvent::child() removed.
93 - QAccessibleActionInterface:
94   * Refactored to be based on action names. All functions have been changed from using
95     int parameters to strings.
96
97 - QSound has been moved from QtGui to QtMultimedia
98
99 - QTouchEvent:
100
101   * The DeviceType enum and deviceType() have been deprecated due to
102     the introduction of QTouchDevice.
103
104   * The signature of the constructor has changed. It now takes a
105     QTouchDevice pointer instead of just a DeviceType value.
106
107   * TouchPointState no longer includes TouchPointStateMask and
108     TouchPointPrimary. QTouchEvent::TouchPoint::isPrimary() has
109     been removed.
110
111   * QWidget *widget() has been removed and is replaced by QObject
112     *target() in order to avoid QWidget dependencies.
113
114 - QWindowSystemInterface:
115
116   * The signature of all handleTouchEvent() variants have changed,
117     taking a QTouchDevice* instead of just a DeviceType value.
118     Platform or generic plug-ins have to create and register at least
119     one QTouchDevice before sending the first touch event.
120
121   * The event type parameter is removed from handleTouchEvent().
122
123 - The previously exported function qt_translateRawTouchEvent() has been removed.
124   Use QWindowSystemInterface::handleTouchEvent() instead.
125
126 - QAbstractEventDispatcher
127
128   * The signature for the pure-virtual registerTimer() has changed. Subclasses
129   of QAbstractEventDispatcher will need to be updated to reimplement the new
130   pure-virtual 'virtual void registerTimer(int timerId, int interval,
131   Qt::TimerType timerType, QObject *object) = 0;'
132
133   * QAbstractEventDispatcher::TimerInfo is no longer a QPair<int, int>. It is
134   now a struct with 3 members: struct TimerInfo { int timerId; int interval;
135   Qt::TimerType timerType; }; Reimplementations of
136   QAbstractEventDispatcher::registeredTimers() will need to be updated to pass
137   3 arguments to the TimerInfo constructor (instead of 2).
138
139 - QUuid
140
141   * Removed implicit conversion operator QUuid::operator QString(), instead
142   QUuid::toString() function should be used.
143
144 - The QHttp, QHttpHeader, QHttpResponseHeader and QHttpRequestHeader classes have
145   been removed, QNetworkAccessManager should be used instead.
146
147 - The QFtp class is no longer exported, QNetworkAccessManager should be used
148   instead.
149
150 - QProcess
151
152   * On Windows, QProcess::ForwardedChannels will not forward the output of GUI
153     applications anymore, if they do not create a console.
154
155 - QAbstractSocket's connectToHost() and disconnectFromHost() are now virtual and
156   connectToHostImplementation() and disconnectFromHostImplementation() don't exist.
157
158
159 ****************************************************************************
160 *                           General                                        *
161 ****************************************************************************
162
163 General Improvements
164 --------------------
165
166 - The directory structure of the qtbase unit-tests has been reworked to
167   more closely match the directory structure of the code under test.
168   Integration tests have been moved to tests/auto/integrationtests.
169
170 Third party components
171 ----------------------
172
173 -
174
175
176 ****************************************************************************
177 *                          Library                                         *
178 ****************************************************************************
179
180 QtCore
181 ------
182 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
183   value is returned for an unassigned codepoints now.
184
185 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
186   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
187   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
188   rowsMoved signals.
189
190 * The default value of the property QSortFilterProxyModel::dynamicSortFilter was
191   changed from false to true.
192
193 * The signature of the virtual QAbstractItemView::dataChanged method has changed to
194   include the roles which have changed. The signature is consistent with the dataChanged
195   signal in the model.
196
197 * QFileSystemWatcher is now able to return failure in case of errors whilst
198   altering the watchlist in both the singular and QStringList overloads of
199   addPath and removePath.
200
201 QtGui
202 -----
203 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
204   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
205   Table and cell interfaces have been added to qaccessible2.h
206
207 * Touch events and points have been extended to hold additional
208   information like capability flags, point-specific flags, velocity,
209   and raw positions.
210
211 QtWidgets
212 ---------
213 * QWidget::setInputContext() and QApplication::setInputContext() are removed.
214   Input contexts are now platform specific.
215
216 QtNetwork
217 ---------
218 * QHostAddress::isLoopback() API added. Returns true if the address is
219   one of the IP loopback addresses.
220
221 * QSslCertificate::serialNumber() now always returns the serial number in
222   hexadecimal format.
223
224 * The openssl network backend now reads the ssl configuration file allowing
225   the use of openssl engines.
226
227
228 QtOpenGL
229 --------
230
231 QtScript
232 --------
233
234
235 QTestLib
236 --------
237 * [QTBUG-20615] Autotests can now log test output to multiple destinations
238   and log formats simultaneously.
239
240
241 ****************************************************************************
242 *                          Database Drivers                                *
243 ****************************************************************************
244
245
246 ****************************************************************************
247 *                      Platform Specific Changes                           *
248 ****************************************************************************
249
250 Qt for Linux/X11
251 ----------------
252
253
254 Qt for Windows
255 --------------
256 * Accessibility framework uses IAccessible2
257
258
259 Qt for Mac OS X
260 ---------------
261
262
263 Qt for Embedded Linux
264 ---------------------
265
266
267 Qt for Windows CE
268 -----------------
269
270
271 ****************************************************************************
272 *                      Compiler Specific Changes                           *
273 ****************************************************************************
274
275
276 ****************************************************************************
277 *                          Tools                                           *
278 ****************************************************************************
279
280 - Build System
281
282   * Remove qttest_p4.prf file. From now on we should explicitly enable the
283     things from it which we want. Autotest .pro files should stop using
284     'load(qttest_p4)' and start using 'CONFIG+=testcase' instead.
285
286 - Assistant
287
288 - Designer
289
290 - Linguist
291
292 - rcc
293
294
295 - moc
296
297 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
298   file at the beginning of the generated file.
299
300
301 - uic
302
303
304 - uic3
305
306
307 - qmake
308
309 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
310   to the moc.
311
312
313 - configure
314
315
316 - qtconfig
317
318
319 ****************************************************************************
320 *                          Plugins                                         *
321 ****************************************************************************
322
323
324 ****************************************************************************
325 *                   Important Behavior Changes                             *
326 ****************************************************************************
327
328 - QPointer
329
330    * QPointer itself is now deprecated, and the implementation of QPointer
331      has been changed to use QWeakPointer. The old guard mechanism has been
332      removed. This causes two slight changes in behavior when using
333      QPointer:
334
335      * When using QPointer on a QWidget (or a subclass of QWidget), previously
336      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
337      is cleared by the QObject destructor (since this is when QWeakPointers are
338      cleared). Any QPointers tracking a widget will NOT be cleared before the
339      QWidget destructor destroys the children for the widget being tracked.
340
341      * When constructing a QSharedPointer to take ownership of an object after a
342      QPointer is already tracking the object. Previously, the shared pointer
343      construction would not be affected by the QPointer, but now that QPointer
344      is implemented using QWeakPoiner, constructing the QSharedPointer will
345      cause an abort().