Introduce QMetaType::UnknownType.
[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 - QString and QByteArray constructors that take a size argument will now treat
40   negative sizes to indicate nul-terminated strings (a nul-terminated array of
41   QChar, in the case of QString). In Qt 4, negative sizes were ignored and
42   result in empty QString and QByteArray, respectively. The size argument to
43   those constructors now has a default value of -1, thus replacing the separate
44   constructors that did the same.
45
46 - Qt::escape() is deprecated (but can be enabled via
47   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
48
49 - QBool is gone. QString::contains, QByteArray::contains, and QList::contains
50   used to return an internal QBool class so that the Qt3 code
51   "if (a.contains() == 2)" wouldn't compile anymore. Such code cannot exist
52   in Qt4, so these methods return a bool now. If your code used the undocumented
53   QBool, simply replace it with bool.
54
55 - QMetaType:
56   * QMetaType::construct() has been renamed to QMetaType::create().
57   * QMetaType::unregisterType() has been removed.
58
59 - QMetaMethod::signature() has been renamed to QMetaMethod::methodSignature(),
60   and the return type has been changed to QByteArray. This was done to be able
61   to generate the signature string on demand, rather than always storing it in
62   the meta-data.
63
64 - QTestLib:
65   * The plain-text, xml and lightxml test output formats have been changed to
66     show a test result for every row of test data in data-driven tests.  In
67     Qt4, only fails and skips were shown for individual data rows and passes
68     were not shown for individual data rows, preventing accurate calculation
69     of test run rates and pass rates.
70   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
71     These macros formerly lived in tests/shared/util.h but are now provided
72     by including the <QtTest/QtTest> header. In addition,
73     QTRY_VERIFY_WITH_TIMEOUT and QTRY_COMPARE_WITH_TIMEOUT are provided,
74     allowing for specifying custom timeout values.
75   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
76     known at compile-time to be inapplicable for a particular build it should
77     be omitted via .pro file logic, or the test should call QSKIP in the
78     initTestCase() method to skip the entire test and report a meaningful
79     explanation in the test log.
80   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
81     and misled some users to believe that they could make test functions depend
82     on each other or impose an execution order on test functions.
83   * The QTest::qt_snprintf function has been removed from the API.  This was an
84     internal testlib function that was exposed in the public API due to its use
85     in a public macro.  Any calls to this function should be replaced by a call
86     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
87   * The QTest::pixmapsAreEqual() function has been removed from the API.
88     Comparison of QPixmap objects should be done using QCOMPARE, which provides
89     more informative output in the event of a failure.
90   * The QSKIP macro no longer has the "mode" parameter, which caused problems
91     for calculating test metrics, as the SkipAll mode hid information about
92     what test data was skipped.  Calling QSKIP in a test function now behaves
93     like SkipSingle -- skipping a non-data-driven test function or skipping
94     only the current data row of a data-driven test function.  Every skipped
95     data row is now reported in the test log.
96
97 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
98
99 - QAccessible:
100   * Internal QAccessible::State enum value HasInvokeExtension removed
101 - QAccessibleInterface:
102   * The "child" integer parameters have been removed. This moves the api
103     to be closer to IAccessible2.
104     This means several functions lose their integer parameter:
105     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
106     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
107     role(int child) -> role(), state(int child) -> state()
108   * parent() and child() was added in order to do hierarchical navigation.
109   * relations() was added as a replacement to relationTo()
110   * As a consequence of the above two points, navigate() was removed.
111   * Accessible-Action related functions have been removed. QAccessibleInterface
112     subclasses are expected to implement the QAccessibleActionInterface instead.
113     These functions have been removed:
114     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
115     QAccessibleInterface::doAction
116 - QAccessibleEvent also loses the child parameter.
117     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
118     QAccessibleEvent::child() removed.
119 - QAccessibleActionInterface:
120   * Refactored to be based on action names. All functions have been changed from using
121     int parameters to strings.
122
123 - QSound has been moved from QtGui to QtMultimedia
124
125 - QTabletEvent::QTabletEvent does not take a hiResGlobalPos argument anymore,
126   as all coordinates are floating point based now.
127
128 - QTouchEvent:
129
130   * The DeviceType enum and deviceType() have been deprecated due to
131     the introduction of QTouchDevice.
132
133   * The signature of the constructor has changed. It now takes a
134     QTouchDevice pointer instead of just a DeviceType value.
135
136   * TouchPointState no longer includes TouchPointStateMask and
137     TouchPointPrimary. QTouchEvent::TouchPoint::isPrimary() has
138     been removed.
139
140   * QWidget *widget() has been removed and is replaced by QObject
141     *target() in order to avoid QWidget dependencies.
142
143   * QEvent::TouchCancel has been introduced. On systems where it makes
144     sense this event type can be used to differentiate between a
145     regular TouchEnd and abrupt touch sequence cancellations caused by
146     the compositor, for example when a system gesture gets recognized.
147
148 - QMetaType
149
150   * Q_DECLARE_METATYPE(Foo*) now requires that Foo is fully defined. In
151     cases where a forward declared type should be used as a metatype,
152     Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
153
154 - QItemEditorFactory
155
156   * The signature of the createEditor and valuePropertyName methods
157     have been changed to take arguments of type int instead of QVariant::Type.
158
159 - QWindowSystemInterface:
160
161   * The signature of all handleTouchEvent() variants have changed,
162     taking a QTouchDevice* instead of just a DeviceType value.
163     Platform or generic plug-ins have to create and register at least
164     one QTouchDevice before sending the first touch event.
165
166   * The event type parameter is removed from handleTouchEvent().
167
168 - The previously exported function qt_translateRawTouchEvent() has been removed.
169   Use QWindowSystemInterface::handleTouchEvent() instead.
170
171 - QAbstractEventDispatcher
172
173   * The signature for the pure-virtual registerTimer() has changed. Subclasses
174   of QAbstractEventDispatcher will need to be updated to reimplement the new
175   pure-virtual 'virtual void registerTimer(int timerId, int interval,
176   Qt::TimerType timerType, QObject *object) = 0;'
177
178   * QAbstractEventDispatcher::TimerInfo is no longer a QPair<int, int>. It is
179   now a struct with 3 members: struct TimerInfo { int timerId; int interval;
180   Qt::TimerType timerType; }; Reimplementations of
181   QAbstractEventDispatcher::registeredTimers() will need to be updated to pass
182   3 arguments to the TimerInfo constructor (instead of 2).
183
184 - QUuid
185
186   * Removed implicit conversion operator QUuid::operator QString(), instead
187   QUuid::toString() function should be used.
188
189 - The QHttp, QHttpHeader, QHttpResponseHeader and QHttpRequestHeader classes have
190   been removed, QNetworkAccessManager should be used instead.
191
192 - The QFtp class is no longer exported, QNetworkAccessManager should be used
193   instead.
194
195 - QProcess
196
197   * On Windows, QProcess::ForwardedChannels will not forward the output of GUI
198     applications anymore, if they do not create a console.
199
200 - QAbstractSocket's connectToHost() and disconnectFromHost() are now virtual and
201   connectToHostImplementation() and disconnectFromHostImplementation() don't exist.
202
203 - QTcpServer::incomingConnection() now takes a qintptr instead of an int.
204
205 - QNetworkConfiguration::bearerName() removed, and bearerTypeName() should be used.
206
207 - QDir::convertSeparators() (deprecated since Qt 4.2) has been removed. Use
208   QDir::toNativeSeparators() instead.
209
210 - QIconEngineV2 was merged into QIconEngine
211   You might need to adjust your code if it used a QIconEngine.
212
213 - qmake
214   * Projects which explicitly set an empty TARGET are considered broken now.
215   * several functions and built-in variables were modified to return normalized paths.
216
217 - QTextCodecPlugin has been removed since it is no longer used. All text codecs
218   are now built into QtCore.
219
220 - QDir::NoDotAndDotDot is QDir::NoDot|QDir::NoDotDot therefore there is no need
221   to use or check both.
222
223 - QFSFileEngine, QAbstractFileEngine, QAbstractFileEngineIterator and
224   QAbstractFileEngineHandler were removed from public API and are no longer
225   exported. They may temporarily live as private implementation details, but
226   they may be altogether dropped or otherwise changed at will in the future.
227
228 - QLocale
229   * toShort(), toUShort(), toInt(), toUInt(), toLongLong() and toULongLong() no
230     longer take a parameter for base, they will only perform localised base 10
231     conversions. For converting other bases use the QString methods instead.
232
233 - QSystemLocale has been removed from the public API.
234
235 - QSqlQueryModel::indexInQuery() is now virtual. See note below under QSql.
236
237 - qMacVersion() has been removed. Use QSysInfo::macVersion() or
238   QSysInfo::MacintoshVersion instead.
239
240 ****************************************************************************
241 *                           General                                        *
242 ****************************************************************************
243
244 General Improvements
245 --------------------
246
247 - The directory structure of the qtbase unit-tests has been reworked to
248   more closely match the directory structure of the code under test.
249   Integration tests have been moved to tests/auto/integrationtests.
250
251 Third party components
252 ----------------------
253
254 -
255
256
257 ****************************************************************************
258 *                          Library                                         *
259 ****************************************************************************
260
261 QtCore
262 ------
263 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
264   value is returned for an unassigned codepoints now.
265
266 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
267   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
268   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
269   rowsMoved signals.
270
271 * The default value of the property QSortFilterProxyModel::dynamicSortFilter was
272   changed from false to true.
273
274 * The signature of the virtual QAbstractItemView::dataChanged method has changed to
275   include the roles which have changed. The signature is consistent with the dataChanged
276   signal in the model.
277
278 * QFileSystemWatcher is now able to return failure in case of errors whilst
279   altering the watchlist in both the singular and QStringList overloads of
280   addPath and removePath.
281
282 * QString::mid, QString::midRef and QByteArray::mid, if the position passed
283   is equal to the length (that is, right after the last character/byte),
284   now return an empty QString, QStringRef or QByteArray respectively.
285   in Qt 4 they returned a null QString or a null QStringRef.
286
287 * QString methods toLongLong(), toULongLong(), toLong(), toULong(), toInt(),
288   toUInt(), toShort(), toUShort(), toDouble(), and toFloat() no longer use the
289   default or system locale, they will always use the C locale. This is to
290   guarantee consistent default conversion of strings. For locale-aware conversions
291   use the equivalent QLocale methods.
292
293 * QDate, QTime, and QDateTime have undergone important behavioural changes:
294   * QDate only implements the Gregorian calendar, the switch to the Julian
295     calendar before 1582 has been removed. This means all QDate methods will
296     return different results for dates prior to 15 October 1582, and there is
297     no longer a gap between 4 October 1582 and 15 October 1582.
298   * QDate::setYMD() is deprecated, use QDate::setDate() instead
299   * Most methods now apply strict validity checks and will return appropriate
300     and consistent values when invalid.  For example, QDate::year() will return
301     0 and QDate::shortMonthName() will return QString().
302   * Adding days to a null QDate or seconds to a null QTime will no longer return
303     a valid QDate/QTime.
304   * QDate stores the Julian Day as a qint64 extending date support across a
305     more interesting range, see the class documentation for details.
306     * Conversion to YMD form dates is only accurate between to 4800 BCE to
307       1.4 million CE
308     * The QDate::addDays() and QDateTime::addDays() methods now take a qint64
309     * The QDate::daysTo() and QDateTime::daysTo() methods now return a qint64
310
311 * QTextCodec::codecForCStrings() and QTextCodec::setCodecForCStrings() have both
312   been removed. This was removed due to issues with breaking other code from
313   libraries, creating uncertainty/bugs in using QString easily, and (to a lesser
314   extent) performance issues.
315
316 * QIntValidator and QDoubleValidator no longer fall back to using the C locale if
317   the requested locale fails to validate the input.
318
319 QtGui
320 -----
321 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
322   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
323   Table and cell interfaces have been added to qaccessible2.h
324
325 * Touch events and points have been extended to hold additional
326   information like capability flags, point-specific flags, velocity,
327   and raw positions.
328
329 QtWidgets
330 ---------
331 * QInputContext removed as well as related getters and setters on QWidget and QApplication.
332   Input contexts are now platform specific.
333
334 * QInputDialog::getInteger() has been obsoleted. Use QInputDialog::getInt() instead.
335
336 * In Qt 4, many QStyleOption subclasses were introduced in order to keep
337   binary compatibility -- QStyleOption was designed to be extended this way,
338   in fact it embeds a version number. In Qt 5 the various QStyleOption*V{2,3,4}
339   classes have been removed, and their members merged into the respective
340   base classes. Those classes were left as typedefs to keep existing code
341   working. Still, some minor adjustements could be necessary, especially in code
342   that uses QStyleOption directly and does not initialize all the members using
343   the proper Qt API: due to the version bump, QStyle will try to use the additional
344   QStyleOption members, which are left default-initialized.
345
346 QtNetwork
347 ---------
348 * QHostAddress::isLoopback() API added. Returns true if the address is
349   one of the IP loopback addresses.
350
351 * QSslCertificate::serialNumber() now always returns the serial number in
352   hexadecimal format.
353
354 * The openssl network backend now reads the ssl configuration file allowing
355   the use of openssl engines.
356
357
358 QtOpenGL
359 --------
360
361 QtScript
362 --------
363
364
365 QTestLib
366 --------
367 * [QTBUG-20615] Autotests can now log test output to multiple destinations
368   and log formats simultaneously.
369
370 QtSql
371 -----
372 QSqlTableModel/QSqlRelationalTableModel
373
374 * The dataChanged() signal is now emitted for changes made to an inserted
375 record that has not yet been committed. Previously, dataChanged() was
376 suppressed in this case for OnRowChange and OnFieldChange. This was probably
377 an attempt to avoid trouble if setData() was called while handling
378 primeInsert(). By emitting dataChanged(), we ensure that all views are aware
379 of the change.
380
381 * While handling primeInsert() signal, the record must be manipulated using
382 the provided reference. Do not attempt to manipulate the records using the
383 model methods setData() or setRecord().
384
385 * removeRows() no longer emits extra beforeDelete signal for out of range row.
386
387 * removeRows() now requires the whole range of targetted rows to be valid
388 before doing anything. Previously, it would remove what it could and
389 ignore the rest of the range.
390
391 * setRecord() and insertRecord()
392   -Only use fields where generated flag is set to true. This is
393   is consistent with the meaning of the flag.
394   -Require all fields to map correctly. Previously fields that didn't
395   map were simply ignored.
396   -For OnManualSubmit, insertRecord() no longer leaves behind an empty
397   row if setRecord() fails.
398
399 * QSqlQueryModel::indexInQuery() is now virtual. See
400 QSqlTableModel::indexInQuery() as example of how to implement in a
401 subclass.
402
403 ****************************************************************************
404 *                          Database Drivers                                *
405 ****************************************************************************
406
407
408 ****************************************************************************
409 *                      Platform Specific Changes                           *
410 ****************************************************************************
411
412 Qt for Linux/X11
413 ----------------
414
415
416 Qt for Windows
417 --------------
418 * Accessibility framework uses IAccessible2
419
420
421 Qt for Mac OS X
422 ---------------
423
424
425 Qt for Embedded Linux
426 ---------------------
427
428
429 Qt for Windows CE
430 -----------------
431
432
433 ****************************************************************************
434 *                      Compiler Specific Changes                           *
435 ****************************************************************************
436
437
438 ****************************************************************************
439 *                          Tools                                           *
440 ****************************************************************************
441
442 - Build System
443
444   * Remove qttest_p4.prf file. From now on we should explicitly enable the
445     things from it which we want. Autotest .pro files should stop using
446     'load(qttest_p4)' and start using 'CONFIG+=testcase' instead.
447
448 - Assistant
449
450 - Designer
451   * [QTBUG-8926] [QTBUG-20440] Properties of type QStringList now have
452     translation attributes which apply to all items.
453     They are by default translatable.
454
455 - Linguist
456
457 - rcc
458
459
460 - moc
461
462 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
463   file at the beginning of the generated file.
464
465
466 - uic
467
468
469 - uic3
470
471
472 - qmake
473
474 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
475   to the moc.
476
477
478 - configure
479
480
481 - qtconfig
482
483
484 ****************************************************************************
485 *                          Plugins                                         *
486 ****************************************************************************
487 - The text codecs that were previously plugins are now built into QtCore.
488
489 ****************************************************************************
490 *                   Important Behavior Changes                             *
491 ****************************************************************************
492
493 - QPointer
494
495    * QPointer itself is now deprecated, and the implementation of QPointer
496      has been changed to use QWeakPointer. The old guard mechanism has been
497      removed. This causes two slight changes in behavior when using
498      QPointer:
499
500      * When using QPointer on a QWidget (or a subclass of QWidget), previously
501      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
502      is cleared by the QObject destructor (since this is when QWeakPointers are
503      cleared). Any QPointers tracking a widget will NOT be cleared before the
504      QWidget destructor destroys the children for the widget being tracked.
505
506      * When constructing a QSharedPointer to take ownership of an object after a
507      QPointer is already tracking the object. Previously, the shared pointer
508      construction would not be affected by the QPointer, but now that QPointer
509      is implemented using QWeakPoiner, constructing the QSharedPointer will
510      cause an abort().
511
512
513 - QVariant
514
515   * Definition of QVariant::UserType changed. Currently it is the same as
516     QMetaType::User, which means that it points to the first registered custom
517     type, instead of a nonexistent type.
518
519 - QMetaType
520
521   * Interpretation of QMetaType::Void was changed. Before, in some cases
522     it was returned as an invalid type id, but sometimes it was used as a valid
523     type (C++ "void"). In Qt5, new QMetaType::UnknownType was introduced to
524     distinguish between these two. QMetaType::UnknownType is an invalid type id
525     signaling that a type is unknown to QMetaType, and QMetaType::Void
526     is a valid type id of C++ void type. The difference will be visible for
527     example in call to QMetaType::typeName(), this function will return null for
528     QMetaType::UnknownType and a pointer to "void" string for
529     QMetaType::Void.
530     Please, notice that QMetaType::UnknownType has value 0, which previously was
531     reserved for QMetaType::Void.
532
533
534 - QMessageBox
535
536      * The static function QMessageBox::question has changed the default argument
537      for buttons. Before the default was to have an Ok button. That is changed
538      to having a yes and a no button.