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