├── .gitignore ├── LICENSE ├── QmlModelHelper.pri ├── README.md ├── modelhelper.cpp ├── modelhelper.h └── tests ├── QmlModelHelper.pro ├── tst_count.qml ├── tst_map.qml ├── tst_qmlmodelhelper.cpp └── tst_roles.qml /.gitignore: -------------------------------------------------------------------------------- 1 | build-QmlModelHelper-* 2 | *.qmlc 3 | *.pro.user 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/LICENSE -------------------------------------------------------------------------------- /QmlModelHelper.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/QmlModelHelper.pri -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/README.md -------------------------------------------------------------------------------- /modelhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/modelhelper.cpp -------------------------------------------------------------------------------- /modelhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/modelhelper.h -------------------------------------------------------------------------------- /tests/QmlModelHelper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/tests/QmlModelHelper.pro -------------------------------------------------------------------------------- /tests/tst_count.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/tests/tst_count.qml -------------------------------------------------------------------------------- /tests/tst_map.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/tests/tst_map.qml -------------------------------------------------------------------------------- /tests/tst_qmlmodelhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/tests/tst_qmlmodelhelper.cpp -------------------------------------------------------------------------------- /tests/tst_roles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oKcerG/QmlModelHelper/HEAD/tests/tst_roles.qml --------------------------------------------------------------------------------