Retire QTest::pixmapsAreEqual().
[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.
48   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
49     known at compile-time to be inapplicable for a particular build it should
50     be omitted via .pro file logic, or the test should call QSKIP in the
51     initTestCase() method to skip the entire test and report a meaningful
52     explanation in the test log.
53   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
54     and misled some users to believe that they could make test functions depend
55     on each other or impose an execution order on test functions.
56   * The QTest::qt_snprintf function has been removed from the API.  This was an
57     internal testlib function that was exposed in the public API due to its use
58     in a public macro.  Any calls to this function should be replaced by a call
59     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
60   * The QTest::pixmapsAreEqual() function has been removed from the API.
61     Comparison of QPixmap objects should be done using QCOMPARE, which provides
62     more informative output in the event of a failure.
63   * The QSKIP macro no longer has the "mode" parameter, which caused problems
64     for calculating test metrics, as the SkipAll mode hid information about
65     what test data was skipped.  Calling QSKIP in a test function now behaves
66     like SkipSingle -- skipping a non-data-driven test function or skipping
67     only the current data row of a data-driven test function.  Every skipped
68     data row is now reported in the test log.
69
70 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
71
72 - QAccessible:
73   * Internal QAccessible::State enum value HasInvokeExtension removed
74 - QAccessibleInterface:
75   * The "child" integer parameters have been removed. This moves the api
76     to be closer to IAccessible2.
77     This means several functions lose their integer parameter:
78     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
79     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
80     role(int child) -> role(), state(int child) -> state()
81     relationTo(int child, const QAccessibleInterface *other, int otherChild) ->
82       relationTo(const QAccessibleInterface *other)
83   * Accessible-Action related functions have been removed. QAccessibleInterface
84     subclasses are expected to implement the QAccessibleActionInterface instead.
85     These functions have been removed:
86     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
87     QAccessibleInterface::doAction
88 - QAccessibleEvent also loses the child parameter.
89     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
90     QAccessibleEvent::child() removed.
91 - QAccessibleActionInterface:
92   * Refactored to be based on action names. All functions have been changed from using
93     int parameters to strings.
94
95 - QSound has been moved from QtGui to QtMultimedia
96
97 - QTouchEvent:
98
99   * The DeviceType enum and deviceType() have been deprecated due to
100     the introduction of QTouchDevice.
101
102   * The signature of the constructor has changed. It now takes a
103     QTouchDevice pointer instead of just a DeviceType value.
104
105   * TouchPointState no longer includes TouchPointStateMask and
106     TouchPointPrimary. The primary flag is now stored together with
107     other touch point flags and is accessible through
108     TouchPoint::isPrimary() or TouchPoint::flags(). As a result the
109     internally used state mask is no longer necessary.
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
127 ****************************************************************************
128 *                           General                                        *
129 ****************************************************************************
130
131 General Improvements
132 --------------------
133
134 - The directory structure of the qtbase unit-tests has been reworked to
135   more closely match the directory structure of the code under test.
136   Integration tests have been moved to tests/auto/integrationtests.
137
138 Third party components
139 ----------------------
140
141 -
142
143
144 ****************************************************************************
145 *                          Library                                         *
146 ****************************************************************************
147
148 QtCore
149 ------
150 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
151   value is returned for an unassigned codepoints now.
152
153 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
154   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
155   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
156   rowsMoved signals.
157
158 QtGui
159 -----
160 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
161   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
162   Table and cell interfaces have been added to qaccessible2.h
163
164 * Touch events and points have been extended to hold additional
165   information like capability flags, point-specific flags, velocity,
166   and raw positions.
167
168 QtWidgets
169 ---------
170 * QWidget::setInputContext() is removed. Input contexts are now platform
171   specific.
172
173 QtNetwork
174 ---------
175 * QHostAddress::isLoopback() API added. Returns true if the address is
176   one of the IP loopback addresses.
177
178 * QSslCertificate::serialNumber() now always returns the serial number in
179   hexadecimal format.
180
181
182 QtOpenGL
183 --------
184
185 QtScript
186 --------
187
188
189 QTestLib
190 --------
191 * [QTBUG-20615] Autotests can now log test output to multiple destinations
192   and log formats simultaneously.
193
194
195 ****************************************************************************
196 *                          Database Drivers                                *
197 ****************************************************************************
198
199
200 ****************************************************************************
201 *                      Platform Specific Changes                           *
202 ****************************************************************************
203
204 Qt for Linux/X11
205 ----------------
206
207
208 Qt for Windows
209 --------------
210 * Accessibility framework uses IAccessible2
211
212
213 Qt for Mac OS X
214 ---------------
215
216
217 Qt for Embedded Linux
218 ---------------------
219
220
221 Qt for Windows CE
222 -----------------
223
224
225 ****************************************************************************
226 *                      Compiler Specific Changes                           *
227 ****************************************************************************
228
229
230 ****************************************************************************
231 *                          Tools                                           *
232 ****************************************************************************
233
234 - Build System
235
236 - Assistant
237
238 - Designer
239
240 - Linguist
241
242 - rcc
243
244
245 - moc
246
247 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
248   file at the beginning of the generated file.
249
250
251 - uic
252
253
254 - uic3
255
256
257 - qmake
258
259 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
260   to the moc.
261
262
263 - configure
264
265
266 - qtconfig
267
268
269 ****************************************************************************
270 *                          Plugins                                         *
271 ****************************************************************************
272
273
274 ****************************************************************************
275 *                   Important Behavior Changes                             *
276 ****************************************************************************
277
278 - QPointer
279
280    * QPointer itself is now deprecated, and the implementation of QPointer
281      has been changed to use QWeakPointer. The old guard mechanism has been
282      removed. This causes two slight changes in behavior when using
283      QPointer:
284
285      * When using QPointer on a QWidget (or a subclass of QWidget), previously
286      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
287      is cleared by the QObject destructor (since this is when QWeakPointers are
288      cleared). Any QPointers tracking a widget will NOT be cleared before the
289      QWidget destructor destroys the children for the widget being tracked.
290
291      * When constructing a QSharedPointer to take ownership of an object after a
292      QPointer is already tracking the object. Previously, the shared pointer
293      construction would not be affected by the QPointer, but now that QPointer
294      is implemented using QWeakPoiner, constructing the QSharedPointer will
295      cause an abort().