Remove QWidgetStar.
[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-project.org/
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 - QObject
16   * The signatures of the connectNotify() and disconnectNotify() functions
17     have changed. The functions now get passed a QMetaMethod that identifies
18     the signal, rather than a const char *.
19
20 - QSslCertificate::subjectInfo() and QSslCertificate::issuerInfo() now
21   return a QStringList instead of a QString
22
23 - QSslCertificate::isValid() has been deprecated. Originally it only checked
24   the certificate dates, but later checking for blacklisting was added. Now
25   there's a more specific QSslCertificate::isBlacklisted() method.
26
27 - Unite clipping support has been removed from QPainter. The alternative is
28   to unite QRegion's and using the result on QPainter.
29
30 - QLibrary::resolve() now returns a function pointer instead of a void
31   pointer.
32
33 - QSslCertificate::alternateSubjectNames() is deprecated (but can be enabled
34   via QT_DISABLE_DEPRECATED_BEFORE), use
35   QSslCertificate::subjectAlternativeNames() instead.
36
37 - QLibraryInfo::buildKey() has been removed. Likewise, the QT_BUILD_KEY
38   preprocessor #define has also been removed. The build-key is obsolete
39   and is no longer necessary.
40
41 - QCoreApplication::translate() will no longer return the source text when
42   the translation is empty. Use lrelease -removeidentical for optimization.
43
44 - QString and QByteArray constructors that take a size argument will now treat
45   negative sizes to indicate nul-terminated strings (a nul-terminated array of
46   QChar, in the case of QString). In Qt 4, negative sizes were ignored and
47   result in empty QString and QByteArray, respectively. The size argument to
48   those constructors now has a default value of -1, thus replacing the separate
49   constructors that did the same.
50
51 - Qt::escape() is deprecated (but can be enabled via
52   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
53
54 - QBool is gone. QString::contains, QByteArray::contains, and QList::contains
55   used to return an internal QBool class so that the Qt3 code
56   "if (a.contains() == 2)" wouldn't compile anymore. Such code cannot exist
57   in Qt4, so these methods return a bool now. If your code used the undocumented
58   QBool, simply replace it with bool.
59
60 - qIsDetached<> has been removed without replacement.
61
62 - QMetaType:
63   * QMetaType::construct() has been renamed to QMetaType::create().
64   * QMetaType::unregisterType() has been removed.
65   * QMetaType::QWidgetStar has been removed. Use qMetaTypeId<QWidget*>()
66     or QVariant::canConvert<QWidget*>() as appropriate.
67
68 - QMetaMethod:
69   * QMetaMethod::signature() has been renamed to QMetaMethod::methodSignature(),
70     and the return type has been changed to QByteArray. This was done to be able
71     to generate the signature string on demand, rather than always storing it in
72     the meta-data.
73   * QMetaMethod::typeName() no longer returns an empty string when the return
74     type is void; it returns "void". The recommended way of checking whether a
75     method returns void is to compare the return value of QMetaMethod::returnType()
76     to QMetaType::Void.
77
78 - QVariant:
79   * Inconsistent constructor taking Qt::GlobalColor and producing QVariant(QColor)
80     instance was removed. Code constructing such variants can be migrated by
81     explicitly calling QColor constructor. For example from "QVariant(Qt::red)"
82     to "QVariant(QColor(Qt::red))"
83
84 - QTestLib:
85   * The plain-text, xml and lightxml test output formats have been changed to
86     show a test result for every row of test data in data-driven tests.  In
87     Qt4, only fails and skips were shown for individual data rows and passes
88     were not shown for individual data rows, preventing accurate calculation
89     of test run rates and pass rates.
90   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
91     These macros formerly lived in tests/shared/util.h but are now provided
92     by including the <QtTest/QtTest> header. In addition,
93     QTRY_VERIFY_WITH_TIMEOUT and QTRY_COMPARE_WITH_TIMEOUT are provided,
94     allowing for specifying custom timeout values.
95   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
96     known at compile-time to be inapplicable for a particular build it should
97     be omitted via .pro file logic, or the test should call QSKIP in the
98     initTestCase() method to skip the entire test and report a meaningful
99     explanation in the test log.
100   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
101     and misled some users to believe that they could make test functions depend
102     on each other or impose an execution order on test functions.
103   * The QTest::qt_snprintf function has been removed from the API.  This was an
104     internal testlib function that was exposed in the public API due to its use
105     in a public macro.  Any calls to this function should be replaced by a call
106     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
107   * The QTest::pixmapsAreEqual() function has been removed from the API.
108     Comparison of QPixmap objects should be done using QCOMPARE, which provides
109     more informative output in the event of a failure.
110   * The QSKIP macro no longer has the "mode" parameter, which caused problems
111     for calculating test metrics, as the SkipAll mode hid information about
112     what test data was skipped.  Calling QSKIP in a test function now behaves
113     like SkipSingle -- skipping a non-data-driven test function or skipping
114     only the current data row of a data-driven test function.  Every skipped
115     data row is now reported in the test log.
116
117 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
118
119 - QAccessible:
120   * Internal QAccessible::State enum value HasInvokeExtension removed
121 - QAccessibleInterface:
122   * The "child" integer parameters have been removed. This moves the api
123     to be closer to IAccessible2.
124     This means several functions lose their integer parameter:
125     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
126     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
127     role(int child) -> role(), state(int child) -> state()
128   * parent() and child() was added in order to do hierarchical navigation.
129   * relations() was added as a replacement to relationTo()
130   * As a consequence of the above two points, navigate() was removed.
131   * Accessible-Action related functions have been removed. QAccessibleInterface
132     subclasses are expected to implement the QAccessibleActionInterface instead.
133     These functions have been removed:
134     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
135     QAccessibleInterface::doAction
136 - QAccessibleEvent also loses the child parameter.
137     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
138     QAccessibleEvent::child() removed.
139 - QAccessibleActionInterface:
140   * Refactored to be based on action names. All functions have been changed from using
141     int parameters to strings.
142
143 - QSound has been moved from QtGui to QtMultimedia
144
145 - QTabletEvent::QTabletEvent does not take a hiResGlobalPos argument anymore,
146   as all coordinates are floating point based now.
147
148 - QTouchEvent:
149
150   * The DeviceType enum and deviceType() have been deprecated due to
151     the introduction of QTouchDevice.
152
153   * The signature of the constructor has changed. It now takes a
154     QTouchDevice pointer instead of just a DeviceType value.
155
156   * TouchPointState no longer includes TouchPointStateMask and
157     TouchPointPrimary. QTouchEvent::TouchPoint::isPrimary() has
158     been removed.
159
160   * QWidget *widget() has been removed and is replaced by QObject
161     *target() in order to avoid QWidget dependencies.
162
163   * QEvent::TouchCancel has been introduced. On systems where it makes
164     sense this event type can be used to differentiate between a
165     regular TouchEnd and abrupt touch sequence cancellations caused by
166     the compositor, for example when a system gesture gets recognized.
167
168 - QMetaType
169
170   * Q_DECLARE_METATYPE(Foo*) now requires that Foo is fully defined. In
171     cases where a forward declared type should be used as a metatype,
172     Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
173   * Similarly, Q_DECLARE_METATYPE(QSharedPointer<Foo>), and
174     Q_DECLARE_METATYPE(QWeakPointer<Foo>) require Foo to be fully defined. Again
175     though, Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
176
177 - QItemEditorFactory
178
179   * The signature of the createEditor and valuePropertyName methods
180     have been changed to take arguments of type int instead of QVariant::Type.
181
182 - QWindowSystemInterface:
183
184   * The signature of all handleTouchEvent() variants have changed,
185     taking a QTouchDevice* instead of just a DeviceType value.
186     Platform or generic plug-ins have to create and register at least
187     one QTouchDevice before sending the first touch event.
188
189   * The event type parameter is removed from handleTouchEvent().
190
191 - The previously exported function qt_translateRawTouchEvent() has been removed.
192   Use QWindowSystemInterface::handleTouchEvent() instead.
193
194 - QAbstractEventDispatcher
195
196   * The signature for the pure-virtual registerTimer() has changed. Subclasses
197   of QAbstractEventDispatcher will need to be updated to reimplement the new
198   pure-virtual 'virtual void registerTimer(int timerId, int interval,
199   Qt::TimerType timerType, QObject *object) = 0;'
200
201   * QAbstractEventDispatcher::TimerInfo is no longer a QPair<int, int>. It is
202   now a struct with 3 members: struct TimerInfo { int timerId; int interval;
203   Qt::TimerType timerType; }; Reimplementations of
204   QAbstractEventDispatcher::registeredTimers() will need to be updated to pass
205   3 arguments to the TimerInfo constructor (instead of 2).
206
207 - QUuid
208
209   * Removed implicit conversion operator QUuid::operator QString(), instead
210   QUuid::toString() function should be used.
211
212 - The QHttp, QHttpHeader, QHttpResponseHeader and QHttpRequestHeader classes have
213   been removed, QNetworkAccessManager should be used instead.
214
215 - The QFtp and QUrlInfo classes are no longer exported, QNetworkAccessManager should be used
216   instead. These classes are available in a separate module, qtftp.
217
218 - QProcess
219
220   * On Windows, QProcess::ForwardedChannels will not forward the output of GUI
221     applications anymore, if they do not create a console.
222
223 - QAbstractSocket's connectToHost() and disconnectFromHost() are now virtual and
224   connectToHostImplementation() and disconnectFromHostImplementation() don't exist.
225
226 - QTcpServer::incomingConnection() now takes a qintptr instead of an int.
227
228 - QNetworkConfiguration::bearerName() removed, and bearerTypeName() should be used.
229
230 - QDir::convertSeparators() (deprecated since Qt 4.2) has been removed. Use
231   QDir::toNativeSeparators() instead.
232
233 - QIconEngineV2 was merged into QIconEngine
234   You might need to adjust your code if it used a QIconEngine.
235
236 - qmake
237   * Projects which explicitly set an empty TARGET are considered broken now.
238   * The makespec and .qmake.cache do not see build pass specific variables any more.
239   * load()/include() with a target namespace and infile()/$$fromfile() now start with
240     an entirely pristine context.
241   * Configure's -sysroot and -hostprefix are now handled slightly differently.
242     The QT_INSTALL_... properties are now automatically prefixed with the sysroot;
243     the raw values are available as QT_INSTALL_.../raw and the sysroot as QT_SYSROOT.
244     The new QT_HOST_... properties can be used to refer to the Qt host tools.
245   * Several functions and built-in variables were modified to return normalized paths.
246   * The -(no-)exception flags in configure have been removed. Qt modules are now compiled
247     without exceptions by default, as they do not use them and can neither handle them
248     properly. Qt Core still has exceptions enabled to correctly throw bad_alloc exceptions
249     in our tool classes.
250     Whether code should be compiled with exception support enabled or disabled can be
251     controlled by a CONFIG += exceptions/exceptions_off setting in the .pro file.
252
253 - QTextCodecPlugin has been removed since it is no longer used. All text codecs
254   are now built into QtCore.
255
256 - QDir::NoDotAndDotDot is QDir::NoDot|QDir::NoDotDot therefore there is no need
257   to use or check both.
258
259 - QFSFileEngine, QAbstractFileEngine, QAbstractFileEngineIterator and
260   QAbstractFileEngineHandler were removed from public API and are no longer
261   exported. They may temporarily live as private implementation details, but
262   they may be altogether dropped or otherwise changed at will in the future.
263
264 - QLocale
265   * toShort(), toUShort(), toInt(), toUInt(), toLongLong() and toULongLong() no
266     longer take a parameter for base, they will only perform localised base 10
267     conversions. For converting other bases use the QString methods instead.
268
269 - QSystemLocale has been removed from the public API.
270
271 - QSqlQueryModel::indexInQuery() is now virtual. See note below under QtSql.
272
273 - QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
274   subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
275   are now virtual. See note below under QtSql.
276
277 - qMacVersion() has been removed. Use QSysInfo::macVersion() or
278   QSysInfo::MacintoshVersion instead.
279
280 - QColorDialog::customColor() now returns a QColor value instead of QRgb.
281   QColorDialog::setCustomColor() and QColorDialog::setStandardColor() now
282   take a QColor value for their second parameter instead of QRgb.
283
284 - QPageSetupDialog has had the PageSetupDialogOption enum and the api to
285   set and get the enum removed as none of the Options are used any more.
286
287 ****************************************************************************
288 *                           General                                        *
289 ****************************************************************************
290
291 General Improvements
292 --------------------
293
294 - The directory structure of the qtbase unit-tests has been reworked to
295   more closely match the directory structure of the code under test.
296   Integration tests have been moved to tests/auto/integrationtests.
297
298 - Qt is compiled with C++11 support enabled by default, provided the compiler
299   supports C++11. Qmake based projects can enable C++11 support explicitly
300   using 'CONFIG+=c++11' in their .pro files. To enable it conditionally, use
301   'contains(QT_CONFIG,c++11):CONFIG+=c++11'. This will enable C++11 support
302   only if Qt was built with C++11 support.
303
304 Third party components
305 ----------------------
306
307 - SQLITE_ENABLE_FTS3,SQLITE_ENABLE_FTS3_PARENTHESIS and SQLITE_ENABLE_RTREE
308 flags are now enabled by default on all platforms, for the sqlite3 copy under
309 the 3rdparty directory.
310
311
312 ****************************************************************************
313 *                          Library                                         *
314 ****************************************************************************
315
316 QtCore
317 ------
318 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
319   value is returned for an unassigned codepoints now.
320
321 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
322   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
323   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
324   rowsMoved signals.
325
326 * The default value of the property QSortFilterProxyModel::dynamicSortFilter was
327   changed from false to true.
328
329 * The signature of the virtual QAbstractItemView::dataChanged method has changed to
330   include the roles which have changed. The signature is consistent with the dataChanged
331   signal in the model.
332
333 * QFileSystemWatcher is now able to return failure in case of errors whilst
334   altering the watchlist in both the singular and QStringList overloads of
335   addPath and removePath.
336
337 * QString::mid, QString::midRef and QByteArray::mid, if the position passed
338   is equal to the length (that is, right after the last character/byte),
339   now return an empty QString, QStringRef or QByteArray respectively.
340   in Qt 4 they returned a null QString or a null QStringRef.
341
342 * QString methods toLongLong(), toULongLong(), toLong(), toULong(), toInt(),
343   toUInt(), toShort(), toUShort(), toDouble(), and toFloat() no longer use the
344   default or system locale, they will always use the C locale. This is to
345   guarantee consistent default conversion of strings. For locale-aware conversions
346   use the equivalent QLocale methods.
347
348 * QDate, QTime, and QDateTime have undergone important behavioural changes:
349   * QDate only implements the Gregorian calendar, the switch to the Julian
350     calendar before 1582 has been removed. This means all QDate methods will
351     return different results for dates prior to 15 October 1582, and there is
352     no longer a gap between 4 October 1582 and 15 October 1582.
353   * QDate::setYMD() is deprecated, use QDate::setDate() instead
354   * Most methods now apply strict validity checks and will return appropriate
355     and consistent values when invalid.  For example, QDate::year() will return
356     0 and QDate::shortMonthName() will return QString().
357   * Adding days to a null QDate or seconds to a null QTime will no longer return
358     a valid QDate/QTime.
359   * QDate stores the Julian Day as a qint64 extending date support across a
360     more interesting range, see the class documentation for details.
361     * Conversion to YMD form dates is only accurate between to 4800 BCE to
362       1.4 million CE
363     * The QDate::addDays() and QDateTime::addDays() methods now take a qint64
364     * The QDate::daysTo() and QDateTime::daysTo() methods now return a qint64
365
366 * QTextCodec::codecForCStrings() and QTextCodec::setCodecForCStrings() have both
367   been removed. This was removed due to issues with breaking other code from
368   libraries, creating uncertainty/bugs in using QString easily, and (to a lesser
369   extent) performance issues.
370
371 * QTextCodec::codecForTr() and QTextCodec::setCodecForTr() have been removed.
372   QObject::trUtf8 and QCoreApplication::Encoding enum are now obsolete. Qt assumes
373   that the source code is encoded in UTF-8.
374
375 * QFile::setEncodingFunction and QFile::setDecodingFunction are obsolete and do
376   nothing in Qt 5. The QFile::encodeName and QFile::decodeName functions are now
377   hardcoded to operate on QString::fromLocal8Bit and QString::toLocal8Bit
378   only. Therefore, it's still possible to obtain the old behaviour by calling
379   QTextCodec::setCodecForLocale. However, that is not recommended: new code
380   should not make assumptions about the filesystem encoding and older code should
381   have those assumptions removed.
382
383 * QIntValidator and QDoubleValidator no longer fall back to using the C locale if
384   the requested locale fails to validate the input.
385
386 * A new set of classes for doing pattern matching with Perl-compatible regular
387   expressions has been added: QRegularExpression, QRegularExpressionMatch and
388   QRegularExpressionMatchIterator. They aim to replace QRegExp with a more
389   powerful and flexible regular expression engine.
390
391 * QEvent::AccessibilityPrepare, AccessibilityHelp and AccessibilityDescription removed:
392   * The enum values simply didn't make sense in the first place and should simply be dropped.
393
394 * Filtering of native events (QCoreApplication::setEventFilter, as well as
395   QApplication::x11EventFilter/macEventFilter/qwsEventFilter/winEventFilter) have been replaced
396   with QCoreApplication::installNativeEventFilter and removeNativeEventFilter,
397   for an API much closer to QEvent filtering. Note that the native events that can be
398   filtered this way depend on which QPA backend is chosen, at runtime. On X11, XEvents are
399   not used anymore, and have been replaced with xcb_generic_event_t due to the switch to
400   XCB, which requires porting the application code to XCB as well.
401
402 * [QTBUG-23529] QHash is now more resilient to a family of denial of service
403   attacks exploiting algorithmic complexity, by supporting two-arguments overloads
404   of the qHash() hashing function.
405
406 * [QTBUG-4844] QObject::disconnectNotify() is now called when a receiver is destroyed.
407
408 * QStateMachine
409   - [QTBUG-15430] Added a QStateMachine constructor that takes a ChildMode parameter.
410   - [QTBUG-17975] Delayed event posting now works from secondary threads.
411   - [QTBUG-19789] Signal transitions now work correctly when the sender is in a different thread.
412   - [QTBUG-20362] Property assignments now work as expected with nested, parallel states.
413   - [QTBUG-22931] The root state can now be a parallel state group.
414   - [QTBUG-24307] The initial state is now entered before the started() signal is emitted.
415   - [QTBUG-25959] State entry and exit order is now SCXML spec-compliant.
416
417 QtGui
418 -----
419 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
420   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
421   Table and cell interfaces have been added to qaccessible2.h
422
423 * Touch events and points have been extended to hold additional
424   information like capability flags, point-specific flags, velocity,
425   and raw positions.
426
427 * A new set of enabler classes have been added, most importantly QWindow, QScreen,
428   QSurfaceFormat, and QOpenGLContext.
429
430 * Most of the useful QtOpenGL classes have been polished and moved into
431   QtGui. See QOpenGLFramebufferObject, QOpenGLShaderProgram,
432   QOpenGLFunctions, etc.
433
434 * QOpenGLPaintDevice has been added to be able to use QPainter to render into
435   the currently bound context.
436
437 QtWidgets
438 ---------
439 * QInputContext removed as well as related getters and setters on QWidget and QApplication.
440   Input contexts are now platform specific.
441
442 * QInputDialog::getInteger() has been obsoleted. Use QInputDialog::getInt() instead.
443
444 * In Qt 4, many QStyleOption subclasses were introduced in order to keep
445   binary compatibility -- QStyleOption was designed to be extended this way,
446   in fact it embeds a version number. In Qt 5 the various QStyleOption*V{2,3,4}
447   classes have been removed, and their members merged into the respective
448   base classes. Those classes were left as typedefs to keep existing code
449   working. Still, some minor adjustements could be necessary, especially in code
450   that uses QStyleOption directly and does not initialize all the members using
451   the proper Qt API: due to the version bump, QStyle will try to use the additional
452   QStyleOption members, which are left default-initialized.
453
454 * QHeaderView - The following functions have been obsoleted.
455
456   * void setMovable(bool movable) - use void setSectionsMovable(bool movable) instead.
457
458   * bool isMovable() const - use bool sectionsMovable() const instead.
459
460   * void setClickable(bool clickable) - use void setSectionsClickable(bool clickable) instead.
461
462   * bool isClickable() const - use bool sectionsClickable() instead.
463
464   * void setResizeMode(int logicalindex, ResizeMode mode) -
465     use setSectionResizeMode(logicalindex, mode) instead.
466
467   * ResizeMode resizeMode(int logicalindex) const -
468     use sectionResizeMode(int logicalindex) instead.
469
470 * QDateEdit and QTimeEdit have re-gained a USER property. These were originally removed
471     before Qt 4.7.0, and are re-added for 5.0. This means that the userProperty for
472     those classes are now QDate and QTime respectively, not QDateTime as they have been
473     for the 4.7 and 4.8 releases.
474
475 * QGraphicsItem and derived classes - Passing a QGraphicsScene in the items constructor
476   is no longer supported. Construct the item without a scene and then call
477   QGraphicsScene::addItem() to add the item to the scene.
478
479 * QAbstractItemView and derived classes only emit the clicked() signal on left click now,
480   instead of on all mouse clicks.
481
482 QtNetwork
483 ---------
484 * QHostAddress::isLoopback() API added. Returns true if the address is
485   one of the IP loopback addresses.
486
487 * QSslCertificate::serialNumber() now always returns the serial number in
488   hexadecimal format.
489
490 * The openssl network backend now reads the ssl configuration file allowing
491   the use of openssl engines.
492
493 QtDBus
494 ------
495 * QtDBus now generates property annotations for the Qt type names
496   in the org.qtproject.QtDBus namespace. When parsing such annotations
497   both the old and new namespaces are accepted.
498
499 * QtDBus error codes have been updated to be on the org.qtproject.QtDBus.Error
500   namespace.
501
502 QtOpenGL
503 --------
504
505 * Most of the classes in this module (with the notable exception of QGLWidget)
506   now have equivalents in QtGui, along with the naming change QGL -> QOpenGL.
507   The classes in QtOpenGL that have equivalents in QtGui can now be considered
508   deprecated.
509
510 QtScript
511 --------
512 * [QTBUG-2124]  Added default conversion for long and unsigned long.
513 * [QTBUG-6133]  Fixed QScriptContextInfo::functionMetaIndex() for overloaded
514   slots.
515 * [QTBUG-15213] Doc: Added missing properties to the ECMAScript reference.
516 * [QTBUG-15956] Doc: Removed wrong information about Error .stack properties.
517 * [QTBUG-17915] Fixed a crash when a JS property descriptor was only partially
518   defined.
519 * [QTBUG-18188] Fixed a regression that caused contexts created by
520   QScriptEngine::pushContext() to inherit the parent context's scope.
521 * [QTBUG-18201] Suppressed 'LEAK' messages on stderr at application exit.
522 * [QTBUG-20378] Fixed QtScriptTools compilation when some features are disabled.
523 * [QTBUG-20845] Fixed a precision bug in the calculator example.
524 * [QTBUG-21548] Fixed a crash in QScriptEngineDebugger when the QScriptEngine
525   being debugged was deleted.
526 * [QTBUG-21760] Fixed a crash when accessing QObject properties through an
527   activation object.
528 * [QTBUG-21896] Fixed a crash when converting an invalid JS value to a string.
529 * [QTBUG-21993] Fixed a bug that caused QObject wrapper objects created with
530   the PreferExistingWrapperObject option to not be garbage collected, even if
531   the object was not referenced anywhere in the scripting environment.
532 * [QTBUG-22152] Fixed build issue on Solaris.
533 * [QTBUG-23871] Fixed a JIT crash on x86-64 caused by out-of-range branch
534   instructions.
535 * [QTBUG-26261] Fixed a crash when a queued signal handler no longer existed.
536 * [QTBUG-26590] Fixed a bug that caused QObjects with script connections to
537   not be garbage collected as expected.
538
539 QTestLib
540 --------
541 * [QTBUG-20615] Autotests can now log test output to multiple destinations
542   and log formats simultaneously.
543 * [QTBUG-21645] QSignalSpy now handles QVariant signal parameters more
544   intuitively; the QVariant value is copied directly, instead of being
545   wrapped inside a new QVariant. This means that calling
546   qvariant_cast<QVariant>() on the QSignalSpy item (to "unwrap" the value)
547   is no longer required (but still works).
548
549 QtSql
550 -----
551 QSqlQueryModel/QSqlTableModel/QSqlRelationalTableModel
552
553 * The dataChanged() signal is now emitted for changes made to an inserted
554 record that has not yet been committed. Previously, dataChanged() was
555 suppressed in this case for OnRowChange and OnFieldChange. This was probably
556 an attempt to avoid trouble if setData() was called while handling
557 primeInsert(). By emitting dataChanged(), we ensure that all views are aware
558 of the change.
559
560 * While handling primeInsert() signal, the record must be manipulated using
561 the provided reference. Do not attempt to manipulate the records using the
562 model methods setData() or setRecord().
563
564 * removeRows() no longer emits extra beforeDelete signal for out of range row.
565
566 * removeRows() now requires the whole range of targetted rows to be valid
567 before doing anything. Previously, it would remove what it could and
568 ignore the rest of the range.
569
570 * removeRows(), for OnFieldChange and OnRowChange, allows only 1 row to be
571 removed and only if there are no other changed rows.
572
573 * setRecord() and insertRecord()
574   -The generated flags from the source record are preserved in the model
575   and determine which fields are included when changes are applied to
576   the database.
577   -Require all fields to map correctly. Previously fields that didn't
578   map were simply ignored.
579   -For OnManualSubmit, insertRecord() no longer leaves behind an empty
580   row if setRecord() fails.
581   -setRecord() now automatically submits for OnRowChange.
582
583 * QSqlQueryModel::indexInQuery() is now virtual. See
584 QSqlTableModel::indexInQuery() as example of how to implement in a
585 subclass.
586
587 * QSqlQueryMode::setQuery() emits fewer signals. The modelAboutToBeReset()
588 and modelReset() signals suffice to inform views that they must reinterrogate
589 the model.
590
591 * QSqlTableModel::selectRow(): This is a new method that refreshes a single
592 row in the model from the database.
593
594 * QSqlTableModel edit strategies OnFieldChange/OnRowChange QTBUG-2875
595 Previously, after changes were submitted in these edit strategies, select()
596 was called which removed and inserted all rows. This ruined navigation
597 in QTableView. Now, with these edit strategies, there is no implicit select()
598 done after committing. This includes deleted rows which remain in
599 the model as blank rows until the application calls select(). Instead,
600 selectRow() is called to refresh only the affected row.
601
602 * QSqlTableModel::isDirty(): New overloaded method to check whether model
603 has any changes to submit. QTBUG-3108
604
605 * QSqlTableModel::setData() and setRecord() no longer revert pending changes
606 that fail upon resubmitting for edit strategies OnFieldChange and OnRowChange.
607 Instead, pending (failed) changes cause new changes inappropriate to the
608 edit strategy to be refused. The application should resolve or revert pending
609 changes. insertRows() and insertRecord() also respect the edit strategy.
610
611 * QSqlTableModel::setData() and setRecord() in OnRowChange no longer have the
612 side effect of submitting the cached row when invoked on a different row.
613
614 * QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
615 subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
616 are now virtual. Their xxxImplemenation counterparts have been removed
617 now that QSqlDriver subclasses can reimplement these directly.
618
619 ****************************************************************************
620 *                          Database Drivers                                *
621 ****************************************************************************
622
623 sqlite
624 ------
625 * QVariant::Bool type now mapped to integers 0/1 in SQL instead of strings
626 'true' and 'false'. Sqlite does not have a boolean column type and it is
627 customary to use integer. QTBUG-23895
628
629 postgres
630 --------
631 * the error message returned in QSqlError::text() has the SQLSTATE error code
632 appended in parantheses.
633
634 ****************************************************************************
635 *                      Platform Specific Changes                           *
636 ****************************************************************************
637
638 Qt for Linux/X11
639 ----------------
640
641
642 Qt for Windows
643 --------------
644 * Accessibility framework uses IAccessible2
645 * ANGLE can be used to provide Open GL ES 2.0 (see http://code.google.com/p/angleproject/)
646
647 Qt for Mac OS X
648 ---------------
649
650
651 Qt for Embedded Linux
652 ---------------------
653
654
655 Qt for Windows CE
656 -----------------
657
658
659 ****************************************************************************
660 *                      Compiler Specific Changes                           *
661 ****************************************************************************
662
663
664 ****************************************************************************
665 *                          Tools                                           *
666 ****************************************************************************
667
668 - Build System
669
670   * Remove qttest_p4.prf file. From now on we should explicitly enable the
671     things from it which we want. Autotest .pro files should stop using
672     'load(qttest_p4)' and start using 'CONFIG+=testcase' instead.
673
674 - Assistant
675
676 - Designer
677   * [QTBUG-8926] [QTBUG-20440] Properties of type QStringList now have
678     translation attributes which apply to all items.
679     They are by default translatable.
680
681 - Linguist
682
683 - rcc
684
685
686 - moc
687
688 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
689   file at the beginning of the generated file.
690
691
692 - uic
693
694
695 - uic3
696
697
698 - qmake
699
700 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
701   to the moc.
702
703
704 - configure
705
706   * The Mac OS X -dwarf2 configure argument has been removed. DWARF2 is always
707     used on Mac OS X now.
708
709 - qtconfig
710
711
712 ****************************************************************************
713 *                          Plugins                                         *
714 ****************************************************************************
715 - The text codecs that were previously plugins are now built into QtCore.
716 - Code using Q_EXPORT_PLUGIN macros will no longer compile. Use
717   Q_PLUGIN_METADATA instead. Note that this requires that the class
718   be default-constructible.
719
720 ****************************************************************************
721 *                   Important Behavior Changes                             *
722 ****************************************************************************
723
724 - QPointer
725
726    * The implementation of QPointer has been changed to use QWeakPointer. The
727      old guard mechanism has been removed. This causes a slight change
728      in behavior when using QPointer:
729
730      * When using QPointer on a QWidget (or a subclass of QWidget), previously
731      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
732      is cleared by the QObject destructor (since this is when QWeakPointers are
733      cleared). Any QPointers tracking a widget will NOT be cleared before the
734      QWidget destructor destroys the children for the widget being tracked.
735
736 - QUrl
737
738   * QUrl has been changed to operate only on percent-encoded
739     forms. Fully-decoded forms, where the percent character stands for itself,
740     are no longer possible. For that reason, the getters and setters with
741     "encoded" in the name are deprecated, except for QUrl::toEncoded() and
742     QUrl::fromEncoded().
743
744     QUrl now operates in a mode where it decodes as much as it can of the
745     percent-encoding sequences. In addition, the setter methods possess a mode
746     in which a '%' character not part of a percent-encoding sequence will cause
747     the parser to correct the input. Therefore, most software will not require
748     changes to adapt, since the getter methods will continue returning the
749     components in their most-decoded form as they did before and the setter
750     methods will accept input as they did before..
751
752     The most notable difference is when dealing with
753     QUrl::toString(). Previously, this function would return percent characters
754     in the URL by themselves. Now, it will return "%25", like
755     QUrl::toEncoded().
756
757 - QVariant
758
759   * Definition of QVariant::UserType changed. Currently it is the same as
760     QMetaType::User, which means that it points to the first registered custom
761     type, instead of a nonexistent type.
762
763 - QMetaType
764
765   * Interpretation of QMetaType::Void was changed. Before, in some cases
766     it was returned as an invalid type id, but sometimes it was used as a valid
767     type (C++ "void"). In Qt5, new QMetaType::UnknownType was introduced to
768     distinguish between these two. QMetaType::UnknownType is an invalid type id
769     signaling that a type is unknown to QMetaType, and QMetaType::Void
770     is a valid type id of C++ void type. The difference will be visible for
771     example in call to QMetaType::typeName(), this function will return null for
772     QMetaType::UnknownType and a pointer to "void" string for
773     QMetaType::Void.
774     Please, notice that QMetaType::UnknownType has value 0, which previously was
775     reserved for QMetaType::Void.
776
777
778 - QMessageBox
779
780      * The static function QMessageBox::question has changed the default argument
781      for buttons. Before the default was to have an Ok button. That is changed
782      to having a yes and a no button.