├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── LICENSE.md ├── QQmlGadgetListModel.cpp ├── QQmlGadgetListModel.h ├── QQmlObjectListModel.cpp ├── QQmlObjectListModel.h ├── QQmlQListVariantConverter.h ├── QQmlVariantListModel.cpp ├── QQmlVariantListModel.h ├── QtQmlModels.pri ├── QtQmlModels.pro ├── QtQmlModels.qbs ├── QtQmlTricksPlugin_SmartDataModels.h └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.user* 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/LICENSE.md -------------------------------------------------------------------------------- /QQmlGadgetListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlGadgetListModel.cpp -------------------------------------------------------------------------------- /QQmlGadgetListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlGadgetListModel.h -------------------------------------------------------------------------------- /QQmlObjectListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlObjectListModel.cpp -------------------------------------------------------------------------------- /QQmlObjectListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlObjectListModel.h -------------------------------------------------------------------------------- /QQmlQListVariantConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlQListVariantConverter.h -------------------------------------------------------------------------------- /QQmlVariantListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlVariantListModel.cpp -------------------------------------------------------------------------------- /QQmlVariantListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QQmlVariantListModel.h -------------------------------------------------------------------------------- /QtQmlModels.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QtQmlModels.pri -------------------------------------------------------------------------------- /QtQmlModels.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QtQmlModels.pro -------------------------------------------------------------------------------- /QtQmlModels.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QtQmlModels.qbs -------------------------------------------------------------------------------- /QtQmlTricksPlugin_SmartDataModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/QtQmlTricksPlugin_SmartDataModels.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cavewhere/qt-qml-models/HEAD/README.md --------------------------------------------------------------------------------