summaryrefslogtreecommitdiffstats
path: root/examples/widgets
Commit message (Collapse)AuthorAgeFilesLines
* Use the unique resource identifier in editabletreemodel exampleAlexey Edelev2024-02-141-1/+1
| | | | | | | | | Fixes: QTBUG-122210 Change-Id: I86200961384de6fd57f5c140120461faada4fb4d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit 3f312908804ff8871d60b9227e057362d02b34ca) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 36086ba3ca972fcb3c3187a137a1e3fb0097db7c)
* Minor updates to the "Touch Knobs" exampleVolker Hilsheimer2023-12-212-0/+1
| | | | | | | | | | | | | | Turn on anti-aliasing, and update screenshot. The example is still not great and under-documented, but at least it doesn't look horrible anymore. Task-number: QTBUG-120291 Change-Id: Ie709cb51d64c535d7cd0aa1451b3c5bb901324cb Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> (cherry picked from commit 2b9d021ba5487f7f5f67b958a17160c4cf468561) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit d8b113f46f11dd6d7229df0cb58f56dccfc70eb5)
* Examples: Add Qt6::Gui editabletreemodel and simpletreemodel testsAssam Boudjelthia2023-12-202-0/+12
| | | | | | | | | | | | Android needs the Gui dependency. Amends 283cdcd3d5fad368c9df1bcae69cbfbf9ade623f. Fixes: QTBUG-120257 Change-Id: Id02b03b9fa08546bc5a126b3e71e67bdd65f8b66 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 4d7ac732557f397cc24c47bc5469db60a0c2a2cc) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit c27163cd7dd1533b16cb88028b2018490d1e2f2c)
* Update Sliders exampleVolker Hilsheimer2023-12-195-136/+97
| | | | | | | | | | | | | | | | | | | Simplify the "responsive layout" implementation. Just use a QBoxLayout with changing direction instead of repopulating a QGridLayout, and change the orientation of one set of sliders instead of creating two sets in a stacked layout. Simplify the resizeEvent() implementation accordingly. Update the documentation snippet text to match the code, and document the resizeEvent() override. Fixes: QTBUG-119977 Change-Id: I73a1bb215c956fa283291ebf0ea45ff9a975c727 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> (cherry picked from commit f3fb89ba298e1741320d8bfac9cbd0d503373bff) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 2d3ee8ac34bdf30ffc14054a8aeb64ba292bb96e)
* Examples: fix touch handling in painting examplesVolker Hilsheimer2023-12-161-3/+6
| | | | | | | | | | | | | | | | | | | | | | | On macOS, we don't deliver a press event for the first press on the track pad (Qt::WA_TouchPadAcceptSingleTouchEvents is not set by default, so Qt doesn't deliver a single-press on the track pad as a touch event - that makes some sense or at least maintains compatibility). Because of that, point 0 is never added to the finger-mapping hash. When point 0 is then released, we didn't check if we found a valid iterator for that point ID, and the example crashed. Fix this by checking that we have a valid iterator before dereferencing, and by handling Stationary events in the same way as pressed (add the point to the mapping if it's not already there). Pick-to: 6.5 Fixes: QTBUG-110266 Change-Id: I32337b801aaabf9b821a97ddc15ad78747b5e6a2 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io> (cherry picked from commit 9d8473cdf63537dee65e9c235249b4e4901baa1a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 7378c709f527749493bc15e66a566e1bdfc09fd3)
* Turn the "concentriccircles" example into snippets, update screenshotVolker Hilsheimer2023-12-1510-484/+0
| | | | | | | | | | | | | | | The example has a lot of code and documentation, but in essence shows how to use float-based QPainter APIs and how to set a render hint. That is two lines of code, which we can show as snippets. Update the screenshot of the example with a higher-resolution version. Fixes: QTBUG-119983 Change-Id: Iafcb813dff6ab8c269176f7994c95947ebf5e559 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io> (cherry picked from commit 33254fb41f29b510d3d74dbaab60f0a67ef56d46) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 6c726979f744e85dc1284374ef1663a85647365e)
* examples: Update content of "draggabletext"Audun Sutterud2023-12-141-35/+29
| | | | | | | | | | | Qt Quarterly was shut down long ago. Fixes: QTBUG-119982 Change-Id: I910b03ab11bf9aa728cc23d736a6f13902b6fcfe Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 8d0d520cd313a653226f734ef819021f83e66721) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit e978d4046a424585f9f4dcd2595b36b980a1b26f)
* EditableTreeModel: Add a testFriedemann Kleint2023-12-093-1/+79
| | | | | | | | | Add a test running QAbstractItemModelTester on the model. Change-Id: I40c141c7e754ca05234da611534bd65e456be2fb Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 283cdcd3d5fad368c9df1bcae69cbfbf9ade623f) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* EditableTreeModel: Polish TreeModel::setupModelData()Friedemann Kleint2023-12-092-34/+25
| | | | | | | | | | | | - Use QStringView. - Use a list of a pair-like struct to represent the state instead of 2 lists. - Use qsizetype. - Use constLast() to avoid detaching. Change-Id: I5ff8a17a4d583a7d2a0a11a52c29b9117280382c Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 5134b3ad54743e3a997ff27af112df79821e5ce1)
* SimpleTreeModel: Add a testFriedemann Kleint2023-12-093-1/+78
| | | | | | | | | Add a test running QAbstractItemModelTester on the model. Change-Id: I6ea5d34308357409b9a13eb0271392c8d171addd Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit d9c71b834ccd815b85e9589f21eba1f51c48614a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Polish the EditableTreeModel exampleFriedemann Kleint2023-12-086-44/+41
| | | | | | | | | | | | | | | - Fix/silence most clang-tidy/compiler warnings * unsigned/int comparison * Avoid repeating return / default parameter types * Use auto * for pointers * Streamline code, use ternary operators * Move constructor parameters * Observe rule of 5 by using Q_DISABLE_COPY_MOVE - Add some bells && whistles, resize properly, expand all Change-Id: I1721458ff66dcba123ff3a2cf50e7d15387a4e8b Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit d50b56b47544ad2b72811045f64df24eaaf0cf59)
* examples/: fix compiler (GCC) warnings -Wsign-compareAhmad Samir2023-12-081-3/+3
| | | | | | | Change-Id: Ie4965e3ce3113e9c7a5d5d5eba4cab143ef1c806 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> (cherry picked from commit 0b3390f33d4f995273289ccc49ce235619c2903d) Reviewed-by: Kai Köhne <kai.koehne@qt.io>
* Modernize EditableTreeModelCarl Schwan2023-12-085-81/+79
| | | | | | | | | | | | - Use unique_ptr instead of manual memory management - Improve consistenty in variable name with the simpletreemodel childrenNumber -> row, m_ prefix for member variables Change-Id: Iface30c2224c2b1db7c623a9e6fcbb449c556f3e Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 604b2feca751c5eb43b20e180c175acc2a87099e) Reviewed-by: <carl@carlschwan.eu> Reviewed-by: Kai Köhne <kai.koehne@qt.io>
* SimpleTreeModel: Polish TreeModel::setupModelData()Friedemann Kleint2023-12-072-34/+26
| | | | | | | | | | | | | | - Use QStringView. - Use a list of a pair-like struct to represent the state instead of 2 lists. - Use qsizetype. - Use constLast() to avoid detaching. Change-Id: Icc3586451f081f6166fece52675d5379160f51da Reviewed-by: Kai Köhne <kai.koehne@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> (cherry picked from commit 1c06f86d255d3d92201b1092794a4c1ea403c24d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Polish the SimpleTreeModel exampleFriedemann Kleint2023-12-076-61/+52
| | | | | | | | | | | | | | | | | | | | - Fix/silence most clang-tidy/compiler warnings * unsigned/int comparison * Avoid repeating return / default parameter types * Make functions static/use static invocations * Use string literals everywhere * Use auto * for pointers * Streamline code, use ternary operators * Move constructor parameters * Observe rule of 5 by using Q_DISABLE_COPY_MOVE - Add some bells && whistles, resize properly, expand all Complements 25027444a9b53d61a6257dc5f5ce0ffdb3b06f98. Change-Id: I78f48d187981ecabf69a5d4d42715bad026fa9e6 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit a3e20df03d522bd1b07ac7a85578401f36f290b9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc: PainterPaths-Graphic&Multimedia-Example typo in the documentationJaishree Vyas2023-12-011-7/+4
| | | | | | | | | | Changed the brief and some grammatical errors. Fixes: QTBUG-119602 Change-Id: Ib64abeb735899b0ae1cee64709ad3d7f8f440d9e Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> (cherry picked from commit 1202594db6b8b5ec801989d06004c39b725a67a0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Refurbish the shaped clock exampleMatthias Rauter2023-11-171-21/+34
| | | | | | | | | | | | | The shaped clock example has the appearance of the analog clock, which was refurbished with 619ec1a6406a8be7bfa9d96b9e693e7a3323d8dc. This change applies the refurbished design to the shaped clock. Task: QTBUG-118871 Change-Id: Ibcfc8e9fb239a1c6f7ea685f6cab1e50b2060a53 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit f6e7fdd4ad868e5d17ffa7502ed934985df938a6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Refurbish the clock exampleMatthias Rauter2023-11-163-63/+91
| | | | | | | | Fixes: QTBUG-118871 Change-Id: I0a1a6444cb381d49adbc39e73d7862c9cfe61dce Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 619ec1a6406a8be7bfa9d96b9e693e7a3323d8dc) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Modernize SimpleTreeModel exampleCarl Schwan2023-11-165-61/+59
| | | | | | | | | Use std::unique_ptr to manage items tree memory allocations. This also use the new string literals operator. Change-Id: Iab002b5dc612b75cef0be10862e263c6c6c013c1 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 25027444a9b53d61a6257dc5f5ce0ffdb3b06f98)
* Convert tooltips example to snippetsVolker Hilsheimer2023-10-2714-903/+0
| | | | | | | | | | The important bits from the example are ~10 lines of code, no need for building a poor-man's version of a graphics or item view. Change-Id: I7874c66765c5b46230c92846ee3de1ee83f47e45 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit ae39b1634556f82fe5d7505ed9b6ebb883d6f813) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* standarddialogs: Don't assume QMessageBox::exec() returns clicked roleTor Arne Vestbø2023-10-241-5/+7
| | | | | | | | | | | | | When adding custom buttons to a QMessageBox the return value of exec() as well as result() is not a StandardButton value, but instead an opaque value, and the documentation says to use clickedButton() to determine which button was clicked. Pick-to: 6.5 Change-Id: Ib47a218989b4dcb5d51f648bc55bc02399bae602 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit 1fd1ffd03d6889273f574c698e07c611bd311fd9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Preparations to deprecate QItemDelegateChristian Ehrlicher2023-10-062-10/+10
| | | | | | | | | | | | | | | QItemDelegate was superseded since Qt4 by QStyledItemDelegate but it took until Qt6.7 to remove the last occurrences in qtbase. - remove unused includes / replace with qabstractitemdelegate.h - replace references in the documentation with QStyledItemDelegate - adjust the examples and tests to use QStyledItemDelegate Pick-to: 6.5 Change-Id: I246755004ce2d01192a726ca0972106c237df0cc Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit 4e8b54eb811f8c6064fd2e937711efe68543087c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move Calendar Widget Example to UI Components categoryKai Köhne2023-09-271-1/+1
| | | | | | | | Pick-to: 6.6.0 6.5 Change-Id: Iafa05fbfde41dbbf7ddffd667983db9cc1c6e184 Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io> (cherry picked from commit 9de4133da29460b0f1fd13bc3ecd2483dc5ea04a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc: Fix typo in examplecategory commandAndreas Eliasson2023-09-261-1/+1
| | | | | | | | | | | This resolves (qdoc) warning: Unknown command '\examplecateogry' Pick-to: 6.5 Change-Id: I52c417bde49ce52089da485d6144f64d636f5a3b Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io> (cherry picked from commit c3171938c3e2426ca3391a7e7f531836e7a08383) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc fix: Use correct initials for Porter and DuffPaul Olav Tvete2023-09-121-1/+1
| | | | | | | | | It's Thomas Porter and Tom Duff, not Xavier and Yoann. Change-Id: I2e9345c06c299e9c0475831e21c3b9b85c58a32f Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> (cherry picked from commit 631cb589bf53223648376c72d588a7914e463924) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc: Add example categories to Qt Widget examplesMats Honkamaa2023-09-0667-8/+75
| | | | | | | | | | Added example categories and fixed some minor typos as well. Task-number: QTBUG-116359 Change-Id: I2e270a1919003f4cea233666b64437e4c2b77121 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 7ef93cbf6883af053b1bdf042975b11a39f0312b) Reviewed-by: Kai Köhne <kai.koehne@qt.io>
* Image Gestures Example: use QFileInfo for images file namesAssam Boudjelthia2023-09-012-9/+18
| | | | | | | | | | | | | | | | | | | | The example keeps around image file names only and append them to the selected dir path, that works fine for file scheme files, but for Android with content scheme files, that doesn't work as good because usually the paths are returned by a provider and managing them manually like appending a file name to a directory (tree) path might not work. This patch retrieves QFileInfo objects and use the absolute file paths to open any image. Fixes: QTBUG-116181 Change-Id: I9911a181d92ba0452500398cbe052b9583bd79a0 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> (cherry picked from commit 381612f7944b202c8b1428f0cc9d1af72f5f7647) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Fix the project nameAmir Masoud Abdol2023-07-311-1/+1
| | | | | | | | Fixes: QTBUG-115327 Change-Id: I77fc3a98d1658609caa9618430f6e6823b8e1bb5 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> (cherry picked from commit 95ed8d1fd9ccc5270b825550085c3a3df2830d5c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move simple widget mapper example to manual testTor Arne Vestbø2023-07-289-314/+2
| | | | | | | Change-Id: I703843b5ee935794c2e2fd0407f9a1508b088ab6 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 72a153a7f573008f071986030e73c7be6765bc88) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move dials example to manual testTor Arne Vestbø2023-07-288-159/+1
| | | | | | | Change-Id: Ib99a3890b814c2089db62485f0a10cf308ff9b66 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 5654fbffd588fb3362faec49b2da2e669e02fa8a) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move textedit example to manual testTor Arne Vestbø2023-07-2862-1399/+1
| | | | | | | Change-Id: Ic3189044598be8e121c1f065e68e04a3547a87d0 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 81db1766dd0dc7c6f1c186688e90dc817a65a65c) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move main window example to manual testTor Arne Vestbø2023-07-2818-1906/+1
| | | | | | | Change-Id: I7d9281f173ce9fb24c0f565797b6fbcfba10459f Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit c5ee7c8b8f214dde6f5e9c513ef3a8592cc4dd7a) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move fade effect example to manual testTor Arne Vestbø2023-07-2815-231/+0
| | | | | | | Change-Id: I7f4e1d9b57be2d0ef22eb56d5d1f7abc5074ebae Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 9a320b037ce7b63c5f9de6fbb4e391612e857a95) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move MDI example to manual testTor Arne Vestbø2023-07-2818-863/+0
| | | | | | | Change-Id: Ide698a171a4600cb4bac6574b6be74c17f779051 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 4b79834e1a88461eb0cd8d19125130ed973651fa) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Examples: "About &Qt" should show info about Qt, not quitEdward Welbourne2023-07-131-1/+1
| | | | | | | | | | | | A few examples seem to have copied and pasted a help action "About &Qt" that triggered QCoreApplication::quit. This does not look like best practice. Use QApplication::aboutQt instead. Task-number: QTBUG-111228 Change-Id: I1887a3c999d752a24c7c4d3cabc4a5d63b29b966 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 3ccf2f8308ba33cab575c22ad2e246b987a3dc0c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc: Update example category namesKai Köhne2023-07-101-1/+1
| | | | | | | Change-Id: If4a50c403ed0fb299ac0d9a66f1f606151c55930 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> (cherry picked from commit 60f706063aebee22f7fc1bb80f0003afb50fe73e) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Doc: Fix license of foreignwindows exampleKai Köhne2023-07-073-3/+3
| | | | | | | | | | Example source code should be LicenseRef-Qt-Commercial OR BSD-3-Clause Change-Id: Ia9cf6f4783fde0e25f72a31bbe6d809118fd4240 Reviewed-by: James McDonnell <jmcdonnell@blackberry.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit 3040eadd832b8dadaae04660047fdcd42519b0a2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Remove references to Application ExampleAxel Spoerl2023-07-071-1/+0
| | | | | | | | | Removing dangling references to the example due to its move to manual tests. Change-Id: I13f5fad93763d1ef70ddd8b3dcf430b5df8e28f9 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit d2db1d511ddbc4d676bcd93881e17e42edd37b84)
* Move simple dom model example to manual testTor Arne Vestbø2023-06-3012-693/+0
| | | | | | | Change-Id: I33120e3f6217ea52bdfdebea8b5faa79d9d3fd68 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 8937169c190246ebc85df242f85b3bda911bc5c6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move pixelator example to manual testTor Arne Vestbø2023-06-3014-771/+0
| | | | | | | Change-Id: I3ce2bc269a9f77bce3dd41f0127d01091c1408f6 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 921337f98c54d3c4a252569acd2152a1dea8c4bb) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move plug and paint example to manual testTor Arne Vestbø2023-06-3031-1843/+2
| | | | | | | Change-Id: Ibfd870f2f879d6ae68cd6806b0c1ab02da0a3441 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 9c71b924304c2d1bd3ac3e13263b47131478562c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move interview example to manual testTor Arne Vestbø2023-06-2913-311/+0
| | | | | | | Change-Id: I06c77672c3ca08dfd3e50af25ed3e1669462259a Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 645e011d7ddaf8660951d28577010d83eb9ede05) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move validators example to manual testTor Arne Vestbø2023-06-2916-790/+0
| | | | | | | Change-Id: Ic91bc89422fb23e3782db69bab2953e7cf8ddf69 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit e00d8aa6a83d52b71e3ab2abdb45eafadf65e5f3) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move pinch zoom example to manual testTor Arne Vestbø2023-06-2913-391/+1
| | | | | | | Change-Id: I0632a839ef069e13a8b859a22f47be2e7423ffb0 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit c7702638f33b78c39981504574db5021e1d7c383) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move movie example to manual testTor Arne Vestbø2023-06-299-323/+0
| | | | | | | Change-Id: Ie185a3c88eced7b8b0fe324b9ef62ab86d38d521 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit ec01f6ae8b28f6b5cdb125e8e42e18b96f2a97a6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move image viewer example to manual testTor Arne Vestbø2023-06-2913-838/+0
| | | | | | | Change-Id: I4b64033f1a075681ce5b918fdf2e018ad05a7869 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit b8f588bea74aae0a890e1af18b936b0bfbf8c237) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Fix missing references to 'Qt Widgets - Application Example'Tor Arne Vestbø2023-06-292-5/+1
| | | | | | | | | Amends eda71105ff9a516059c6dd6643ff446a82edac81 Change-Id: I44fa9acef37667d635d5770ce5d50fc52d92aa88 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io> (cherry picked from commit 35063254fdba9704fd1411e9bd5ba7984c303e93) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Move dynamic layouts example to manual testTor Arne Vestbø2023-06-298-344/+0
| | | | | | | Change-Id: I34288b2b22cbbfb3b77870f0c71778bcf3d552fb Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 76ba4a04223670afdfe9dc17eee3dc0ec3659f66) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move digital clock example to manual testTor Arne Vestbø2023-06-298-171/+0
| | | | | | | Change-Id: I043c0060a71d9de2f3e74aab0759d07a20880c3a Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 65e7303ec906fb64930772a06fed647f41b54391) Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* Move styles example to manual testTor Arne Vestbø2023-06-2913-1253/+0
| | | | | | | Change-Id: I5738932c0c498ce2075a399274e3b80a04ad9211 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 89b463ac2facc1b4fdcf3dcae612a4d8f9109b2c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>