New Features in Qt 5.9

From Qt Wiki
Jump to navigation Jump to search

Note: This page is work in progress and should not be considered as final list of Qt 5.9 features before the beta release.

New Features (within existing modules)

  • Qt Core
    • Added new qfloat16 class.
    • QProcessEnvironment is now available on iOS, tvOS, watchOS, and VxWorks.
    • QRegularExpression now requires the PCRE2 library, at least version 10.20. Support for the PCRE1 library has been dropped. A copy of PCRE2 is shipped with Qt and will automatically be used on those platforms which lack it.
    • QOperatingSystemVersion is new class for providing convinient access to operating system and version
  • Qt GUI
    • QPainter's GL engine is now functional with core profile OpenGL contexts as well.
    • QImage introduced reinterpretAsFormat to change format without changing data.
    • Compute shaders are now supported in QOpenGLShader and QOpenGLShaderProgram also with OpenGL ES 3.1 and newer.
    • Platforms using Freetype now does stem-darkening and gamma-correction on OpenType fonts if FreeType supports it.
  • Qt QML
    • Add support for ahead-of-time generation of QML type caches
    • Rewritten garbage collector to provide better memory consumption and improved, more predictable performance for JavaScript code
  • Qt Quick
    • OpenGL shader program binaries used by QtGui (QPainter's GL paint engine) and the Qt Quick scenegraph are now cached on disk, improving application startup and view initialization times.
    • Added an OpenVG backend for Qt Quick.
    • Window-screen associations can now be made directly from QML via Window.screen and Qt.application.screens. This allows creating multi-screen aware applications for desktop and embedded without involving C++ code.
    • Added a way to query information about the font actually used to render a Text element.
    • Added an image provider which can share decoded image data and memory between processes.
  • Qt Quick Controls 2
    • Introduced new QML types: DelayButton, ScrollView
    • Added multi-touch support to buttons and sliders
    • Editable ComboBox
    • Non-interactive persistent Drawer
    • Live value updates (by default) for Slider, RangeSlider, and Dial
    • Sliders, dials, and scrollbars now react immediately when using a mouse. A drag threshold applies only on touch, to avoid conflicting with flickables.
    • Dedicated signals for notifying user interaction
      • AbstractButton::toggled(), Slider::moved(), SpinBox::valueModified(), ...
    • Incremental/discrete scrolling with ScrollBar
    • SwipeDelegate allows enabling/disabling the swipe, and opening programmatically
    • Vertical SwipeView
  • Qt WebEngine
    • Updated backend to Chromium 56
    • Switched internally to the new Chromium build-system GN
    • API for loading with HTTP POST
    • QQuickWebEngineProfiles can now have user-scripts and QQuickWebEngineUserScripts is now available from C++.
    • DownloadItems now get a reason when being interrupted or failing.
  • Qt SerialBus
    • Added CAN FD Bitrate Switch (BRS) and Error State Indicator (ESI) flags to QCanBusFrame
    • Added QCanBusDeviceInfo for information about available CAN interfaces
    • Added plugin to support SYS-TEC electronic CAN adapters on Windows
  • Qt Location
    • Support for map tilting
    • Support for map rotation
    • Touch gestures for rotating and tilting the map
    • Improved support for stacking multiple Map elements
    • New element MapCopyrightNotice to flexibly position the copyrights of multiple map elements on top
    • HTML copyright can now be styled using CSS
    • Support for handing the rendering of map items to the plugin
    • New "MapboxGL" plugin, based on the mapbox-gl-native mapping engine
    • New method fitViewportToVisibleMapItems to only consider visible items when fitting the viewport
    • New element MapItemGroup, to combine multiple map items in a separate qml file
    • Added a field of view property to the Map element to control the camera's field of view when the map is tilted
    • New element MapParameter, to expose and control plugin-specific functionalities at runtime
    • Lower zoom level tiles are now used to approximate higher zoom levels, until these become available
    • Applications using QtPositioning on iOS can now collect data while in background
    • One new geoservice plugin, "itemsoverlay", providing an empty map, that can be used as an overlay where to add map items without occluding what's behind.
  • Qt Multimedia
    • New QML properties:
      • CameraCapture.supportedResolutions
      • CameraFlash.supportedModes
      • MediaPlayer.notifyInterval (also for Audio and Video)
      • Video.loops
  • Qt Network
    • Added HSTS support (HTTP Strict Transport Security) to QNetworkAccessManager
    • Added redirects policy to QNetworkAccessManager (ManulRedirectsPolicy, NoLessSafeRedirectsPolicy, SameOriginRedirectsPolicy, UserVerifiedRedirectsPolicy)
  • Qt NFC
    • Allow using NFC when running as an Android service
    • Added support to communicate with ISO-DEP, NFC-A, NFC-B, NFC-F and NFC-V tags/smartcards, e.g. the German eID card, using QNearFieldTarget::sendCommand() on Android
  • Qt WebSockets
    • Added support to handle external QTcpSocket
  • Qt Charts
    • Added support for minor grid lines for logarithmic axes
    • Added options for legend marker shapes
    • Added support for more than one bar series per chart
  • Qt 3D
    • Render Qt Quick 2 scenes to a texture and interact with them within 3D world
    • Technical Preview of new animation subsystem. Non-blocking, keyframe animations on the threadpool. Export from animations from Blender.
    • Physics Based Rendering (PBR) material in Qt3DExtras. Greatly improved appearance when used with environment maps.
    • 3D text support in Qt3DExtras
    • Level of Detail component allows toggling based on projected screen size or distance. Comes with convenience loader class to load different QML files for you.
    • Mesh is now plugin based. Comes with plugins for Wavefront OBJ, PLY and FBX formats. Easy to add others.
    • Distance field based 2D textured text. Can be freely rotated but is based on planar geometry.
  • Qt Virtual Keyboard
    • Added support for selection handles for the dedicated (desktop) keyboard.
    • Changed behavior of shift handler to only activate caps lock if the shift key is double-clicked.
    • Added support for external keyboard layouts, which allows overriding and exclusion of the built-in keyboard layouts.
    • Added language selection popup for faster selection of input language.
    • Added support for automatic selection of the only remaining word in the suggestion list.
    • The word candidate list is now automatically hidden when inactive.
    • Added full screen input mode
  • Embedded platforms
    • Added experimental DRM dumb buffer support to the linuxfb platform plugin, in order to help devices that do not support the deprecated fbdev model (or have problems with fbdev emulation).
    • The evdevtouch plugin supports filtering and prediction of touch events.
  • Qt Bluetooth
    • Classic Bluetooth support for WinRT added
    • Android Peripheral support added

New Modules

  • Qt Gamepad - A module to expose gamepad controller input to C++ and QML applications on a wide variety of platforms.

Platform Changes

  • Added support for INTEGRITY real-time operating system
  • Added support for QNX version 7.0
  • Removed support for WinRT on Windows 8.1
  • Debug builds on GCC platforms now use -Og optimizations by default. Can be disabled with configure flag -no-optimize-debug.
  • Release builds can now be optimized for size (-Os on gcc/clang, -O1 MSVC). Saves 5-20% on binary size. Is off default and enabled with -optimize-size.

Technology Preview Modules

  • Qt Remote Objects - A module that allows you to easily share QObject interfaces (Signals/Slots/Properties) between processes or devices
  • Qt Network Authorization (TP2) - Provides support for OAuth1 & OAuth2
  • Qt Speech (TP2) - Continues as tech preview, issues with packaging on Linux resolved, MinGW now supported.

Deprecated Modules

The following modules are part of Qt 5.9 release, but deprecated and considered for removal in subsequent releases of Qt:

  • Qt Script

Configurations

Release Information [edit]
Qt Version Overview Tools and Versions New Features Changes Known Issues
Qt 6.7 Qt 6.7 Release Qt 6.7 Tools and Versions New Features in Qt 6.7 Qt 6.7 Known Issues
Qt 6.6 Qt 6.6 Release Qt 6.6 Tools and Versions New Features in Qt 6.6 Qt 6.6.0 Release NoteQt 6.6.1 Release NoteQt 6.6.2 Release Qt 6.6 Known Issues
Qt 6.5 Qt 6.5 Release Qt 6.5 Tools and Versions New Features in Qt 6.5 Qt 6.5.0 Release NoteQt 6.5.1 Release NoteQt 6.5.2 Release NoteQt 6.5.3 Release Note Qt 6.5 Known Issues
Qt 6.4 Qt 6.4 Release Qt 6.4 Tools and Versions New Features in Qt 6.4 Qt 6.4.0 Release NoteQt 6.4.1 Release NoteQt 6.4.2 Release NoteQt 6.4.3 Release Note Qt 6.4 Known Issues
Qt 6.3 Qt 6.3 Release Qt 6.3 Tools and Versions New Features in Qt 6.3 Qt 6.3.0 Release NoteQt 6.3.1 Release Note Qt 6.3 Known Issues
Qt 6.2 Qt 6.2 Release Qt 6.2 Tools and Versions New Features in Qt 6.2 Qt 6.2.0 Release NoteQt 6.2.1 Release NoteQt 6.2.2 Release Note Qt 6.2 Known Issues
Qt 6.1 Qt 6.1 Release Qt 6.1 Tools and Versions New Features in Qt 6.1 Qt 6.1.0 Release NoteQt 6.1.1 Release NoteQt 6.1.2 Release NoteQt 6.1.3 Release Note Qt 6.1.0 Known IssuesQt 6.1.1 Known issues in release noteQt 6.1.2 Known issues in release noteQt 6.1.3 Known issues in release note
Qt 6.0 Qt 6.0 Release Qt 6.0 Tools and Versions New Features in Qt 6.0 Qt 6.0.0 Change FilesQt 6.0.1 Release NoteQt 6.0.2 Release NoteQt 6.0.3 Release NoteQt 6.0.4 Release Note Qt 6.0.0 Known IssuesQt 6.0.1 Known IssuesQt 6.0.2 Known IssuesQt 6.0.3 Known IssuesQt 6.0.4 Known Issues
Qt 5.15 Qt 5.15 Release Qt 5.15 Tools and Versions New Features in Qt 5.15 Qt 5.15.0 Change FilesQt 5.15.1 Change FilesQt 5.15.2 Change Files Qt 5.15.0 Known IssuesQt 5.15.1 Known IssuesQt 5.15.2 Known IssuesQt 5.15.4 Known Issues
Qt 5.14 Qt 5.14 Release Qt 5.14 Tools and Versions New Features in Qt 5.14 Qt 5.14.0 Change FilesQt 5.14.1 Change FilesQt 5.14.2 Change Files Qt 5.14.0 Known IssuesQt 5.14.1 Known IssuesQt 5.14.2 Known Issues
Qt 5.13 Qt 5.13 Release Qt 5.13 Tools and Versions New Features in Qt 5.13 Qt 5.13.0 Change FilesQt 5.13.1 Change FilesQt 5.13.2 Change Files Qt 5.13.0 Known IssuesQt 5.13.1 Known IssuesQt 5.13.2 Known Issues
Qt 5.12 Qt 5.12 Release Qt 5.12 Tools and Versions New Features in Qt 5.12 Qt 5.12.0 Change FilesQt 5.12.1 Change FilesQt 5.12.2 Change FilesQt 5.12.3 Change FilesQt 5.12.4 Change FilesQt 5.12.5 Change FilesQt 5.12.6 Change FilesQt 5.12.7 Change FilesQt 5.12.8 Change FilesQt 5.12.9 Change FilesQt 5.12.10 Change FilesQt 5.12.11 Release NoteQt 5.12.12 Release Note Qt 5.12.0 Known IssuesQt 5.12.1 Known IssuesQt 5.12.2 Known IssuesQt 5.12.3 Known IssuesQt 5.12.4 Known IssuesQt 5.12.5 Known IssuesQt 5.12.6 Known IssuesQt 5.12.7 Known IssuesQt 5.12.8 Known IssuesQt 5.12.9 Known IssuesQt 5.12.10 Known IssuesQt 5.12.11 Known issues in release noteQt 5.12.12 Known issues in release note
Qt 5.11 Qt 5.11 Release Qt 5.11 Tools and Versions New Features in Qt 5.11 Qt 5.11.0Qt 5.11.1Qt 5.11.2 Change FilesQt 5.11.3 Change Files Qt 5.11.0Qt 5.11.1Qt 5.11.2 Known IssuesQt 5.11.3 Known Issues
Qt 5.10 Qt 5.10 Release Qt 5.10 Tools and Versions New Features in Qt 5.10 Qt 5.10.0Qt 5.10.1 Change Files Qt 5.10.0Qt 5.10.1 Known Issues
Qt 5.9 Qt 5.9 Release Qt 5.9 Tools and Versions New Features in Qt 5.9 Qt 5.9.0Qt 5.9.1Qt 5.9.2Qt 5.9.3Qt 5.9.4Qt 5.9.5Qt 5.9.6 Change FilesQt 5.9.7 Change FilesQt 5.9.8 Change FilesQt 5.9.9 Change Files Qt 5.9.0Qt 5.9.1Qt 5.9.2Qt 5.9.3Qt 5.9.4Qt 5.9.5Qt 5.9.6 Known IssuesQt 5.9.7 Known IssuesQt 5.9.8 Known IssuesQt 5.9.9 Known Issues
Qt 5.8 Qt 5.8 Release Qt 5.8 Tools and Versions New Features in Qt 5.8 Qt 5.8.0 Change Files Qt 5.8.0 Known Issues
Qt 5.7 Qt 5.7 Release Qt 5.7 Tools and Versions New Features in Qt 5.7 Qt 5.7.0Qt 5.7.1 Change Files Qt 5.7.0Qt 5.7.1 Known Issues
Qt 5.6 Qt 5.6 Release Qt 5.6 Tools and Versions New Features in Qt 5.6 Qt 5.6.0Qt 5.6.1Qt 5.6.2Qt 5.6.3 Change Files Qt 5.6.0Qt 5.6.1Qt 5.6.2Qt 5.6.3 Known Issues
Qt 5.5 Qt 5.5 Release Qt 5.5 Tools and Versions New Features in Qt 5.5 Qt 5.5.0Qt 5.5.1 Change Files Qt 5.5.0Qt 5.5.1 Known Issues
Qt 5.4 Qt 5.4 Release Qt 5.4 Tools and Versions New Features in Qt 5.4 Qt 5.4.0Qt 5.4.1Qt 5.4.2 Change Files Qt 5.4.0Qt 5.4.1Qt 5.4.2 Known Issues
Qt 5.3 Qt 5.3 Release Qt 5.3 Tools and Versions New Features in Qt 5.3 Qt 5.3.0Qt 5.3.1Qt 5.3.2 Change Files Qt 5.3.0 Beta 1Qt 5.3.0 RC 1
Qt 5.3.0Qt 5.3.1Qt 5.3.2 Known Issues
Qt 5.2 Qt 5.2 Release New Features in Qt 5.2 Qt 5.2.0Qt 5.2.1 Change Files Qt 5.2.0 Beta 1Qt 5.2.0 RC 1
Qt 5.2.0Qt 5.2.1 Known Issues
Qt 5.1 Qt 5.1 Release New Features in Qt 5.1 Qt 5.1.0 Change Files Qt 5.1.0 Beta 1Qt 5.1.0 RC 1
Qt 5.1.0Qt 5.1.1 Known Issues
Qt 5.0 Qt 5.0.0Qt 5.0.1 Release New Features in Qt 5.0 Qt 5.0 Changes Qt 5.0.0 Beta 1Qt 5.0.0 Beta 2Qt 5.0.0 RC 1Qt 5.0.0 RC 2
Qt 5.0.0Qt 5.0.1Qt 5.0.2 Known Issues