Add Qt 5.15 future features to TODO

This commit is contained in:
miruka 2020-03-09 05:55:57 -04:00
parent c618fb8ba3
commit 1f76ceb1e3

19
TODO.md
View File

@ -255,3 +255,22 @@
from an .ICO file that contains multiple icons, for example. from an .ICO file that contains multiple icons, for example.
In the future it's intended to support other multi-page formats such as In the future it's intended to support other multi-page formats such as
PDF, TIFF and WEBP. PDF, TIFF and WEBP.
### [Qt 5.15](https://wiki.qt.io/New_Features_in_Qt_5.15)
- Introduced inline components
(ability to declare multiple QML components in the same file)
- Introduced `required` properties
- Added a declarative way of registering types to QML
- Added support for the Nullish Coalescing Operator (`??`)
- Added `qmlformat` tool which automatically formats any QML file according to
the QML Coding Conventions.
- Added `cursorShape` property to pointer handlers. Most pointer handlers
(e.g. `DragHandler`) will change the cursor when the active state is true.
`HoverHandler` will change it when the mouse is hovering over the `Item` that
contains the `HoverHandler`.