summaryrefslogtreecommitdiffstats
path: root/tests/manual
Commit message (Collapse)AuthorAgeFilesLines
* Remove QWindowPrivate::compositingTor Arne Vestbø2024-03-071-11/+0
| | | | | | | | | | | | | | It was added for Android in a4f50269f82695fbd0dd344f87b4b355feff4333, for the case of QSurface::RasterGLSurface, but since 6.4 we no longer use QSurface::RasterGLSurface for composition. And the Android usage was removed in 2020ce5fd2478389c56f34742fdeee9cd24ca8a5. Change-Id: I8dafe959c54e09b3a974253e15d184365141d559 Reviewed-by: Axel Spoerl <[email protected]> (cherry picked from commit f517e85e906bcfb59dd11d1fb4a1bea84afb1d9a) Reviewed-by: Qt Cherry-pick Bot <[email protected]> (cherry picked from commit f9f9c648b45014f3277b79ec4098eb3d24937b80) (cherry picked from commit 17e4bd79e387842de5064d49ee86c5136f9d1c40)
* Add the new Android bluetooth permissions to the manual test appJuha Vuolle2024-01-241-1/+5
| | | | | | | | | | | | Otherwise the bluetooth permission requests fail on 12+ Android. Fixes: QTBUG-114941 Change-Id: I545299e38a7b30df840863ac880ad5bdff5fbc5e Reviewed-by: Assam Boudjelthia <[email protected]> (cherry picked from commit 30bacf78f4cd3a33dee13fa2dbdea2e745b11219) Reviewed-by: Qt Cherry-pick Bot <[email protected]> (cherry picked from commit 3ab3051100b7c7cc697fba79e4fdc7aaef76c5cf) (cherry picked from commit 974e1a9d2f0447e8f34ce28c33f4a4e99fe8b67a)
* Android: remove unneeded allowNativeHeapPointerTagging manifest flagAssam Boudjelthia2023-11-052-2/+0
| | | | | | | | | | | Amends b0907db9eae4b85fcab4fa997428c438d9443ee0. Task-number: QTBUG-91150 Change-Id: Ic7886a9fc69781e4f21417075516106ccb6c7bf5 Reviewed-by: Fabian Kosmale <[email protected]> (cherry picked from commit 028a31b50574f8e850d4c67c2892f7ed22a073bb) Reviewed-by: Qt Cherry-pick Bot <[email protected]> (cherry picked from commit 1cf9392adda61a471da6c881c1aeb11dcbc56cdf)
* Remove Custom Type Example and Custom Type Sending ExampleRym Bouabid2023-10-1214-0/+338
| | | | | | | | | | | | | | | | | | | | | | | | The whole Q_DECLARE_METATYPE part is superfluous in these two examples, as QVariant works with any type as long as it is copy-constructible. And QVariant will call the equivalent of qRegisterMetaType, so that doesn't need to happen, either. Showing how to integrate the type with qDebug is fine in theory, but also a repetition of content that can be found in other places. Given that there isn't much else being shown in these two examples, it's better to remove them from examples and move them to manual tests. Some parts of "Custom Type Example" were used as snippets in other documentations under qtbase/src/corelib. So, they were added in customtypeexample.cpp file in the snippets folder. Fixes: QTBUG-117001 Change-Id: I45b16338912e3f7394cbb5169642bd31af32d5e1 Reviewed-by: Ivan Solovev <[email protected]> (cherry picked from commit b956fec7eed57713faa5736917661280e5cec16c) Reviewed-by: Tatiana Borisova <[email protected]> (cherry picked from commit cf631ab8d29aad4633af87ce787ac7eb1e818298) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* CMake: Update the ios assets manual testAlexandru Croitor2023-10-0637-61/+275
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - provide an asset catalog .json file for both Xcode 13 and 14 formats. Apps built against the Xcode 13 SDK are not validated anymore by the App store, but it's still useful to see how things were before. - Xcode 13 required the following icon sizes for a universal iOS app: 60x60@2x, 76x76@2x\~ipad, 167x167, 1024x1024 - Xcode 14 only needs the 1024x1024 one - icons need to be embedded into the asset catalog starting with iOS 11 according to Apple docs (not sure which Xcode version, but it's needed for both Xcode 13 and Xcode 14), and they don't have to manually be copied into the bundle anymore, Xcode takes care of that when processing the asset catalog - add an 167x167 icon image for the iPad pro for Xcode 13 - add an 1024x1024 icon image that is required for successful app store submission and embed it into the asset catalogs - for Xcode 13, we need to manually specify all the required icon sizes - for Xcode 14 we can rely on Xcode to generate the smaller icons from the big one - because the icons need to live in the asset catalog folder, remove unnecessary icons in the appicons folder. - for the cmake project, make sure the asset catalog compiler generates the icons by setting the XCODE_ATTRIBUTE_ASSETCATALOG_COMPILER_APPICON_NAME attribute qmake does automatically already. it would be nice if we can do that automatically in a future Qt version - remove unused icon references in Info.plist file with Xcode 13 - remove all icon references in Info.plist with Xcode 14, rely on Xcode to add that info via its generated partial Info.plist file that gets merged into the main one. - don't include CMakeLists.txt as a text resource Amends cf3535fdf2e7fe52b36aaa4b94a53525fd6640f4 Task-number: QTBUG-104519 Task-number: QTBUG-110921 Task-number: QTBUG-116784 Change-Id: I0bc556e66647a66bc21402ea62db3374d0970e97 Reviewed-by: Amir Masoud Abdol <[email protected]> Reviewed-by: Alexey Edelev <[email protected]> (cherry picked from commit bf2587d9e5a3b25ca6dc1224a635bd8565681d2b)
* CMake: Fix incorrect UILaunchStoryboardName value in Info.plistAlexandru Croitor2023-10-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The value needs to be 'CustomLaunchScreen', not 'CustomLaunchScreen.storyboard', otherwise app store validation will fail with the following error: Asset validation failed Invalid bundle. Because your app supports Multitasking on iPad, you need to include the CustomLaunchScreen.storyboard launch storyboard file in you bundle. Use UILaunchScreen instead if the app’s MinimumOSVersion is 14 or higher and you prefer to configure the launch screen without storyboards. This brings the value in line with what we have for the qmake Info.plist file. Amends cf3535fdf2e7fe52b36aaa4b94a53525fd6640f4 Task-number: QTBUG-104519 Task-number: QTBUG-110921 Task-number: QTBUG-116784 Change-Id: I4e9cc2ed685634544955e967f35fdc426dac0f0c Reviewed-by: Amir Masoud Abdol <[email protected]> Reviewed-by: Alexey Edelev <[email protected]> (cherry picked from commit 370962315ad184a772e1813edc3c948403c7b057)
* CMake: Add CFBundleIconName key to ios assets manual testsAlexandru Croitor2023-10-062-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is required for publishing an app to the app store. Otherwise during app store validation phase, you get an error: Asset validation failed Missing Info.plist value. A value for the Info.plist key 'CFBundleIconName' is missing in the bundle 'foo'. Apps built with iOS 11 or later SDK must supply app icons in an asset catalog and must also provide a value for this Info.plist key. For more information see http://help.apple.com/xcode/mac/current/#/dev10510b1f7. Note this is not needed when using Xcode 14.3+ and when one places the icons into an asset catalog. When processing icons in the asset catalog, Xcode generates a partial Info.plist file that will contain the CFBundleIconName key and will merge into the final Info.plist file. Amends cf3535fdf2e7fe52b36aaa4b94a53525fd6640f4 Task-number: QTBUG-104519 Task-number: QTBUG-110921 Task-number: QTBUG-116784 Change-Id: I53009097cf27b096c72ee9c4bad6aa4286272061 Reviewed-by: Alexey Edelev <[email protected]> Reviewed-by: Amir Masoud Abdol <[email protected]> (cherry picked from commit 528e70b6d9333348044ecffb7bab8edfe9006538) Reviewed-by: Joerg Bornemann <[email protected]>
* Preparations to deprecate QItemDelegateChristian Ehrlicher2023-10-061-3/+3
| | | | | | | | | | | | | | | 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 Change-Id: I246755004ce2d01192a726ca0972106c237df0cc Reviewed-by: Volker Hilsheimer <[email protected]> Reviewed-by: Paul Wicking <[email protected]> (cherry picked from commit 4e8b54eb811f8c6064fd2e937711efe68543087c) Reviewed-by: Qt Cherry-pick Bot <[email protected]> (cherry picked from commit 84f032020944d7a46ee93f33e8a649c78a11c694)
* tests: port assorted trivial uses of Q_FOREACH to ranged for loopsMarc Mutz2023-08-186-19/+19
| | | | | | | | | | | | | | | | | | | | | All of these fall into the trivial category: loops over (readily made) const local containers. As such, they cannot possibly depend on the safety copy that Q_FOREACH performs, so are safe to port as-is to ranged for loops. There may be more where these came from, but these were the ones that stood out as immediately obvious when scanning the 100s of uses in qtbase, so I preferred to directly fix them over white-listing their files with QT_NO_FOREACH (which still may be necessary for some files, as this patch may not port all uses in that file). Task-nubmber: QTBUG-115839 Change-Id: I7b7893bec8254f902660dac24167113aca855029 Reviewed-by: Fabian Kosmale <[email protected]> Reviewed-by: Mårten Nordheim <[email protected]> Reviewed-by: Ivan Solovev <[email protected]> (cherry picked from commit f2f8820073488c89fb71e3eb2d2e87bb582c3995) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* embeddedintoforeignindow test: port itemwindow.h away from Q_FOREACHMarc Mutz2023-08-101-1/+2
| | | | | | | | | | | | | | | | | | As a header, it would otherwise make all TUs that include it (with PCH: all) incompatible with QT_NO_FOREACH. Without deeper analysis (which economy of time forbids in this case, given this is just a manual test that's probably run 10 times per year), and seeing as this is in an event handler, I opted to play it safe and iterate over a copy (which is exactly what Q_FOREACH does). Added a comment to indicate it may not be needed. Task-number: QTBUG-115839 Change-Id: I7db75321dd34888f6dd7a64cccb7462ff35935fa Reviewed-by: Ahmad Samir <[email protected]> Reviewed-by: Richard Moe Gustavsen <[email protected]> (cherry picked from commit cc15e42e2c14ac40339620035b77d3f82f5480d0) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* QStorageInfo manual test: port away from Q_FOREACHMarc Mutz2023-08-082-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | In main.cpp, the loop is over a local variable which would be const were it not for the multi-step initialization that I didn't want to change. The loop body clearly doesn't modify the container, so port to ranged for loop with std::as_const(). In printvolumes.cpp, the loop _does_ invoke unknown code (through the function pointer passed as the second argument), but, as could be expected, the two users of the function don't pass functions that know about `volumes`: - in the tst_QStorageInfo auto-test, an rvalue `volumes` is passed, so we don't need to analyze the qInfoPrinter function passed there, as it cannot possibly reference the temporary - and in main.cpp of the manual test, we just pass printf (which is technically UB (taking the address of a standard library function), but I don't care right now). Task-number: QTBUG-115839 Change-Id: Ibcd10a0e0b3229d8f2a1d98545d8fa6d473a0f75 Reviewed-by: Thiago Macieira <[email protected]> Reviewed-by: Ahmad Samir <[email protected]> (cherry picked from commit bb11f7a9fa576b679fc64b09abadebf90dfbe9a1) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* QSslSocket manual test: replace QList with const arrayMarc Mutz2023-08-081-8/+9
| | | | | | | | | | | | | "Never use a dynamically-sized container for statically-sized data." Port the loop from Q_FOREACH (which can't deal with arrays) to ranged for (which can). Task-number: QTBUG-115839 Change-Id: Ib89d07fb751e3905a230ee5641e2e509e9415bed Reviewed-by: Ivan Solovev <[email protected]> (cherry picked from commit ba4b88d9d2f1dd03906f445c55f8959e0165505f) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* manual repaint test: port away from Q_FOREACHMarc Mutz2023-08-081-8/+8
| | | | | | | | | | | | | | | | | The Q_FOREACH is in a header, so we need to port away from it, otherwise it makes any TU that includes it (in PCH builds: all) incompatible with QT_NO_FOREACH. This is a trivial case of marking the local constructor const, but go a step further and replace the QList with a C array ("never use a dynamically-sized container for statically-sized data"). Both consumers of the container (after s/foreach/for/) can deal with array. Task-number: QTBUG-115839 Change-Id: I142e438dcf2d785bb34022a3fb1ff46b8eaa0edd Reviewed-by: Ivan Solovev <[email protected]> (cherry picked from commit c0738f9ff00801e58f47603de5742cf330e55c13) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move qpa examples to manual testsTor Arne Vestbø2023-07-2810-0/+445
| | | | | | | Change-Id: I7b25b1c8100f04eec3d9a571f59a1babef55b1d5 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 6c96218b43667ae47364f303b566be6e0e5779fa) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move simple dom model example to manual testTor Arne Vestbø2023-07-289-0/+431
| | | | | | | Change-Id: I33120e3f6217ea52bdfdebea8b5faa79d9d3fd68 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 8937169c190246ebc85df242f85b3bda911bc5c6) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move simple widget mapper example to manual testTor Arne Vestbø2023-07-285-0/+201
| | | | | | | Change-Id: I703843b5ee935794c2e2fd0407f9a1508b088ab6 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 72a153a7f573008f071986030e73c7be6765bc88) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move pixelator example to manual testTor Arne Vestbø2023-07-2811-0/+538
| | | | | | | Change-Id: I3ce2bc269a9f77bce3dd41f0127d01091c1408f6 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 921337f98c54d3c4a252569acd2152a1dea8c4bb) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move textedit example to manual testTor Arne Vestbø2023-07-2858-0/+1381
| | | | | | | Change-Id: Ic3189044598be8e121c1f065e68e04a3547a87d0 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 81db1766dd0dc7c6f1c186688e90dc817a65a65c) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move styles example to manual testTor Arne Vestbø2023-07-2810-0/+803
| | | | | | | Change-Id: I5738932c0c498ce2075a399274e3b80a04ad9211 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 89b463ac2facc1b4fdcf3dcae612a4d8f9109b2c) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move item views puzzle example to manual testTor Arne Vestbø2023-07-2811-0/+674
| | | | | | | Change-Id: Idbb4222861be86275a86f731e75127b8496a08a7 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit a18c55e7380d123484d3cae11755337fb8b74a39) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move fridge magnets example to manual testTor Arne Vestbø2023-07-289-0/+420
| | | | | | | Change-Id: I6e40aff63f24dc98ab6b84450d288159f036142b Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 532e1c9bf674f44da2b60fbc81bf3bc921641b7b) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move fade effect example to manual testTor Arne Vestbø2023-07-288-0/+207
| | | | | | | Change-Id: I7f4e1d9b57be2d0ef22eb56d5d1f7abc5074ebae Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 9a320b037ce7b63c5f9de6fbb4e391612e857a95) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move permissions example to manual testTor Arne Vestbø2023-07-284-0/+245
| | | | | | | Change-Id: If7482ff20079d91ddba26a1abcb06b3054cc72ad Reviewed-by: Timur Pocheptsov <[email protected]> (cherry picked from commit f4a80552c2784eaa0659acd12df7a865aeb7ebec) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move plug and paint example to manual testTor Arne Vestbø2023-06-3024-0/+1304
| | | | | | | Change-Id: Ibfd870f2f879d6ae68cd6806b0c1ab02da0a3441 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 9c71b924304c2d1bd3ac3e13263b47131478562c) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move digital clock example to manual testTor Arne Vestbø2023-06-295-0/+118
| | | | | | | Change-Id: I043c0060a71d9de2f3e74aab0759d07a20880c3a Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 65e7303ec906fb64930772a06fed647f41b54391) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move dynamic layouts example to manual testTor Arne Vestbø2023-06-295-0/+251
| | | | | | | Change-Id: I34288b2b22cbbfb3b77870f0c71778bcf3d552fb Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 76ba4a04223670afdfe9dc17eee3dc0ec3659f66) Reviewed-by: Tor Arne Vestbø <[email protected]>
* Move dials example to manual testTor Arne Vestbø2023-06-296-0/+157
| | | | | | | Change-Id: Ib99a3890b814c2089db62485f0a10cf308ff9b66 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 5654fbffd588fb3362faec49b2da2e669e02fa8a) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move stylesheets example to manual testTor Arne Vestbø2023-06-2945-0/+1938
| | | | | | | Change-Id: If0206e63546bf948af4cfb65773e2662c53a5e79 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 1e954f9be898a604499c53fe639e89e8c48a4b0e) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move main window example to manual testTor Arne Vestbø2023-06-2914-0/+1890
| | | | | | | Change-Id: I7d9281f173ce9fb24c0f565797b6fbcfba10459f Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit c5ee7c8b8f214dde6f5e9c513ef3a8592cc4dd7a) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move tetrix example to manual testTor Arne Vestbø2023-06-299-0/+780
| | | | | | | Change-Id: Ie73d9e35df8513d05d55ffbad1f02584359e3bd0 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 40dbee13ebf8a8d2fdd2fe2fbd82b42ef413a8fd) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move MDI example to manual testTor Arne Vestbø2023-06-2914-0/+843
| | | | | | | Change-Id: Ide698a171a4600cb4bac6574b6be74c17f779051 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 4b79834e1a88461eb0cd8d19125130ed973651fa) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move character map example to manual testTor Arne Vestbø2023-06-297-0/+573
| | | | | | | Change-Id: Ie27fe436fc7ae7774beaa78f8a27f6009027753a Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 3a8265a4290e3405c08811e815edb8432d873a81) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move chart example to manual testTor Arne Vestbø2023-06-299-0/+845
| | | | | | | Change-Id: I95a40834853a0157d8fa6137431bfd86ce855b2f Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit e46fb69a87c46e812cc09b3f131462c99aae85d8) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move dirview example to manual testTor Arne Vestbø2023-06-293-0/+106
| | | | | | | Change-Id: I9057d5efb1cdf3e425e879f8cc96a544c1892e77 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit fc0e82f58a8fbd879fb0867334b664bd83863d8d) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move dock widgets example to manual testTor Arne Vestbø2023-06-2910-0/+437
| | | | | | | Change-Id: I23ca3f2450df8f6c71509235ccec655d88d0d6d7 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 2a65849e10e5288d0aa61d293f3fb80d4056bc37) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move calendar example to manual testTor Arne Vestbø2023-06-295-0/+277
| | | | | | | Change-Id: Ie2215ae0feeb322888619aed632e20db9b69e20b Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 288c7ef5570f2badf5781a744ab2ba2d6f18b183) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move embedded dialogs example to manual testTor Arne Vestbø2023-06-2910-0/+478
| | | | | | | Change-Id: I86213aa47def7ebacaa9465a0200cef10871706e Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 7b4b5c839ba7e7a05a339533d37f0d97a26bad18) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move drag and drop puzzle example to manual testTor Arne Vestbø2023-06-2911-0/+584
| | | | | | | Change-Id: I859cdb2cf74cd6272c29924c77dab26b4f4c0b6c Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit cefb1c9ca9af73999247678907c496c1a143d00f) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move validators example to manual testTor Arne Vestbø2023-06-2913-0/+777
| | | | | | | Change-Id: Ic91bc89422fb23e3782db69bab2953e7cf8ddf69 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit e00d8aa6a83d52b71e3ab2abdb45eafadf65e5f3) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move pinch zoom example to manual testTor Arne Vestbø2023-06-2911-0/+389
| | | | | | | Change-Id: I0632a839ef069e13a8b859a22f47be2e7423ffb0 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit c7702638f33b78c39981504574db5021e1d7c383) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move movie example to manual testTor Arne Vestbø2023-06-296-0/+303
| | | | | | | Change-Id: Ie185a3c88eced7b8b0fe324b9ef62ab86d38d521 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit ec01f6ae8b28f6b5cdb125e8e42e18b96f2a97a6) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move interview example to manual testTor Arne Vestbø2023-06-2910-0/+294
| | | | | | | Change-Id: I06c77672c3ca08dfd3e50af25ed3e1669462259a Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 645e011d7ddaf8660951d28577010d83eb9ede05) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move image viewer example to manual testTor Arne Vestbø2023-06-295-0/+516
| | | | | | | Change-Id: I4b64033f1a075681ce5b918fdf2e018ad05a7869 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit b8f588bea74aae0a890e1af18b936b0bfbf8c237) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move windowcontainer example to manual testTor Arne Vestbø2023-06-293-0/+187
| | | | | | | Change-Id: I68b866bcc2659b90aad2c10dc06240674bf4a826 Reviewed-by: Richard Moe Gustavsen <[email protected]> (cherry picked from commit cd7995de57321854b1da01e07ba49e82520abfe3) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move font sampler example to manual testTor Arne Vestbø2023-06-286-0/+581
| | | | | | | Change-Id: I696d9be26edfaadd40579884930b2f061d308a06 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 917282ea53626e4be45c6bb19682776b250948ba) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move graphis view flow layout example to manual testTor Arne Vestbø2023-06-287-0/+326
| | | | | | | Change-Id: I713816114b87def9eab79b893d13554f1c37c6a5 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 95595d68bee7ef9e58100e4230f71d7f065eacb7) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move icons example to manual testTor Arne Vestbø2023-06-2825-0/+977
| | | | | | | Change-Id: I08f44448f96a61f780c21d628954879c7b28dce3 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit c3fd8e911ea361df7f1e6fe971f8835d2093db7c) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move finger paint example to manual testTor Arne Vestbø2023-06-288-0/+554
| | | | | | | Change-Id: I26eec035eaa78eac2aa96de72ae38093bc08fd23 Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 0b6f5ae131af140088fbc5e770779f9cf8fdbd7f) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Make android_content_uri directly openable in CreatorVille Voutilainen2023-06-281-0/+6
| | | | | | | | Task-number: QTBUG-93020 Change-Id: I008c8b3a39b5f347828e387a19be8823653f69c9 Reviewed-by: Assam Boudjelthia <[email protected]> (cherry picked from commit 779e4cc0b0ed5c3f6958dc4a856277e6c908f8f9) Reviewed-by: Qt Cherry-pick Bot <[email protected]>
* Move border layout example to manual testTor Arne Vestbø2023-06-277-0/+339
| | | | | | | Change-Id: I3f45043a64275f8678288e1d9839271eafa1fd2b Reviewed-by: Volker Hilsheimer <[email protected]> (cherry picked from commit 42b58f8cb41790169eb2ebcd215cf2696dcecbe7) Reviewed-by: Qt Cherry-pick Bot <[email protected]>