Transition from Qt 4.x to Qt5

From Qt Wiki
Revision as of 12:45, 23 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


[toc align_right="yes" depth="2"]

The Transition from Qt 4.x to Qt 5

The transition from Qt 4.x to Qt 5 is not expected to be significant. However, the "modularization" of the Qt code base requires some amount of changes to project configuration, such as use of "headers", and configuration of project build settings (such as changes to the .pro files).
Qt Creator (master) is compiled using Qt 4 and Qt 5; you can refer to its sources to get an overview of what is required to port an application and keep the sources backwards compatible to Qt 4.
h2. QtWidgets as a Separate Module


h3. example compile time errors

<br />error: QMainWindow: No such file or directory<br />error: QToolButton: No such file or directory<br />error: QWidget: No such file or directory<br />


h3. Solution
Add this in your.pro file:

<br />QT ''= widgets<br />


Change all instances of


<br />#include &lt;QtGui&amp;gt;<br />


to


<br />#include &lt;QtWidgets&amp;gt;<br />


The code should work now, though sometimes you may require to be more explicit:


<br />#include &lt;QtWidgets/QToolButton&amp;gt;<br />


h2. QtWebKitWidgets is also a separate module:


h3. example compile time errors

<br />error: invalid use of incomplete type 'class QWebFrame'<br />error: forward declaration of 'class QWebFrame'<br />


h3. Solution
Add this in your *.pro file:


<br />QT''= webkitwidgets<br />

Note: when you have QT = webkitwidgets you don't need QT= widgets

In addition, replace all instances of

<br />#include &lt;QtWebKit&amp;gt;<br />

to

<br />#include &lt;QtWebKitWidgets&amp;gt;<br />

You can try this by porting a "WYSISWYG html editor&quot;:http://qt.gitorious.org/qt-labs/graphics-dojo/trees/c8d0c381b994d7417863832929cc4c3f710f2db5/htmleditor from Qt 4 to Qt 5.

QPrinter Doesn't Work

If your code has the following lines:

<br />#include &lt;QPrinter&amp;gt;<br />#include &lt;QPrintDialog&amp;gt;<br />

add the following to your project file:

<br />QT ''= printsupport<br />


Again, sometimes it may not work and you would need to be explicit:


<br />#include &lt;QtPrintSupport/QPrinter&amp;gt;<br />#include &lt;QtPrintSupport/QPrintDialog&amp;gt;<br />


h2. toAscii() and fromAscii() Methods are deprecated
Replace all instances of


<br />fromAscii()<br />toAscii()<br />


to

<br />fromLatin1()<br />toLatin1()<br />


For example, given the Qt 4 code

<br />QByteArray configfileti = TMP_Config.toAscii();<br />


you would change to

<br />QByteArray configfileti = TMP_Config.toLatin1();<br />


h2. QCoreApplication::UnicodeUTF8 is deprecated
This enum type used to define the 8-bit encoding of character string arguments to translate(). This enum is now obsolete and UTF-8 will be used in all cases. So remove all instances of QCoreApplication::UnicodeUTF8. For example:


<br />Href_Gui-&gt;setWindowTitle(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Url / www&amp;quot;, 0, QApplication::UnicodeUTF8));<br />label-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Text:&quot;, 0, QApplication::UnicodeUTF8));<br />label_2-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Url:&quot;, 0, QApplication::UnicodeUTF8));<br />label_3-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Target / Name:&quot;, 0, QApplication::UnicodeUTF8));<br />


to


<br />Href_Gui-&gt;setWindowTitle(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Url / www&amp;quot;, 0));<br />label-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Text:&quot;, 0));<br />label_2-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Url:&quot;, 0));<br />label_3-&gt;setText(QApplication::translate(&quot;Href_Gui&amp;quot;, &quot;Target / Name:&quot;, 0));<br />


h2. QWorkspace is deprecated
This class is obsolete and was replaced by the QMdiArea class in Qt 4.3. In Qt 5 QWorkspace has been removed. The new class has a similar API to QWorkspace and porting it only involved changing the names of a few methods, signals, and slots.
replace


#include &lt;QWorkspace&amp;gt;<br />


with


#include &lt;QMdiArea&amp;gt;<br />


h2. QDrag Problems
Apps that has drop and drag functionality will need some tweaking. A line such as


<br />QDrag '''drag = new QDrag(event-&gt;widget());<br />


in Qt 5 will generate the error


<br />error: no matching function for call to 'QDrag::QDrag(QWidget''')'<br />


To fix this add among the includes:


<br />#include &lt;QWidget&amp;gt;<br />


h2. qFindChildren is deprecated


An error will pop of this fashion:

<br />error: 'qFindChildren' was not declared in this scope<br />


To solve this you replace qFindChildren with findChildren, for example in


<br />toString(const QObject* obj, int indentLevel) const {<br />[]<br /> /* Query over QObjects '''/<br /> if (m_children) {<br /> QList&amp;lt;QObject'''&gt; childlist = qFindChildren&amp;lt;QObject*&gt;(obj, QString());<br />[…]<br />


replace


<br />QList&amp;lt;QObject*&gt; childlist = qFindChildren&amp;lt;QObject*&gt;(obj, QString());<br />


with


<br />QList&amp;lt;QObject*&gt; childlist = obj-&gt;findChildren&amp;lt;QObject*&gt;(QString());<br />


"source&quot;:https://bugs.webkit.org/attachment.cgi?id=82025&amp;action=diff
h2. qVariantValue is deprecated


Your compiler will say

<br />error: 'qVariantValue' was not declared in this scope<br />


This function is equivalent to QVariant::value&lt;T&gt;(value). Therefore if given a QVariant val rewrite the line

<br />QTime t = qVariantValue&amp;lt;QTime&amp;gt;(val);<br />


to


<br />QTime t = val.value&amp;lt;QTime&amp;gt;();<br />


This QTime enclosed in the angled brackets lets the compiler know what QVariant will return. However, if the variable is not a QVariable the type enclosed in the angled brackets should not be used(doing so will result in a vague compile time error). So given that m_color is of type QColor you will rewrite


<br />s.setValue(&quot;color/favorite&amp;quot;, qVariantValue&amp;lt;QColor&amp;gt;(m_color));<br />


to


<br />s.setValue(&quot;color/favorite&amp;quot;, m_color.value());<br />


"source&quot;:http://stackoverflow.com/questions/14919867/qvariantvalue-is-qt-deprecated-what-is-the-replacement
h2. qVariantCanConvert is deprecated
replace


<br />Q_ASSERT(qVariantCanConvert&amp;lt;QString&amp;gt;(variant));<br />Q_ASSERT(qVariantCanConvert&amp;lt;QSize&amp;gt;(variant));<br />Q_ASSERT(qVariantCanConvert&amp;lt;QFont&amp;gt;(fontVariant));<br />


with


<br />Q_ASSERT(variant.canConvert(QMetaType::QString));<br />Q_ASSERT(variant.canConvert(QMetaType::QSize));<br />Q_ASSERT(fontVariant.canConvert(QMetaType::QFont));<br />


h2. Qt::escape is deprecated


<br />error: 'escape' is not a member of 'Qt'<br />


So you would change the following block:


<br /> if (result == QString())<br /> result = Qt::escape(val.toString());<br /> else<br /> result = Qt::escape(result);<br /> return result;<br />


to


<br /> if (result == QString())<br /> result = QString(val.toString()).toHtmlEscaped();<br /> else<br /> result = QString(result).toHtmlEscaped();<br /> return result;<br />


this procedure can be automated by a "porting tool&quot;:http://www.kdab.com/automated-porting-from-qt-4-to-qt-5/ from KDAB.
h2. QDesktopServices::storageLocation deprecated


<br />error: 'storageLocation' is not a member of 'QDesktopServices'<br />error: 'DataLocation' is not a member of 'QDesktopServices'<br />


Use QStandardPaths::StandardLocation:


<br />QString path = s.value(&quot;db.path&amp;quot;, QDesktopServices::storageLocation(QDesktopServices::DataLocation)).toString();<br />


to


<br />QString path = s.value(&quot;db.path&amp;quot;, QStandardPaths::standardLocations(QStandardPaths::DataLocation)).toString();<br />


"source&quot;:http://doc.qt.io/qt-5.0/qtgui/qdesktopservices-obsolete.html
h2. CONFIG=qtestlib is deprecated

If you have the above line in your project file the compiler will warn you in the compile window, nonetheless the code will still run as usual:

<br />Project WARNING: CONFIG+=qtestlib is deprecated. Use QT+=testlib instead.<br />

QWeakPointer quirks

A code block like

<br />quint64 decodedPointer = line.toULongLong();<br />MetaData* md = reinterpret_cast&amp;amp;lt;MetaData*&amp;gt;(decodedPointer);<br />QWeakPointer&amp;amp;lt;MetaData&amp;amp;gt; wp(md);<br />

results in

<br />error: no matching function for call to 'QWeakPointer&amp;amp;lt;MetaData&amp;amp;gt;::QWeakPointer(MetaData*&amp;)'<br />

To fix this add to the project file:

<br />DEFINES ''= QT_DISABLE_DEPRECATED_BEFORE=0<br />


"source&quot;:http://forum.qt.io/viewthread/27510
h2. QtConcurrent Library is Missing?


<br />C:5.0.2\5.0.2\mingw47_32\include\QtConcurrent\qtconcurrentthreadengine.h:133: error: undefined reference to `_imp___ZN12QtConcurrent16ThreadEngineBaseD2Ev'<br />


In Qt 4, QtConcurrent was part of QtCore, so there was no need to include specific headers. This is no longer the case with Qt 5. If your source code have lines like


<br />m_current = QtConcurrent::blockingMappedReduced(slices, functor, stitchReduce, QtConcurrent::UnorderedReduce );<br />


You will need to include the header:


<br />#include &lt;QtConcurrent/QtConcurrent&amp;gt;<br />


and add the following line to your project file:


<br />QT''= concurrent<br />

Fixing #include&lt;> Headers

A Perl script "fixqt4headers.pl&quot; exists in qtbase/bin/. that should be run on source code using Qt that corrects the #include&lt;> directives for Qt components to also consider the module name.

Plugin loading

The Q_EXPORT_PLUGIN,Q_EXPORT_PLUGIN2 macros have been deprecated in favor of the new Q_PLUGIN_METADATA macro. The advantage of the new system is that it allows Qt to query the metadata for the plugin without actually dlopen'ing it. This greatly improves performance and reliability of the plugin system.

The new Q_PLUGIN_METADATA macro is included next to the Q_OBJECT macro in the QObject derived class that is returned when loading the plugin. It contains the plugins IID and a filename pointing to a json file containing the metadata for the plugin. The json file is compiled into the plugin and does not need to be installed.

An example on how to change your plugins can be found by looking at the patch that changes the Gif image format plugin, see http://qt.gitorious.org/qt/qtbase/commit/963b4c1647299fd023ddbe7c4a25ac404e303c5d .

== Deploying to systems without C+11
When Qt is built from source code on a system with C11 installed, the Qt libraries/frameworks are linked against the system's C11 library (libc). This means that the Qt libraries/frameworks are not deployable to systems without C11 installed (such as out-of-the-box Mac OS X 10.6). To be able to deploy to systems that only support the older C+ standard (libstdc+), build Qt from source code with the -no-c11 configure option.
h2. QTimer is no longer accurate to the millisecond by default
QTimer has now 3 accuracy types, with a new default behaviour:
* The new default type is Qt::CoarseTimer which, to reduce power/CPU consumption, allow 5% difference between requested time and actual one, and even allow the timer to fire before the requested time.
* The former one is Qt::PreciseTimer (to the millisecond, never before the requested time).
* A third one is Qt::VeryCoarseTimer and allow a 1 second difference
h2. QUrl addQueryItem moved to QUrlQuery


If you have:

<br />QUrl url;<br />// …<br />url.addQueryItem(key, value);<br />


You will want to change it to

<br />QUrl url;<br />QUrlQuery urlQuery;<br />// …<br />urlQuery.addQueryItem(key, value);
<br />url.setUrlQuery(urlQuery);<br />


h2. QAbstractItemModel changes


<br />void reset()<br />void setRoleNames(const QHash&amp;lt;int, QByteArray&amp;gt; &amp; roleNames)<br />


both have changed and are now protected.


See "Compatibility Members for QAbstractItemModel&quot;:http://doc.qt.io/qt-5/qabstractitemmodel-compat.html#reset
h2. Recommended Reading
* "C+ API Changes&quot;:http://doc.qt.io/qt-5.0/qtdoc/sourcebreaks.html
* "The porting guide&quot;:http://doc.qt.io/qt-5.0/qtdoc/portingguide.html
* "Porting Desktop Applications from Qt 4 to Qt 5&quot;:http://blog.ics.com/2013/01/porting-desktop-applications-from-qt-4-to-qt-5.html#.UVDeLReGqSr
* "Porting from Qt 4 to Qt 5&quot;:http://www.kdab.com/porting-from-qt-4-to-qt-5/
* "Automated porting from Qt 4 to Qt 5&quot;:http://www.kdab.com/automated-porting-from-qt-4-to-qt-5/ ==