qtdeclarative/examples
Shawn Rutledge 08c01f6259 Avoid crashing in the quickwidgets example after closing the subwindow
Closing the window deletes m_quickWidget; so we disable the menu items
for grabbing from it, because those cannot work. Also add asserts.

Fixes: QTBUG-120296
Pick-to: 6.5 6.2 5.15
Change-Id: I68154c2d1e4553c771815e29cbe3b095d85893f1
Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
(cherry picked from commit f719ee6408)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit a49d309b4a)
2024-01-07 03:28:15 +00:00
..
core/permissions Android: Add missing manifest for permissions example 2023-06-05 20:02:08 +00:00
qml Examples: Fix qmake version of qml-i18n example 2023-10-26 20:09:50 +00:00
qmlcompiler/tutorials/helloworld QQmlSA: Add initial fixit section 2023-11-28 11:33:33 +00:00
qmltest Clean up the examples/qmltest/CMakeLists.txt 2023-06-23 12:48:06 +00:00
quick Avoid crashing in the quickwidgets example after closing the subwindow 2024-01-07 03:28:15 +00:00
quickcontrols Improve contactlist example 2023-12-18 13:54:19 +00:00
CMakeLists.txt Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02: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.