https://github.com/doozyx/qt-list-model
Additional data models aimed to bring more power to QML applications by using useful C++ models in back-end.
https://github.com/doozyx/qt-list-model
qt qt5
Last synced: 3 months ago
JSON representation
Additional data models aimed to bring more power to QML applications by using useful C++ models in back-end.
- Host: GitHub
- URL: https://github.com/doozyx/qt-list-model
- Owner: DoozyX
- License: mit
- Created: 2019-09-29T14:32:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T19:34:49.000Z (over 5 years ago)
- Last Synced: 2025-02-13T12:24:48.929Z (5 months ago)
- Topics: qt, qt5
- Language: C++
- Homepage:
- Size: 98.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Qt QML Models
=============Additional data models aimed to bring more power to QML applications by using useful C++ models in back-end.
* `QQmlObjectListModel` : a much nicer way to expose C++ list to QML than the quick & dirty `QList` property . Supports all the strong model features of `QAbstractListModel` while showing the simple and well know API of QList.
* `QQmlVariantListModel` : a dead-simple way to create a dynamic C++ list of any type and expose it to QML, way better than using a `QVariantList` property.