├── .gitignore ├── LICENSE ├── Model.pri ├── ModelDataAdapter.h ├── README.md ├── TableModel.h ├── TreeModel.cpp ├── TreeModel.h ├── TreeModelCustomItem.h ├── TreeModelItem.cpp ├── TreeModelItem.h ├── TreeModelStandardItem.cpp ├── TreeModelStandardItem.h ├── VariadicTypedef.h ├── function_traits.h └── sample ├── Widget.cpp ├── Widget.h ├── main.cpp └── sample.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Model.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/Model.pri -------------------------------------------------------------------------------- /ModelDataAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/ModelDataAdapter.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/README.md -------------------------------------------------------------------------------- /TableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TableModel.h -------------------------------------------------------------------------------- /TreeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModel.cpp -------------------------------------------------------------------------------- /TreeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModel.h -------------------------------------------------------------------------------- /TreeModelCustomItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModelCustomItem.h -------------------------------------------------------------------------------- /TreeModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModelItem.cpp -------------------------------------------------------------------------------- /TreeModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModelItem.h -------------------------------------------------------------------------------- /TreeModelStandardItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModelStandardItem.cpp -------------------------------------------------------------------------------- /TreeModelStandardItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/TreeModelStandardItem.h -------------------------------------------------------------------------------- /VariadicTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/VariadicTypedef.h -------------------------------------------------------------------------------- /function_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/function_traits.h -------------------------------------------------------------------------------- /sample/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/sample/Widget.cpp -------------------------------------------------------------------------------- /sample/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/sample/Widget.h -------------------------------------------------------------------------------- /sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/sample/main.cpp -------------------------------------------------------------------------------- /sample/sample.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narizhny/qt-mvc-templates/HEAD/sample/sample.pro --------------------------------------------------------------------------------