qtdeclarative/examples
Matthias Rauter 30c3a65b7b Fix button handling in MouseFeedbackSprite of pointerhandler example
HoverHandler does not react to button presses. Images to indicate button
presses are loaded but never shown because of this. This patch adds an
additional PointHandler which reacts to button presses.

Pick-to: 6.5
Change-Id: I60c1daef5144d7431605b0dc7dbedc0723a17fe0
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2023-04-20 22:23:16 +00:00
..
qml Doc: Revamp "Extending QML" examples into a tutorial 2023-03-30 18:02:16 +02:00
qmltest Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-09-07 17:01:30 +02:00
quick Fix button handling in MouseFeedbackSprite of pointerhandler example 2023-04-20 22:23:16 +00:00
quickcontrols Fix filesystemexplorer example to work in macOS bundles 2023-04-12 09:36:57 +02:00
CMakeLists.txt Remove "2" from Qt Quick Controls directories 2022-12-01 10:26:20 +08:00
README Doc: Revamp "Extending QML" examples into a tutorial 2023-03-30 18:02:16 +02:00
examples.pro qmake: Fix build of quickcontrols examples 2022-12-14 17:39:55 +01:00

README

The Qt Quick module provides the basic elements to specify and implement your
user interface declaratively, using the Qt Meta-Object Language (QML). The
Qt QML module provides the engine and language infrastructure for QML itself.
This language is very expressive and human readable, and can be used by
designers to actually implement their UI vision. QML UIs can integrate
with C++ code in many ways, including being loaded as a part of a C++ UI
and loading data models from C++ and interacting with them.

Most of these examples can be viewed directly with the
QML viewer utility, without requiring compilation.

Documentation for these examples can be found via the Examples and Tutorials
link in the main Qt documentation.