├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── CMakeLists.txt ├── KF6ItemModelsConfig.cmake.in ├── LICENSES ├── CC0-1.0.txt ├── LGPL-2.0-or-later.txt ├── LGPL-2.1-only.txt └── LGPL-2.1-or-later.txt ├── README.md ├── autotests ├── CMakeLists.txt ├── bihash │ ├── CMakeLists.txt │ ├── aggregrator.xls │ ├── benchmarker.py │ ├── benchmarks.cpp │ ├── functionalitytest.cpp │ └── script.py ├── dependencies.qml ├── kcolumnheadersmodeltest.cpp ├── kdescendantsproxymodel_smoketest.cpp ├── kdescendantsproxymodeltest.cpp ├── kextracolumnsproxymodeltest.cpp ├── klinkitemselectionmodeltest.cpp ├── klinkitemselectionmodeltest.h ├── kmodelindexproxymappertest.cpp ├── knumbermodeltest.cpp ├── krearrangecolumnsproxymodeltest.cpp ├── krolenames_qml.cpp ├── kselectionproxymodel_smoketest.cpp ├── kselectionproxymodeltest.cpp ├── kselectionproxymodeltestsuite.cpp ├── kselectionproxymodeltestsuite.h ├── ksortfilterproxymodel_qml.cpp ├── proxymodeltestsuite │ ├── CMakeLists.txt │ ├── dynamictreemodel.cpp │ ├── dynamictreemodel.h │ ├── eventlogger.qrc │ ├── eventloggerregister.cpp │ ├── eventloggerregister.h │ ├── grantlee_paths.h.cmake │ ├── indexfinder.h │ ├── modelcommander.cpp │ ├── modelcommander.h │ ├── modeldumper.cpp │ ├── modeldumper.h │ ├── modeleventlogger.cpp │ ├── modeleventlogger.h │ ├── modelselector.cpp │ ├── modelselector.h │ ├── modelspy.cpp │ ├── modelspy.h │ ├── modeltest.cpp │ ├── modeltest.h │ ├── persistentchangelist.h │ ├── proxymodeltest.cpp │ ├── proxymodeltest.h │ └── templates │ │ ├── datachanged.cpp │ │ ├── init.cpp │ │ ├── layoutchanged.cpp │ │ ├── main.cpp │ │ ├── modelreset.cpp │ │ ├── rowsinserted.cpp │ │ └── rowsremoved.cpp └── test_model_helpers.h ├── docs └── pics │ ├── descendantentitiesproxymodel-colfilter.png │ ├── descendantentitiesproxymodel-withansecnames.png │ ├── descendantentitiesproxymodel.png │ ├── entitytreemodel-collections.png │ ├── entitytreemodel-showroot.png │ ├── entitytreemodel-showrootwithname.png │ ├── entitytreemodel.png │ ├── kbreadcrumbselectionmodel.png │ ├── kcheckableproxymodel.png │ ├── kproxyitemselectionmodel-complex.png │ ├── kproxyitemselectionmodel-error.png │ ├── kproxyitemselectionmodel-simple.png │ ├── kproxyitemselectionmodel-solution.png │ ├── kselectionproxymodel-testapp.png │ ├── mailmodelapp.png │ ├── selectionproxymodel-ordered.png │ ├── selectionproxymodelmultipleselection-withdescendant.png │ ├── selectionproxymodelmultipleselection.png │ ├── selectionproxymodelsimpleselection.png │ ├── treeandlistapp.png │ └── treeandlistappwithdesclist.png ├── metainfo.yaml ├── src ├── CMakeLists.txt ├── core │ ├── CMakeLists.txt │ ├── kbihash_p.h │ ├── kbreadcrumbselectionmodel.cpp │ ├── kbreadcrumbselectionmodel.h │ ├── kcheckableproxymodel.cpp │ ├── kcheckableproxymodel.h │ ├── kcolumnheadersmodel.cpp │ ├── kcolumnheadersmodel.h │ ├── kdescendantsproxymodel.cpp │ ├── kdescendantsproxymodel.h │ ├── kextracolumnsproxymodel.cpp │ ├── kextracolumnsproxymodel.h │ ├── kitemmodels-index.qdoc │ ├── kitemmodels.qdoc │ ├── kitemmodels.qdocconf │ ├── klinkitemselectionmodel.cpp │ ├── klinkitemselectionmodel.h │ ├── kmodelindexproxymapper.cpp │ ├── kmodelindexproxymapper.h │ ├── knumbermodel.cpp │ ├── knumbermodel.h │ ├── krearrangecolumnsproxymodel.cpp │ ├── krearrangecolumnsproxymodel.h │ ├── kselectionproxymodel.cpp │ ├── kselectionproxymodel.h │ └── kvoidpointerfactory_p.h └── qml │ ├── CMakeLists.txt │ ├── kdescendantsproxymodel_qml.cpp │ ├── kdescendantsproxymodel_qml.h │ ├── kitemmodelsqml.qdoc │ ├── kitemmodelsqml.qdocconf │ ├── krolenames.cpp │ ├── krolenames.h │ ├── ksortfilterproxymodel.cpp │ ├── ksortfilterproxymodel.h │ └── types.h └── tests ├── CMakeLists.txt ├── proxymodeltestapp ├── CMakeLists.txt ├── breadcrumbdirectionwidget.cpp ├── breadcrumbdirectionwidget.h ├── breadcrumbnavigationwidget.cpp ├── breadcrumbnavigationwidget.h ├── breadcrumbswidget.cpp ├── breadcrumbswidget.h ├── checkablewidget.cpp ├── checkablewidget.h ├── descendantpmwidget.cpp ├── descendantpmwidget.h ├── descendantqmltree.cpp ├── descendantqmltree.h ├── dynamictreewidget.cpp ├── dynamictreewidget.h ├── kidentityproxymodelwidget.cpp ├── kidentityproxymodelwidget.h ├── kreparentingproxymodel.cpp ├── kreparentingproxymodel.h ├── lessthanwidget.cpp ├── lessthanwidget.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── matchcheckingwidget.cpp ├── matchcheckingwidget.h ├── modelcommanderwidget.cpp ├── modelcommanderwidget.h ├── proxyitemselectionwidget.cpp ├── proxyitemselectionwidget.h ├── proxymodeltestwidget.cpp ├── proxymodeltestwidget.h ├── reparenting1.png ├── reparenting2.png ├── reparenting3.png ├── reparentingpmwidget.cpp ├── reparentingpmwidget.h ├── scriptablereparentingwidget.cpp ├── scriptablereparentingwidget.h ├── selection.qml ├── selectioninqmlwidget.cpp ├── selectioninqmlwidget.h ├── selectionpmwidget.cpp ├── selectionpmwidget.h ├── statesaverwidget.cpp ├── statesaverwidget.h └── tree.qml ├── qml └── columnheaders.qml └── rearrangecolumns.cpp /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /KF6ItemModelsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/KF6ItemModelsConfig.cmake.in -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/LICENSES/LGPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/LICENSES/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/README.md -------------------------------------------------------------------------------- /autotests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/bihash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/bihash/aggregrator.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/aggregrator.xls -------------------------------------------------------------------------------- /autotests/bihash/benchmarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/benchmarker.py -------------------------------------------------------------------------------- /autotests/bihash/benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/benchmarks.cpp -------------------------------------------------------------------------------- /autotests/bihash/functionalitytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/functionalitytest.cpp -------------------------------------------------------------------------------- /autotests/bihash/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/bihash/script.py -------------------------------------------------------------------------------- /autotests/dependencies.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/dependencies.qml -------------------------------------------------------------------------------- /autotests/kcolumnheadersmodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kcolumnheadersmodeltest.cpp -------------------------------------------------------------------------------- /autotests/kdescendantsproxymodel_smoketest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kdescendantsproxymodel_smoketest.cpp -------------------------------------------------------------------------------- /autotests/kdescendantsproxymodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kdescendantsproxymodeltest.cpp -------------------------------------------------------------------------------- /autotests/kextracolumnsproxymodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kextracolumnsproxymodeltest.cpp -------------------------------------------------------------------------------- /autotests/klinkitemselectionmodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/klinkitemselectionmodeltest.cpp -------------------------------------------------------------------------------- /autotests/klinkitemselectionmodeltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/klinkitemselectionmodeltest.h -------------------------------------------------------------------------------- /autotests/kmodelindexproxymappertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kmodelindexproxymappertest.cpp -------------------------------------------------------------------------------- /autotests/knumbermodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/knumbermodeltest.cpp -------------------------------------------------------------------------------- /autotests/krearrangecolumnsproxymodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/krearrangecolumnsproxymodeltest.cpp -------------------------------------------------------------------------------- /autotests/krolenames_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/krolenames_qml.cpp -------------------------------------------------------------------------------- /autotests/kselectionproxymodel_smoketest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kselectionproxymodel_smoketest.cpp -------------------------------------------------------------------------------- /autotests/kselectionproxymodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kselectionproxymodeltest.cpp -------------------------------------------------------------------------------- /autotests/kselectionproxymodeltestsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kselectionproxymodeltestsuite.cpp -------------------------------------------------------------------------------- /autotests/kselectionproxymodeltestsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/kselectionproxymodeltestsuite.h -------------------------------------------------------------------------------- /autotests/ksortfilterproxymodel_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/ksortfilterproxymodel_qml.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/dynamictreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/dynamictreemodel.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/dynamictreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/dynamictreemodel.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/eventlogger.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/eventlogger.qrc -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/eventloggerregister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/eventloggerregister.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/eventloggerregister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/eventloggerregister.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/grantlee_paths.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/grantlee_paths.h.cmake -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/indexfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/indexfinder.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelcommander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelcommander.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelcommander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelcommander.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeldumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeldumper.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeldumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeldumper.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeleventlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeleventlogger.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeleventlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeleventlogger.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelselector.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelselector.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelspy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelspy.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modelspy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modelspy.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeltest.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/modeltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/modeltest.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/persistentchangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/persistentchangelist.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/proxymodeltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/proxymodeltest.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/proxymodeltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/proxymodeltest.h -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/datachanged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/datachanged.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/init.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/layoutchanged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/layoutchanged.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/main.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/modelreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/modelreset.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/rowsinserted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/rowsinserted.cpp -------------------------------------------------------------------------------- /autotests/proxymodeltestsuite/templates/rowsremoved.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/proxymodeltestsuite/templates/rowsremoved.cpp -------------------------------------------------------------------------------- /autotests/test_model_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/autotests/test_model_helpers.h -------------------------------------------------------------------------------- /docs/pics/descendantentitiesproxymodel-colfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/descendantentitiesproxymodel-colfilter.png -------------------------------------------------------------------------------- /docs/pics/descendantentitiesproxymodel-withansecnames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/descendantentitiesproxymodel-withansecnames.png -------------------------------------------------------------------------------- /docs/pics/descendantentitiesproxymodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/descendantentitiesproxymodel.png -------------------------------------------------------------------------------- /docs/pics/entitytreemodel-collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/entitytreemodel-collections.png -------------------------------------------------------------------------------- /docs/pics/entitytreemodel-showroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/entitytreemodel-showroot.png -------------------------------------------------------------------------------- /docs/pics/entitytreemodel-showrootwithname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/entitytreemodel-showrootwithname.png -------------------------------------------------------------------------------- /docs/pics/entitytreemodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/entitytreemodel.png -------------------------------------------------------------------------------- /docs/pics/kbreadcrumbselectionmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kbreadcrumbselectionmodel.png -------------------------------------------------------------------------------- /docs/pics/kcheckableproxymodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kcheckableproxymodel.png -------------------------------------------------------------------------------- /docs/pics/kproxyitemselectionmodel-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kproxyitemselectionmodel-complex.png -------------------------------------------------------------------------------- /docs/pics/kproxyitemselectionmodel-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kproxyitemselectionmodel-error.png -------------------------------------------------------------------------------- /docs/pics/kproxyitemselectionmodel-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kproxyitemselectionmodel-simple.png -------------------------------------------------------------------------------- /docs/pics/kproxyitemselectionmodel-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kproxyitemselectionmodel-solution.png -------------------------------------------------------------------------------- /docs/pics/kselectionproxymodel-testapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/kselectionproxymodel-testapp.png -------------------------------------------------------------------------------- /docs/pics/mailmodelapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/mailmodelapp.png -------------------------------------------------------------------------------- /docs/pics/selectionproxymodel-ordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/selectionproxymodel-ordered.png -------------------------------------------------------------------------------- /docs/pics/selectionproxymodelmultipleselection-withdescendant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/selectionproxymodelmultipleselection-withdescendant.png -------------------------------------------------------------------------------- /docs/pics/selectionproxymodelmultipleselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/selectionproxymodelmultipleselection.png -------------------------------------------------------------------------------- /docs/pics/selectionproxymodelsimpleselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/selectionproxymodelsimpleselection.png -------------------------------------------------------------------------------- /docs/pics/treeandlistapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/treeandlistapp.png -------------------------------------------------------------------------------- /docs/pics/treeandlistappwithdesclist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/docs/pics/treeandlistappwithdesclist.png -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/metainfo.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/kbihash_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kbihash_p.h -------------------------------------------------------------------------------- /src/core/kbreadcrumbselectionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kbreadcrumbselectionmodel.cpp -------------------------------------------------------------------------------- /src/core/kbreadcrumbselectionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kbreadcrumbselectionmodel.h -------------------------------------------------------------------------------- /src/core/kcheckableproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kcheckableproxymodel.cpp -------------------------------------------------------------------------------- /src/core/kcheckableproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kcheckableproxymodel.h -------------------------------------------------------------------------------- /src/core/kcolumnheadersmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kcolumnheadersmodel.cpp -------------------------------------------------------------------------------- /src/core/kcolumnheadersmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kcolumnheadersmodel.h -------------------------------------------------------------------------------- /src/core/kdescendantsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kdescendantsproxymodel.cpp -------------------------------------------------------------------------------- /src/core/kdescendantsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kdescendantsproxymodel.h -------------------------------------------------------------------------------- /src/core/kextracolumnsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kextracolumnsproxymodel.cpp -------------------------------------------------------------------------------- /src/core/kextracolumnsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kextracolumnsproxymodel.h -------------------------------------------------------------------------------- /src/core/kitemmodels-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kitemmodels-index.qdoc -------------------------------------------------------------------------------- /src/core/kitemmodels.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kitemmodels.qdoc -------------------------------------------------------------------------------- /src/core/kitemmodels.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kitemmodels.qdocconf -------------------------------------------------------------------------------- /src/core/klinkitemselectionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/klinkitemselectionmodel.cpp -------------------------------------------------------------------------------- /src/core/klinkitemselectionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/klinkitemselectionmodel.h -------------------------------------------------------------------------------- /src/core/kmodelindexproxymapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kmodelindexproxymapper.cpp -------------------------------------------------------------------------------- /src/core/kmodelindexproxymapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kmodelindexproxymapper.h -------------------------------------------------------------------------------- /src/core/knumbermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/knumbermodel.cpp -------------------------------------------------------------------------------- /src/core/knumbermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/knumbermodel.h -------------------------------------------------------------------------------- /src/core/krearrangecolumnsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/krearrangecolumnsproxymodel.cpp -------------------------------------------------------------------------------- /src/core/krearrangecolumnsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/krearrangecolumnsproxymodel.h -------------------------------------------------------------------------------- /src/core/kselectionproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kselectionproxymodel.cpp -------------------------------------------------------------------------------- /src/core/kselectionproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kselectionproxymodel.h -------------------------------------------------------------------------------- /src/core/kvoidpointerfactory_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/core/kvoidpointerfactory_p.h -------------------------------------------------------------------------------- /src/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/CMakeLists.txt -------------------------------------------------------------------------------- /src/qml/kdescendantsproxymodel_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/kdescendantsproxymodel_qml.cpp -------------------------------------------------------------------------------- /src/qml/kdescendantsproxymodel_qml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/kdescendantsproxymodel_qml.h -------------------------------------------------------------------------------- /src/qml/kitemmodelsqml.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/kitemmodelsqml.qdoc -------------------------------------------------------------------------------- /src/qml/kitemmodelsqml.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/kitemmodelsqml.qdocconf -------------------------------------------------------------------------------- /src/qml/krolenames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/krolenames.cpp -------------------------------------------------------------------------------- /src/qml/krolenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/krolenames.h -------------------------------------------------------------------------------- /src/qml/ksortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/ksortfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/qml/ksortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/ksortfilterproxymodel.h -------------------------------------------------------------------------------- /src/qml/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/src/qml/types.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/proxymodeltestapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbdirectionwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbdirectionwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbdirectionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbdirectionwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbnavigationwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbnavigationwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbnavigationwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbnavigationwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbswidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/breadcrumbswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/breadcrumbswidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/checkablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/checkablewidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/checkablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/checkablewidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/descendantpmwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/descendantpmwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/descendantpmwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/descendantpmwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/descendantqmltree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/descendantqmltree.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/descendantqmltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/descendantqmltree.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/dynamictreewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/dynamictreewidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/dynamictreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/dynamictreewidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/kidentityproxymodelwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/kidentityproxymodelwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/kidentityproxymodelwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/kidentityproxymodelwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/kreparentingproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/kreparentingproxymodel.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/kreparentingproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/kreparentingproxymodel.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/lessthanwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/lessthanwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/lessthanwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/lessthanwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/main.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/mainwindow.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/mainwindow.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/matchcheckingwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/matchcheckingwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/matchcheckingwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/matchcheckingwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/modelcommanderwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/modelcommanderwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/modelcommanderwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/modelcommanderwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/proxyitemselectionwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/proxyitemselectionwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/proxyitemselectionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/proxyitemselectionwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/proxymodeltestwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/proxymodeltestwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/proxymodeltestwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/proxymodeltestwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/reparenting1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/reparenting1.png -------------------------------------------------------------------------------- /tests/proxymodeltestapp/reparenting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/reparenting2.png -------------------------------------------------------------------------------- /tests/proxymodeltestapp/reparenting3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/reparenting3.png -------------------------------------------------------------------------------- /tests/proxymodeltestapp/reparentingpmwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/reparentingpmwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/reparentingpmwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/reparentingpmwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/scriptablereparentingwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/scriptablereparentingwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/scriptablereparentingwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/scriptablereparentingwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/selection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/selection.qml -------------------------------------------------------------------------------- /tests/proxymodeltestapp/selectioninqmlwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/selectioninqmlwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/selectioninqmlwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/selectioninqmlwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/selectionpmwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/selectionpmwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/selectionpmwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/selectionpmwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/statesaverwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/statesaverwidget.cpp -------------------------------------------------------------------------------- /tests/proxymodeltestapp/statesaverwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/statesaverwidget.h -------------------------------------------------------------------------------- /tests/proxymodeltestapp/tree.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/proxymodeltestapp/tree.qml -------------------------------------------------------------------------------- /tests/qml/columnheaders.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/qml/columnheaders.qml -------------------------------------------------------------------------------- /tests/rearrangecolumns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kitemmodels/HEAD/tests/rearrangecolumns.cpp --------------------------------------------------------------------------------