Questions tagged [qt5.5]

Qt 5.5 is the newest version of Qt which is a cross-platform application framework that is widely used for developing application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while having the power and speed of native applications. Tag this only for the issues with Qt 5.5 not other versions.

Qt5.5 New Features:

Qt Bluetooth

  • Bluetooth Low Energy API final release (5.4 was featuring tech preview).
  • Bluetooth Low Energy Support for Android (requires Android v18+) added.
  • Bluetooth Classic and Low Energy support for iOS and OS X.

Qt Core

  • You can now have Q_PROPERTY and Q_INVOKABLE within a Q_GADGET, and there is a way to query the QMetaObject of such gadget using the QMetaTYpe system.
  • Added Q_ENUM to replace Q_ENUMS which allow to get a QMetaEnum at compile time using QMetaEnum::fromType<T>. Such enums are now automatically registered as metatype, and can be converted to string within QVariant, or are printed as string by qDebug()

Qt GUI

  • Windows packages are all built with -opengl dynamic. No OpenGL-only or ANGLE-only builds are provided anymore.
  • On Windows the OpenGL implementation to use can now be configured based on the GPU vendor and driver version using JSON configuration files. This allows shipping fine-grained card and driver blacklists with the apps, when necessary.
  • QOpenGLWidget is now supported in iOS.
  • QImage: 8-bit alpha map and grayscale formats.
  • QImageReader: EXIF orientation can now be read though the transformation method, and applied on read to JPEGs if wanted.

Qt Multimedia

  • GStreamer 1.0 support. Note that the default is still 0.10. 1.0 support can be enabled by configuring Qt with '-gstreamer 1.0'.
  • New video filtering framework to integrate frameworks like OpenCV or compute APIs such as OpenCL or CUDA with VideoOutput elements.
  • New API to control camera viewfinder settings
  • Improved camera support on iOS (focus, zoom, exposure, viewfinder/image settings)
  • The QML MediaPlayer is now rendered in an OpenGL texture on iOS. This means VideoOutput supports advanced transformation, shader effects and doesn't have to be always on top of other items anymore.

Qt NFC

  • Neard based backend for Linux added.

Qt Network

  • New SSL back-end for iOS and OS X based on Secure Transport. Note that in Qt 5.6 this will become the default SSL: back-end on these platforms.
  • Support for libproxy
  • Support for TLS PSK ciphersuites
  • Support for elliptic curve certificates
  • Ability to select specific curves when using elliptic curve ciphersuites.

QPA

  • Added support for the Raspberry Pi 2.
  • Added support for the ODROID-XU3.
  • On supported desktops, the xcb plugin now uses the D-Bus based org.kde.StatusNotifier protocol for system tray icons, and org.freedesktop.Notifications for notifications.
  • KMS/DRM backend for EGLFS. This replaces the now deprecated KMS platform plugin. It allows running apps with eglfs on the console on systems with Mesa and devices that come with drm support.
  • EGLFS has a plugin-based backend mechanism in addition to the existing, statically compiled-in solution. Most compiled-in hooks are converted to be dynamically loaded plugins that are built based on configure time tests. This reduces the reliance on the device makespecs for RPi, i.MX6 and Mali-based devices.
  • Input handling is now unified for EGLFS and LinuxFB, avoiding the need to launch and configure LinuxFB-based apps differently than when using EGLFS.
  • tslib is now better integrated with EGLFS and LinuxFB to provide support for resistive single-touch touchscreens often used in industrial environments.
  • xcb is refactored to move GLX and EGL support into plugins. No more ifdefs, allowing building both backends.
  • Added a TUIO Touch plugin for receiving remote touch events via UDP.
  • Added a libinput plugin.
  • iOS: you can now use QFileDialog to browse system photos using a native image picker dialog by setting directory to QStandardPaths::PicturesLocation. Selected photos can be loaded using QFile.

Qt QML

  • It is now possible to conveniently expose custom C++ value types into the JavaScript environment of QML and QJSEngine.
  • Support for JavaScript typed arrays
  • Various performance improvements, notably QJSValue
  • Added convenience qJsEngine(QObject*) getter function.

Qt Quick

  • Windows now defaults to the threaded Qt Quick render loop when using desktop OpenGL (opengl32.dll).
  • QQuickWidget is now supported in iOS.
  • QQuickRenderControl supports threaded rendering.
  • Improved behavior of Flickable on OS X trackpads using pixel deltas from native gestures.
  • PinchArea handles native pinch gestures when the OS provides them (so far only on OS X). Otherwise it relies on touch events, as before.
  • Added a smart zoom signal to PinchArea to react to that gesture on an OS X trackpad.
  • MouseArea now has a scrollGestureEnabled property to control whether native scroll gestures from the OS will be handled by the wheel signal handler.

Qt Quick Controls

  • Qt Quick Extras (formerly Qt Quick Enterprise Controls) was added under the QtQuick.Extras import.
  • TreeView control for QAbstractItemModel-derived models. Supports QItemSelectionModel selection.

Qt WebEngine

  • WebEngineProfile for control of storage and cache paths and related policies.
  • Added support for javascript Geolocation API with QtLocation as a backend
  • Added API for managing downloading of files
  • Added API for controlling cache and cookie paths and policy
  • Added API for WebEngine settings
  • Various experimental QML API has been promoted to public
  • Added QtWebChannel integration API over Chromium IPC
  • Updated Chromium snapshot to version 40

Qt WebView

  • Added native implementations for Mac OS X.
  • Added API for running JavaScript (Requires API 19+ on Android).
  • Added API for setting the HTML content.
  • Added API for load status notifications.

Reference:

All of the information collected from the official site of qt. Here you would found more information about qt5.5.

226 questions
0
votes
0 answers

How to enter a static methods for Qt Linguist QTranslator

I have a Qt Linguist *.ts file like:
Ralf Wickum
  • 2,850
  • 9
  • 55
  • 103
0
votes
1 answer

QProcess gpg2 error in windows

I need to encrypt some text with gpg using Qt. QCA is no choice. My function is working in Linux but in Windows I get exitCode 2. Executing the gpg2.exe with the same arguments on the commandline is working like expected. QString…
Pascal
  • 2,059
  • 3
  • 31
  • 52
0
votes
0 answers

Send mail from Qt application via SMTP through proxy

I try to send automatic emails from a Qt application if a user creates a new incident. Obviously, the purpose is to warn other people about this incident. My problem is actually to send the email. I found this library of BlueTiger9. It's an email…
Tuvia
  • 13
  • 7
0
votes
1 answer

QEventLoop has already called exec() even with exit() before

I have a Button connected on click with myfuntion see below. I'm using a QEventLoop because I am waiting for an event, wich will call _myEventLoop.exit(0); When I click the button two times in a row without waiting for the event to happen I get the…
Giacogiac
  • 189
  • 1
  • 11
0
votes
2 answers

Qt .pro File Settings for OSX Dylibs Instead of install_name_tool?

In deploying my OSX application, the .app file was having trouble finding the custom dylib that I coded. Here's the strange thing about that, though: It worked in Qt Creator just fine. If I went to command line, cd'd into the directory where my…
Volomike
  • 23,743
  • 21
  • 113
  • 209
0
votes
1 answer

Linking problems: Qt5.5 32bit VS2013

I have been searching for an answer to this but no luck as yet. Using Qt5.5 32bit, VS2013 on Win8 64bit My .pro file contains this: INCLUDEPATH += "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include" LIBS += -L"C:\Program Files…
JasonKretzer
  • 192
  • 1
  • 11
0
votes
3 answers

Upgrade QT 5.4 or Qt 5.5 - Install and run - Ubuntu 14 and 15

I have searched all day in order to use Qt 5.4 or Qt 5.5. I have two machines, one running Ubuntu 15 and the other Ubuntu 14, but got the same results. I have installed the program through the download-online package, and now I have beautiful…
TakeMeToTheMoon
  • 527
  • 1
  • 8
  • 25
0
votes
3 answers

How to install QtQuick.Controls 1.4 on Ubuntu?

I have installed the latest Qt 5.5.0, but there seems to be only QtQuick.Controls 1.0 and 1.1. I want to use TreeView, which is contained in the 1.4 version.
Zen
  • 5,065
  • 8
  • 29
  • 49
0
votes
1 answer

Deploying Qt5.5 Qml App to Windows XP shows me a blank window?

I have built a static x86 Qt5.5 library with VS2013 using: configure -static -prefix D:\Qt\qt-5.5.0-x86-static -opensource -release -static-runtime -nomake examples -no-compile-examples -static-runtime -nomake tools -no-iconv -qt-zlib -skip…
zzy
  • 1,771
  • 1
  • 13
  • 48
0
votes
1 answer

Error while building Project on qt 5.5.0

![Kit error ][1] In Issue Tab error: ![Qt version][2] Qt Creator needs a compiler set up to build. Configure a compiler in the kit options. Compile Output: 13:45:05: Configuration is faulty. Check the Issues view for details. Error while…
Dipen
  • 13
  • 1
  • 2
0
votes
1 answer

Setting parent of a created qml object from C++ is not working

I have a C++ class that creates a QML object, it takes five parameters: //prototype // Q_INVOKABLE QQuickItem *createQmlObject(QObject *parent, QString path, QString id="", int x=0, int y=0); QQuickItem * QmlItemCreator::createQmlObject(QObject*…
Mido
  • 1,092
  • 1
  • 9
  • 14
-1
votes
1 answer

Adding new places to the QML map is not working

I am currently creating a program that can mark places on the map. map.qml: import QtQuick 2.10 import QtQuick.Controls 2.3 import QtLocation 5.6 import QtPositioning 5.6 Rectangle { ListModel { id: locationModel } Plugin { …
aszan
  • 15
  • 5
-1
votes
1 answer

'https' link is not loading in qwebview in qt creator

I am completely new to Qt and using Qt 5.5.1 version. I need to load an https link in my QWebview widget. But it is not loading. I tried with a different 'https' link address. Some will load, but some others will fail to get load. I googled the…
Axa Baby
  • 3
  • 2
-1
votes
1 answer

QTextEdit promoted to Construct a Console Window

I try to construct a promoted QTextEdit Console widget for my Gui in which i redirect all std::cout. For the redirection i mostly followed this tutorial: My code looks like this: myConsoleStream.cpp: #include "myconsolestream.h" …
Astraeus
  • 61
  • 9
-1
votes
2 answers

Qt Gui Application icon setup

I want to setup an icon for my qt gui application , and followed the steps listed below: 1. create an ICO file bitmap That contains the icon image. 2. Store the ICO file in app's source code directory. 3. create a text file and added these lines…
1 2 3
15
16