qt5base-lts/examples/widgets/itemviews
Jan Arve Sæther 4dbb07f614 Don't use file dialog in the address book example
On small screen devices such as iPhone targets, the save file dialog is
using a non-native dialog, and it doesn't fit the screen real estate to
the extent that the [Ok] button is clipped away.

In addition, the open file dialog and the save file dialog doesn't
cooperate very well on platforms such as iOS without more plumbing.
Since using the file dialog is out of the scope for this example we
remove all usages of it.

Pick-to: 6.5
Change-Id: Ie165355ed0b671d93e44d2d55791156367b0ea5c
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
2023-01-13 19:21:44 +00:00
..
addressbook Don't use file dialog in the address book example 2023-01-13 19:21:44 +00:00
basicsortfiltermodel Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
chart Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
coloreditorfactory Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
combowidgetmapper Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
customsortfiltermodel Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
dirview Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
editabletreemodel Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
fetchmore Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
flattreeview Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
frozencolumn Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
interview Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
pixelator Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
puzzle Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
simpledommodel Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
simpletreemodel Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
simplewidgetmapper Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
spinboxdelegate Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
spreadsheet Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
stardelegate Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
storageview Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
CMakeLists.txt Examples: Use Qt6:: to qualify Qt CMake packages 2022-11-17 19:59:11 +01:00
itemviews.pro Make sure we can build with -no-feature-draganddrop 2018-05-29 18:31:35 +00:00
README Moving .qdoc files under examples/widgets/doc 2012-08-20 12:20:55 +02:00

Item views are widgets that typically display data sets. Qt 4's model/view
framework lets you handle large data sets by separating the underlying data
from the way it is represented to the user, and provides support for
customized rendering through the use of delegates.


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