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