Added explicit threading API to QtOpenGL.
[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 - QTranslator subclasses need to adjust the signature of the virtual method
45   translate() in order to add the "int n = -1" argument.
46
47 - QString and QByteArray constructors that take a size argument will now treat
48   negative sizes to indicate nul-terminated strings (a nul-terminated array of
49   QChar, in the case of QString). In Qt 4, negative sizes were ignored and
50   result in empty QString and QByteArray, respectively. The size argument to
51   those constructors now has a default value of -1, thus replacing the separate
52   constructors that did the same.
53
54 - Qt::escape() is deprecated (but can be enabled via
55   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
56
57 - QBool is gone. QString::contains, QByteArray::contains, and QList::contains
58   used to return an internal QBool class so that the Qt3 code
59   "if (a.contains() == 2)" wouldn't compile anymore. Such code cannot exist
60   in Qt4, so these methods return a bool now. If your code used the undocumented
61   QBool, simply replace it with bool.
62
63 - qIsDetached<> has been removed without replacement.
64
65 - The return type of QFlags<Enum>::operator int() now matches the Enum's underlying
66   type in signedness instead of always being 'int'. This was done in order to allow
67   QFlags over enums whose underlying type is unsigned (Qt::MouseButton is one such
68   enum).
69
70 - QMetaType:
71   * QMetaType::construct() has been renamed to QMetaType::create().
72   * QMetaType::unregisterType() has been removed.
73   * QMetaType now records if the type argument inherits QObject. This
74     can be used in scripting APIs, so that custom QObject subclasses
75     are treated as QObject pointers. In QtScript for example, this can
76     mean that QScriptValue.isQObject can be true where it was false before.
77   * QMetaType::QWidgetStar has been removed. Use qMetaTypeId<QWidget*>()
78     or QVariant::canConvert<QWidget*>() as appropriate.
79
80 - QMetaMethod:
81   * QMetaMethod::signature() has been renamed to QMetaMethod::methodSignature(),
82     and the return type has been changed to QByteArray. This was done to be able
83     to generate the signature string on demand, rather than always storing it in
84     the meta-data.
85   * QMetaMethod::typeName() no longer returns an empty string when the return
86     type is void; it returns "void". The recommended way of checking whether a
87     method returns void is to compare the return value of QMetaMethod::returnType()
88     to QMetaType::Void.
89
90 - QVariant:
91   * Inconsistent constructor taking Qt::GlobalColor and producing QVariant(QColor)
92     instance was removed. Code constructing such variants can be migrated by
93     explicitly calling QColor constructor. For example from "QVariant(Qt::red)"
94     to "QVariant(QColor(Qt::red))"
95   * Similarly, implicit creation of QVariants from enum values Qt::BrushStyle,
96     Qt::PenStyle, and Qt::CursorShape have been removed. Create objects explicitly
97     or use static_cast<int>(Qt::SolidLine) to create a QVariant of type int with
98     the same value as the enum.
99
100 - QLocale:
101   * The historical language and country names were updated to their modern values,
102     some deprecated names were dropped or mapped to their modern alternatives.
103
104 - QTestLib:
105   * The plain-text, xml and lightxml test output formats have been changed to
106     show a test result for every row of test data in data-driven tests.  In
107     Qt4, only fails and skips were shown for individual data rows and passes
108     were not shown for individual data rows, preventing accurate calculation
109     of test run rates and pass rates.
110   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
111     These macros formerly lived in tests/shared/util.h but are now provided
112     by including the <QtTest/QtTest> header. In addition,
113     QTRY_VERIFY_WITH_TIMEOUT and QTRY_COMPARE_WITH_TIMEOUT are provided,
114     allowing for specifying custom timeout values.
115   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
116     known at compile-time to be inapplicable for a particular build it should
117     be omitted via .pro file logic, or the test should call QSKIP in the
118     initTestCase() method to skip the entire test and report a meaningful
119     explanation in the test log.
120   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
121     and misled some users to believe that they could make test functions depend
122     on each other or impose an execution order on test functions.
123   * The QTest::qt_snprintf function has been removed from the API.  This was an
124     internal testlib function that was exposed in the public API due to its use
125     in a public macro.  Any calls to this function should be replaced by a call
126     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
127   * The QTest::pixmapsAreEqual() function has been removed from the API.
128     Comparison of QPixmap objects should be done using QCOMPARE, which provides
129     more informative output in the event of a failure.
130   * The QSKIP macro no longer has the "mode" parameter, which caused problems
131     for calculating test metrics, as the SkipAll mode hid information about
132     what test data was skipped.  Calling QSKIP in a test function now behaves
133     like SkipSingle -- skipping a non-data-driven test function or skipping
134     only the current data row of a data-driven test function.  Every skipped
135     data row is now reported in the test log.
136   * The qCompare() function template was both overloaded and specialised, which
137     made it almost impossible to specialise the correct primary template and
138     could lead to indecipherable error messages or surprising overload resolution
139     (such as going via qCompare(QFlags<void*>,int) to satisfy a request for
140     qCompare<void*>()). Now, specialisation has been replaced by overloading.
141     As a consquence, code such as qCompare<QString>(l, r) will no longer use the
142     QString-specific implementation and may fail to compile. We recommend you
143     replace specialisations with overloading, too. Also, don't pass explicit
144     template arguments to qCompare (e.g. qCompare<QString>(l, r)), but let
145     overload resolution pick the correct one, and cast arguments in case of
146     ambiguous overloads (e.g. qCompare(QString(l), r)). The resulting code will
147     continue to work against older QtTestlib versions.
148
149 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
150
151 - QAccessible:
152   * Internal QAccessible::State enum value HasInvokeExtension removed
153 - QAccessibleInterface:
154   * The "child" integer parameters have been removed. This moves the api
155     to be closer to IAccessible2.
156     This means several functions lose their integer parameter:
157     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
158     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
159     role(int child) -> role(), state(int child) -> state()
160   * parent() and child() was added in order to do hierarchical navigation.
161   * relations() was added as a replacement to relationTo()
162   * As a consequence of the above two points, navigate() was removed.
163   * Accessible-Action related functions have been removed. QAccessibleInterface
164     subclasses are expected to implement the QAccessibleActionInterface instead.
165     These functions have been removed:
166     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
167     QAccessibleInterface::doAction
168 - QAccessibleEvent also loses the child parameter.
169     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
170     QAccessibleEvent::child() removed.
171 - QAccessibleActionInterface:
172   * Refactored to be based on action names. All functions have been changed from using
173     int parameters to strings.
174
175 - QSound has been moved from QtGui to QtMultimedia
176
177 - QTabletEvent::QTabletEvent does not take a hiResGlobalPos argument anymore,
178   as all coordinates are floating point based now.
179
180 - QTouchEvent:
181
182   * The DeviceType enum and deviceType() have been deprecated due to
183     the introduction of QTouchDevice.
184
185   * The signature of the constructor has changed. It now takes a
186     QTouchDevice pointer instead of just a DeviceType value.
187
188   * TouchPointState no longer includes TouchPointStateMask and
189     TouchPointPrimary. QTouchEvent::TouchPoint::isPrimary() has
190     been removed.
191
192   * QWidget *widget() has been removed and is replaced by QObject
193     *target() in order to avoid QWidget dependencies.
194
195   * QEvent::TouchCancel has been introduced. On systems where it makes
196     sense this event type can be used to differentiate between a
197     regular TouchEnd and abrupt touch sequence cancellations caused by
198     the compositor, for example when a system gesture gets recognized.
199
200 - QMetaType
201
202   * Q_DECLARE_METATYPE(Foo*) now requires that Foo is fully defined. In
203     cases where a forward declared type should be used as a metatype,
204     Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
205   * Similarly, Q_DECLARE_METATYPE(QSharedPointer<Foo>), and
206     Q_DECLARE_METATYPE(QWeakPointer<Foo>) require Foo to be fully defined. Again
207     though, Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
208
209 - QItemEditorFactory
210
211   * The signature of the createEditor and valuePropertyName methods
212     have been changed to take arguments of type int instead of QVariant::Type.
213
214 - QModelIndex/QAbstractItemModel
215
216   * The integer value that can be stored in a QModelIndex is now of type
217     quintptr to match the size of the internal storage location.
218   * The createIndex() method now only provides the void* and quintptr
219     overloads, making calls with a literal 0 (createIndex(row, col, 0))
220     ambiguous. Either cast (quintptr(0)) or omit the third argument
221     (to get the void* overload).
222
223 - QWindowSystemInterface:
224
225   * The signature of all handleTouchEvent() variants have changed,
226     taking a QTouchDevice* instead of just a DeviceType value.
227     Platform or generic plug-ins have to create and register at least
228     one QTouchDevice before sending the first touch event.
229
230   * The event type parameter is removed from handleTouchEvent().
231
232 - The previously exported function qt_translateRawTouchEvent() has been removed.
233   Use QWindowSystemInterface::handleTouchEvent() instead.
234
235 - QAbstractEventDispatcher
236
237   * The signature for the pure-virtual registerTimer() has changed. Subclasses
238   of QAbstractEventDispatcher will need to be updated to reimplement the new
239   pure-virtual 'virtual void registerTimer(int timerId, int interval,
240   Qt::TimerType timerType, QObject *object) = 0;'
241
242   * QAbstractEventDispatcher::TimerInfo is no longer a QPair<int, int>. It is
243   now a struct with 3 members: struct TimerInfo { int timerId; int interval;
244   Qt::TimerType timerType; }; Reimplementations of
245   QAbstractEventDispatcher::registeredTimers() will need to be updated to pass
246   3 arguments to the TimerInfo constructor (instead of 2).
247
248 - QUuid
249
250   * Removed implicit conversion operator QUuid::operator QString(), instead
251   QUuid::toString() function should be used.
252
253 - The QHttp, QHttpHeader, QHttpResponseHeader and QHttpRequestHeader classes have
254   been removed, QNetworkAccessManager should be used instead.
255
256 - The QFtp and QUrlInfo classes are no longer exported, QNetworkAccessManager should be used
257   instead. These classes are available in a separate module, qtftp.
258
259 - QProcess
260
261   * On Windows, QProcess::ForwardedChannels will not forward the output of GUI
262     applications anymore, if they do not create a console.
263
264 - QAbstractSocket's connectToHost() and disconnectFromHost() are now virtual and
265   connectToHostImplementation() and disconnectFromHostImplementation() don't exist.
266
267 - QTcpServer::incomingConnection() now takes a qintptr instead of an int.
268
269 - QNetworkConfiguration::bearerName() removed, and bearerTypeName() should be used.
270
271 - QDir::convertSeparators() (deprecated since Qt 4.2) has been removed. Use
272   QDir::toNativeSeparators() instead.
273
274 - QIconEngineV2 was merged into QIconEngine
275   You might need to adjust your code if it used a QIconEngine.
276
277 - qmake
278   * Projects which explicitly set an empty TARGET are considered broken now.
279   * The makespec and .qmake.cache do not see build pass specific variables any more.
280   * load()/include() with a target namespace and infile()/$$fromfile() now start with
281     an entirely pristine context.
282   * Configure's -sysroot and -hostprefix are now handled slightly differently.
283     The QT_INSTALL_... properties are now automatically prefixed with the sysroot;
284     the raw values are available as QT_INSTALL_.../raw and the sysroot as QT_SYSROOT.
285     The new QT_HOST_... properties can be used to refer to the Qt host tools.
286   * Several functions and built-in variables were modified to return normalized paths.
287   * The -(no-)exception flags in configure have been removed. Qt modules are now compiled
288     without exceptions by default, as they do not use them and can neither handle them
289     properly. Qt Core still has exceptions enabled to correctly throw bad_alloc exceptions
290     in our tool classes.
291     Whether code should be compiled with exception support enabled or disabled can be
292     controlled by a CONFIG += exceptions/exceptions_off setting in the .pro file.
293
294 - QTextCodecPlugin has been removed since it is no longer used. All text codecs
295   are now built into QtCore.
296
297 - QDir::NoDotAndDotDot is QDir::NoDot|QDir::NoDotDot therefore there is no need
298   to use or check both.
299
300 - QFSFileEngine, QAbstractFileEngine, QAbstractFileEngineIterator and
301   QAbstractFileEngineHandler were removed from public API and are no longer
302   exported. They may temporarily live as private implementation details, but
303   they may be altogether dropped or otherwise changed at will in the future.
304
305 - QLocale
306   * toShort(), toUShort(), toInt(), toUInt(), toLongLong() and toULongLong() no
307     longer take a parameter for base, they will only perform localised base 10
308     conversions. For converting other bases use the QString methods instead.
309
310 - QSystemLocale has been removed from the public API.
311
312 - QSqlQueryModel::indexInQuery() is now virtual. See note below under QtSql.
313
314 - QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
315   subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
316   are now virtual. See note below under QtSql.
317
318 - qMacVersion() has been removed. Use QSysInfo::macVersion() or
319   QSysInfo::MacintoshVersion instead.
320
321 - QColorDialog::customColor() now returns a QColor value instead of QRgb.
322   QColorDialog::setCustomColor() and QColorDialog::setStandardColor() now
323   take a QColor value for their second parameter instead of QRgb.
324
325 - QPageSetupDialog has had the PageSetupDialogOption enum and the api to
326   set and get the enum removed as none of the Options are used any more.
327
328 - QAbstractPageSetupDialog has been removed.
329
330 - QThread::terminated() has been removed, since its emission cannot be guaranteed.
331
332 - QPrintEngine - Removed the PPK_SuppressSystemPrintStatus key as no longer used.
333
334 - QCoreApplication::Type and QApplication::type() have been removed. These
335   Qt3 legacy application types did not match the application types
336   available in Qt5. Use for example qobject_cast instead to dynamically
337   find out the exact application type.
338
339 ****************************************************************************
340 *                           General                                        *
341 ****************************************************************************
342
343 General Improvements
344 --------------------
345
346 - The directory structure of the qtbase unit-tests has been reworked to
347   more closely match the directory structure of the code under test.
348   Integration tests have been moved to tests/auto/integrationtests.
349
350 - Qt is compiled with C++11 support enabled by default, provided the compiler
351   supports C++11. Qmake based projects can enable C++11 support explicitly
352   using 'CONFIG+=c++11' in their .pro files. To enable it conditionally, use
353   'contains(QT_CONFIG,c++11):CONFIG+=c++11'. This will enable C++11 support
354   only if Qt was built with C++11 support.
355
356 - The Unicode Data and Algorithms has been updated to match the
357   Unicode Standard of version 6.2. For more information see http://www.unicode.org/
358
359 - The QLocale data has been updated to CLDR 22.1.
360   For more information see http://cldr.unicode.org/
361
362 Third party components
363 ----------------------
364
365 - SQLITE_ENABLE_FTS3,SQLITE_ENABLE_FTS3_PARENTHESIS and SQLITE_ENABLE_RTREE
366 flags are now enabled by default on all platforms, for the sqlite3 copy under
367 the 3rdparty directory.
368
369
370 ****************************************************************************
371 *                          Library                                         *
372 ****************************************************************************
373
374 QtCore
375 ------
376 * [QTBUG-12144], [QTBUG-18360] The QChar methods are now able to handle the full range
377   of Unicode codepoints defined by the Unicode Standard of version 6.2.
378   QChar::isPrint() will no longer return a false positives for
379   the Unicode format characters, surrogates, and private use characters.
380
381 * Drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
382   value is returned for an unassigned codepoints now.
383
384 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
385   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
386   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
387   rowsMoved signals.
388
389 * The QAbstractItemModel::sibling method was made virtual, allowing implementations
390   to optimize based on internal data.
391
392 * The default value of the property QSortFilterProxyModel::dynamicSortFilter was
393   changed from false to true.
394
395 * The signature of the virtual QAbstractItemView::dataChanged method has changed to
396   include the roles which have changed. The signature is consistent with the dataChanged
397   signal in the model.
398
399 * QFileSystemWatcher is now able to return failure in case of errors whilst
400   altering the watchlist in both the singular and QStringList overloads of
401   addPath and removePath.
402
403 * QString::mid, QString::midRef and QByteArray::mid, if the position passed
404   is equal to the length (that is, right after the last character/byte),
405   now return an empty QString, QStringRef or QByteArray respectively.
406   in Qt 4 they returned a null QString or a null QStringRef.
407
408 * QString methods toLongLong(), toULongLong(), toLong(), toULong(), toInt(),
409   toUInt(), toShort(), toUShort(), toDouble(), and toFloat() no longer use the
410   default or system locale, they will always use the C locale. This is to
411   guarantee consistent default conversion of strings. For locale-aware conversions
412   use the equivalent QLocale methods.
413
414 * QDate, QTime, and QDateTime have undergone important behavioural changes:
415   * QDate only implements the Gregorian calendar, the switch to the Julian
416     calendar before 1582 has been removed. This means all QDate methods will
417     return different results for dates prior to 15 October 1582, and there is
418     no longer a gap between 4 October 1582 and 15 October 1582.
419   * QDate::setYMD() is deprecated, use QDate::setDate() instead
420   * Most methods now apply strict validity checks and will return appropriate
421     and consistent values when invalid.  For example, QDate::year() will return
422     0 and QDate::shortMonthName() will return QString().
423   * Adding days to a null QDate or seconds to a null QTime will no longer return
424     a valid QDate/QTime.
425   * QDate stores the Julian Day as a qint64 extending date support across a
426     more interesting range, see the class documentation for details.
427     * Conversion to YMD form dates is only accurate between to 4800 BCE to
428       1.4 million CE
429     * The QDate::addDays() and QDateTime::addDays() methods now take a qint64
430     * The QDate::daysTo() and QDateTime::daysTo() methods now return a qint64
431
432 * QTextCodec::codecForCStrings() and QTextCodec::setCodecForCStrings() have both
433   been removed. This was removed due to issues with breaking other code from
434   libraries, creating uncertainty/bugs in using QString easily, and (to a lesser
435   extent) performance issues.
436
437 * QTextCodec::codecForTr() and QTextCodec::setCodecForTr() have been removed.
438   QObject::trUtf8 and QCoreApplication::Encoding enum are now obsolete. Qt assumes
439   that the source code is encoded in UTF-8.
440
441 * QFile::setEncodingFunction and QFile::setDecodingFunction are obsolete and do
442   nothing in Qt 5. The QFile::encodeName and QFile::decodeName functions are now
443   hardcoded to operate on QString::fromLocal8Bit and QString::toLocal8Bit
444   only. Therefore, it's still possible to obtain the old behaviour by calling
445   QTextCodec::setCodecForLocale. However, that is not recommended: new code
446   should not make assumptions about the filesystem encoding and older code should
447   have those assumptions removed.
448
449 * QIntValidator and QDoubleValidator no longer fall back to using the C locale if
450   the requested locale fails to validate the input.
451
452 * A new set of classes for doing pattern matching with Perl-compatible regular
453   expressions has been added: QRegularExpression, QRegularExpressionMatch and
454   QRegularExpressionMatchIterator. They aim to replace QRegExp with a more
455   powerful and flexible regular expression engine.
456
457 * QEvent::AccessibilityPrepare, AccessibilityHelp and AccessibilityDescription removed:
458   * The enum values simply didn't make sense in the first place and should simply be dropped.
459
460 * Filtering of native events (QCoreApplication::setEventFilter, as well as
461   QApplication::x11EventFilter/macEventFilter/qwsEventFilter/winEventFilter) have been replaced
462   with QCoreApplication::installNativeEventFilter and removeNativeEventFilter,
463   for an API much closer to QEvent filtering. Note that the native events that can be
464   filtered this way depend on which QPA backend is chosen, at runtime. On X11, XEvents are
465   not used anymore, and have been replaced with xcb_generic_event_t due to the switch to
466   XCB, which requires porting the application code to XCB as well.
467
468 * [QTBUG-23529] QHash is now more resilient to a family of denial of service
469   attacks exploiting algorithmic complexity, by supporting two-arguments overloads
470   of the qHash() hashing function.
471
472 * [QTBUG-4844] QObject::disconnectNotify() is now called when a receiver is destroyed.
473
474 * QStateMachine
475   - [QTBUG-15430] Added a QStateMachine constructor that takes a ChildMode parameter.
476   - [QTBUG-17975] Delayed event posting now works from secondary threads.
477   - [QTBUG-19789] Signal transitions now work correctly when the sender is in a different thread.
478   - [QTBUG-20362] Property assignments now work as expected with nested, parallel states.
479   - [QTBUG-22931] The root state can now be a parallel state group.
480   - [QTBUG-24307] The initial state is now entered before the started() signal is emitted.
481   - [QTBUG-25959] State entry and exit order is now SCXML spec-compliant.
482
483 * qDebug(), qWarning(), qCritical(), and qFatal() were changed to macros that track the origin
484   of the message in source code. Whether this and other meta-information is printed can be
485   configured  (for the default message handler) by setting the new QT_MESSAGE_PATTERN environment
486   variable. qInstallMsgHandler() has been deprecated, and should be replaced with
487   qInstallMessageHandler().
488
489 * QTextBoundaryFinder
490   - [QTBUG-6498] The word start and word end boundaries detection is now
491     unaware of surrounding white space characters.
492   - SoftHyphen enum value has been added to specify a line break opportunity
493     at a soft hyphen (SHY) character.
494   - MandatoryBreak enum value has been added to specify a mandatory (aka "hard") line breaks.
495   - Source-incompatible change: Since the behavior of boundaryReasons() method
496     has been changed a lot, StartWord/EndWord enum values were intentionally replaced
497     with StartOfItem/EndOfItem ones to force the affected code be revised.
498
499 * Softkeys API was removed. The following functions and enums were removed:
500   - QAction::setSoftKeyRole()
501   - QAction::softKeyRole()
502   - QAction::SoftKeyRole
503   - Qt::WA_MergeSoftkeys
504   - Qt::WA_MergeSoftkeysRecursively
505   - Qt::WindowSoftkeysVisibleHint
506   - Qt::WindowSoftkeysRespondHint
507
508 * QLocale
509   - [QTBUG-27987] Constructing a QLocale object with the short locale id has been improved.
510
511 QtGui
512 -----
513 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
514   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
515   Table and cell interfaces have been added to qaccessible2.h
516
517 * Touch events and points have been extended to hold additional
518   information like capability flags, point-specific flags, velocity,
519   and raw positions.
520
521 * A new set of enabler classes have been added, most importantly QWindow, QScreen,
522   QSurfaceFormat, and QOpenGLContext.
523
524 * Most of the useful QtOpenGL classes have been polished and moved into
525   QtGui. See QOpenGLFramebufferObject, QOpenGLShaderProgram,
526   QOpenGLFunctions, etc.
527
528 * QOpenGLPaintDevice has been added to be able to use QPainter to render into
529   the currently bound context.
530
531 * Behavioral change in QImage::fill() on an image with format Format_RGB888:
532   For consistency with RGB32 and other 32-bit formats, function now expects
533   image data in RGB layout as opposed to BGR layout.
534
535 * Behavioral change in QImage and QPixmap load()/loadFromData() on a non-null image:
536   If load() or loadFromData() fails to load the image (returns false) then
537   the existent image data will be invalidated, so that isNull() is guaranteed
538   to return true in this case.
539
540 * Behavioral change regarding QPainter fill rules when not using antialiased
541   painting: The fill rules have changed so that the aliased and antialiased
542   coordinate systems match. Earlier there used to be an offset of slightly less
543   than half a pixel when doing sub-pixel rendering, in order to be consistent
544   with the old X11 paint engine. The new behavior should be more predictable and
545   gives the same consistent rounding for images / pixmaps as for paths and
546   rectangle filling. It's possible to still get the old behavior by setting the
547   QPainter::Qt4CompatiblePainting render hint.
548
549 * Behavioral change regarding QPen: The default QPen constructors now create a
550   1-width non-cosmetic pen as opposed to a 0-width cosmetic pen. The old
551   behavior can be emulated by setting the QPainter::Qt4CompatiblePainting
552   render hint when painting.
553
554 QtWidgets
555 ---------
556 * A new style QFusionStyle has been introduced, while QPlastiqueStyle, QCleanlooksStyle,
557   QCDEStyle and QMotifStyle have been removed. The older styles will be
558   made available to applications as a standalone source package.
559
560 * QInputContext removed as well as related getters and setters on QWidget and QApplication.
561   Input contexts are now platform specific.
562
563 * QInputDialog::getInteger() has been obsoleted. Use QInputDialog::getInt() instead.
564
565 * In Qt 4, QStyle::standardIconImplementation() and layoutSpacingImplementation()
566   were introduced instead of making the corresponding methods virtual due to binary
567   compatibility reasons. QStyle::standardIcon() and layoutSpacing() have been made
568   (pure) virtual in Qt 5.
569
570 * In Qt 4, many QStyleOption subclasses were introduced in order to keep
571   binary compatibility -- QStyleOption was designed to be extended this way,
572   in fact it embeds a version number. In Qt 5 the various QStyleOption*V{2,3,4}
573   classes have been removed, and their members merged into the respective
574   base classes. Those classes were left as typedefs to keep existing code
575   working. Still, some minor adjustements could be necessary, especially in code
576   that uses QStyleOption directly and does not initialize all the members using
577   the proper Qt API: due to the version bump, QStyle will try to use the additional
578   QStyleOption members, which are left default-initialized.
579
580 * QHeaderView has been refactored and the following functions have been obsoleted:
581
582   * void setMovable(bool movable) - use void setSectionsMovable(bool movable) instead.
583
584   * bool isMovable() const - use bool sectionsMovable() const instead.
585
586   * void setClickable(bool clickable) - use void setSectionsClickable(bool clickable) instead.
587
588   * bool isClickable() const - use bool sectionsClickable() instead.
589
590   * void setResizeMode(int logicalindex, ResizeMode mode) -
591     use setSectionResizeMode(logicalindex, mode) instead.
592
593   * ResizeMode resizeMode(int logicalindex) const -
594     use sectionResizeMode(int logicalindex) instead.
595
596   * setSortIndicator will no longer emit sortIndicatorChanged when the sort indicator is unchanged.
597
598 * QDateEdit and QTimeEdit have re-gained a USER property. These were originally removed
599     before Qt 4.7.0, and are re-added for 5.0. This means that the userProperty for
600     those classes are now QDate and QTime respectively, not QDateTime as they have been
601     for the 4.7 and 4.8 releases.
602
603 * QGraphicsItem and derived classes - Passing a QGraphicsScene in the items constructor
604   is no longer supported. Construct the item without a scene and then call
605   QGraphicsScene::addItem() to add the item to the scene.
606
607 * QAbstractItemView and derived classes only emit the clicked() signal on left click now,
608   instead of on all mouse clicks.
609
610 * QProxyModel has been removed. It is deprecated since early Qt 4 versions and replaced
611   by QAbstractProxyModel and related classes. A copy of QProxyModel is available
612   in the UiHelpers library.
613
614 * The virtual methods QApplication::commitData and QApplication::saveState, used for session
615   management, no longer exist.
616   Connect to the commitDataRequest and saveStateRequest signals instead.
617   The new isSessionSaving() method can be used in the cases where the closeEvent of your
618   window needs to know whether it is being called during shutdown.
619
620 * [QTBUG-20503] QFileSystemModel no longer masks out write permissions from the permissions
621   returned from permissions() or data(FilePermissions), even if in read-only mode
622   (QFileSystemModel::isReadOnly()).
623
624 * [QTBUG-158 QTBUG-428 QTBUG-26501] QComboBox::currentText improvements
625   Restored currentText as USER property.
626   New setter setCurrentText(), marked as WRITE method, usable by QItemDelegate and QDataWidgetMapper.
627   New signal currentTextChanged() marked as NOTIFY method.
628
629 QtNetwork
630 ---------
631 * QHostAddress::isLoopback() API added. Returns true if the address is
632   one of the IP loopback addresses.
633
634 * QSslCertificate::serialNumber() now always returns the serial number in
635   hexadecimal format.
636
637 * The openssl network backend now reads the ssl configuration file allowing
638   the use of openssl engines.
639
640 QtDBus
641 ------
642 * QtDBus now generates property annotations for the Qt type names
643   in the org.qtproject.QtDBus namespace. When parsing such annotations
644   both the old and new namespaces are accepted.
645
646 * QtDBus error codes have been updated to be on the org.qtproject.QtDBus.Error
647   namespace.
648
649 QtConcurrent
650 ------------
651
652 * QtConcurrent is no longer in QtCore, but forms its own library now.
653   QMake-based projects can use
654     QT += concurrent
655   to include the new library.
656
657 * QtConcurrent::Exception has been renamed to QException, and is still in QtCore.
658   Ditto QtConcurrent::UnhandledException.
659
660 QtOpenGL
661 --------
662
663 * Most of the classes in this module (with the notable exception of QGLWidget)
664   now have equivalents in QtGui, along with the naming change QGL -> QOpenGL.
665   The classes in QtOpenGL that have equivalents in QtGui can now be considered
666   deprecated.
667 * QGLPixelBuffer is now deprecated and implemented in terms of a hidden
668   QGLWidget and a QOpenGLFramebufferObject. It is recommended that applications
669   using QGLPixelBuffer for offscreen rendering to a texture switch to using
670   QOpenGLFramebufferObject directly instead, for improved performance.
671 * The default major version of QGLFormat has been changed to 2 to be aligned
672   with QSurfaceFormat. Applications that want to use a different version should
673   explicitly request it using QGLFormat::setVersion().
674 * void QGLContext::generateFontDisplayLists(const QFont& font, int listBase)
675   and int QGLWidget::fontDisplayListBase(const QFont & fnt, int listBase)
676   which were deprecated in Qt 4 have been removed.
677 * Previously deprecated default value listBase parameter has been removed from
678   both QGLWidget::renderText() functions.
679 * In order to ensure support on more platforms, stricter requirements have been
680   introduced for doing threaded OpenGL. First, you must call makeCurrent() at
681   least once per swapBuffers() call, so that the platform has a chance to
682   synchronize resizes to the OpenGL surface. Second, before doing makeCurrent()
683   or swapBuffers() in a separate thread, you must call
684   QGLContext::moveToThread(QThread *) to explicitly let Qt know in which thread
685   a QGLContext is currently being used. You also need to make sure that the
686   context is not current in the current thread before moving it to a different
687   thread.
688
689 QtScript
690 --------
691 * [QTBUG-2124]  Added default conversion for long and unsigned long.
692 * [QTBUG-6133]  Fixed QScriptContextInfo::functionMetaIndex() for overloaded
693   slots.
694 * [QTBUG-15213] Doc: Added missing properties to the ECMAScript reference.
695 * [QTBUG-15956] Doc: Removed wrong information about Error .stack properties.
696 * [QTBUG-17915] Fixed a crash when a JS property descriptor was only partially
697   defined.
698 * [QTBUG-18188] Fixed a regression that caused contexts created by
699   QScriptEngine::pushContext() to inherit the parent context's scope.
700 * [QTBUG-18201] Suppressed 'LEAK' messages on stderr at application exit.
701 * [QTBUG-20378] Fixed QtScriptTools compilation when some features are disabled.
702 * [QTBUG-20845] Fixed a precision bug in the calculator example.
703 * [QTBUG-21548] Fixed a crash in QScriptEngineDebugger when the QScriptEngine
704   being debugged was deleted.
705 * [QTBUG-21760] Fixed a crash when accessing QObject properties through an
706   activation object.
707 * [QTBUG-21896] Fixed a crash when converting an invalid JS value to a string.
708 * [QTBUG-21993] Fixed a bug that caused QObject wrapper objects created with
709   the PreferExistingWrapperObject option to not be garbage collected, even if
710   the object was not referenced anywhere in the scripting environment.
711 * [QTBUG-22152] Fixed build issue on Solaris.
712 * [QTBUG-23871] Fixed a JIT crash on x86-64 caused by out-of-range branch
713   instructions.
714 * [QTBUG-26261] Fixed a crash when a queued signal handler no longer existed.
715 * [QTBUG-26590] Fixed a bug that caused QObjects with script connections to
716   not be garbage collected as expected.
717
718 QTestLib
719 --------
720 * [QTBUG-20615] Autotests can now log test output to multiple destinations
721   and log formats simultaneously.
722 * [QTBUG-21645] QSignalSpy now handles QVariant signal parameters more
723   intuitively; the QVariant value is copied directly, instead of being
724   wrapped inside a new QVariant. This means that calling
725   qvariant_cast<QVariant>() on the QSignalSpy item (to "unwrap" the value)
726   is no longer required (but still works).
727
728 QtSql
729 -----
730 QSqlQueryModel/QSqlTableModel/QSqlRelationalTableModel
731
732 * The dataChanged() signal is now emitted for changes made to an inserted
733 record that has not yet been committed. Previously, dataChanged() was
734 suppressed in this case for OnRowChange and OnFieldChange. This was probably
735 an attempt to avoid trouble if setData() was called while handling
736 primeInsert(). By emitting dataChanged(), we ensure that all views are aware
737 of the change.
738
739 * While handling primeInsert() signal, the record must be manipulated using
740 the provided reference. Do not attempt to manipulate the records using the
741 model methods setData() or setRecord().
742
743 * removeRows() no longer emits extra beforeDelete signal for out of range row.
744
745 * removeRows() now requires the whole range of targetted rows to be valid
746 before doing anything. Previously, it would remove what it could and
747 ignore the rest of the range.
748
749 * removeRows(), for OnFieldChange and OnRowChange, allows only 1 row to be
750 removed and only if there are no other changed rows.
751
752 * setRecord() and insertRecord()
753   -The generated flags from the source record are preserved in the model
754   and determine which fields are included when changes are applied to
755   the database.
756   -Require all fields to map correctly. Previously fields that didn't
757   map were simply ignored.
758   -For OnManualSubmit, insertRecord() no longer leaves behind an empty
759   row if setRecord() fails.
760   -setRecord() now automatically submits for OnRowChange.
761
762 * QSqlQueryModel::indexInQuery() is now virtual. See
763 QSqlTableModel::indexInQuery() as example of how to implement in a
764 subclass.
765
766 * QSqlQueryMode::setQuery() emits fewer signals. The modelAboutToBeReset()
767 and modelReset() signals suffice to inform views that they must reinterrogate
768 the model.
769
770 * QSqlTableModel::select() is now a slot.
771
772 * QSqlTableModel::selectRow(): This is a new slot that refreshes a single
773 row in the model from the database.
774
775 * QSqlTableModel edit strategies OnFieldChange/OnRowChange QTBUG-2875
776 Previously, after changes were submitted in these edit strategies, select()
777 was called which removed and inserted all rows. This ruined navigation
778 in QTableView. Now, with these edit strategies, there is no implicit select()
779 done after committing. This includes deleted rows which remain in
780 the model as blank rows until the application calls select(). Instead,
781 selectRow() is called to refresh only the affected row.
782
783 * QSqlTableModel::isDirty(): New overloaded method to check whether model
784 has any changes to submit. QTBUG-3108
785
786 * QSqlTableModel::setData() and setRecord() no longer revert pending changes
787 that fail upon resubmitting for edit strategies OnFieldChange and OnRowChange.
788 Instead, pending (failed) changes cause new changes inappropriate to the
789 edit strategy to be refused. The application should resolve or revert pending
790 changes. insertRows() and insertRecord() also respect the edit strategy.
791
792 * QSqlTableModel::setData() and setRecord() in OnRowChange no longer have the
793 side effect of submitting the cached row when invoked on a different row.
794
795 * QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
796 subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
797 are now virtual. Their xxxImplemenation counterparts have been removed
798 now that QSqlDriver subclasses can reimplement these directly.
799
800 ****************************************************************************
801 *                          Database Drivers                                *
802 ****************************************************************************
803
804 sqlite
805 ------
806 * QVariant::Bool type now mapped to integers 0/1 in SQL instead of strings
807 'true' and 'false'. Sqlite does not have a boolean column type and it is
808 customary to use integer. QTBUG-23895
809
810 postgres
811 --------
812 * the error message returned in QSqlError::text() has the SQLSTATE error code
813 appended in parantheses.
814
815 ****************************************************************************
816 *                      Platform Specific Changes                           *
817 ****************************************************************************
818
819 Qt for Linux/X11
820 ----------------
821
822
823 Qt for Windows
824 --------------
825 * Accessibility framework uses IAccessible2
826 * ANGLE can be used to provide Open GL ES 2.0 (see http://code.google.com/p/angleproject/)
827
828 Qt for Mac OS X
829 ---------------
830
831
832 Qt for Embedded Linux
833 ---------------------
834
835
836 Qt for Windows CE
837 -----------------
838
839
840 ****************************************************************************
841 *                      Compiler Specific Changes                           *
842 ****************************************************************************
843
844
845 ****************************************************************************
846 *                          Tools                                           *
847 ****************************************************************************
848
849 - Build System
850
851   * Remove qttest_p4.prf file. From now on we should explicitly enable the
852     things from it which we want. Autotest .pro files should stop using
853     'load(qttest_p4)' and start using 'CONFIG+=testcase' instead.
854
855 - Assistant
856
857 - Designer
858   * [QTBUG-8926] [QTBUG-20440] Properties of type QStringList now have
859     translation attributes which apply to all items.
860     They are by default translatable.
861
862 - Linguist
863
864 - rcc
865
866
867 - moc
868
869 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
870   file at the beginning of the generated file.
871
872
873 - uic
874
875
876 - uic3
877
878
879 - qmake
880
881 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
882   to the moc.
883
884
885 - configure
886
887   * The Mac OS X -dwarf2 configure argument has been removed. DWARF2 is always
888     used on Mac OS X now.
889
890 - qtconfig
891
892
893 ****************************************************************************
894 *                          Plugins                                         *
895 ****************************************************************************
896 - The text codecs that were previously plugins are now built into QtCore.
897 - Code using Q_EXPORT_PLUGIN macros will no longer compile. Use
898   Q_PLUGIN_METADATA instead. Note that this requires that the class
899   be default-constructible.
900
901 ****************************************************************************
902 *                   Important Behavior Changes                             *
903 ****************************************************************************
904
905 - QPointer
906
907    * The implementation of QPointer has been changed to use QWeakPointer. The
908      old guard mechanism has been removed. This causes a slight change
909      in behavior when using QPointer:
910
911      * When using QPointer on a QWidget (or a subclass of QWidget), previously
912      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
913      is cleared by the QObject destructor (since this is when QWeakPointers are
914      cleared). Any QPointers tracking a widget will NOT be cleared before the
915      QWidget destructor destroys the children for the widget being tracked.
916
917 - QUrl
918
919   * QUrl has been changed to operate only on percent-encoded
920     forms. Fully-decoded forms, where the percent character stands for itself,
921     are no longer possible. For that reason, the getters and setters with
922     "encoded" in the name are deprecated, except for QUrl::toEncoded() and
923     QUrl::fromEncoded().
924
925     QUrl now operates in a mode where it decodes as much as it can of the
926     percent-encoding sequences. In addition, the setter methods possess a mode
927     in which a '%' character not part of a percent-encoding sequence will cause
928     the parser to correct the input. Therefore, most software will not require
929     changes to adapt, since the getter methods will continue returning the
930     components in their most-decoded form as they did before and the setter
931     methods will accept input as they did before..
932
933     The most notable difference is when dealing with
934     QUrl::toString(). Previously, this function would return percent characters
935     in the URL by themselves. Now, it will return "%25", like
936     QUrl::toEncoded().
937
938 - QVariant
939
940   * Definition of QVariant::UserType changed. Currently it is the same as
941     QMetaType::User, which means that it points to the first registered custom
942     type, instead of a nonexistent type.
943
944 - QMetaType
945
946   * Interpretation of QMetaType::Void was changed. Before, in some cases
947     it was returned as an invalid type id, but sometimes it was used as a valid
948     type (C++ "void"). In Qt5, new QMetaType::UnknownType was introduced to
949     distinguish between these two. QMetaType::UnknownType is an invalid type id
950     signaling that a type is unknown to QMetaType, and QMetaType::Void
951     is a valid type id of C++ void type. The difference will be visible for
952     example in call to QMetaType::typeName(), this function will return null for
953     QMetaType::UnknownType and a pointer to "void" string for
954     QMetaType::Void.
955     Please, notice that QMetaType::UnknownType has value 0, which previously was
956     reserved for QMetaType::Void.
957
958
959 - QMessageBox
960
961      * The static function QMessageBox::question has changed the default argument
962      for buttons. Before the default was to have an Ok button. That is changed
963      to having a yes and a no button.