├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | 3 | *.slo 4 | *.lo 5 | *.o 6 | *.a 7 | *.la 8 | *.lai 9 | *.so 10 | *.dll 11 | *.dylib 12 | 13 | # Qt-es 14 | 15 | /.qmake.cache 16 | /.qmake.stash 17 | *.pro.user 18 | *.pro.user.* 19 | *.qbs.user 20 | *.qbs.user.* 21 | *.moc 22 | moc_*.cpp 23 | moc_*.h 24 | qrc_*.cpp 25 | ui_*.h 26 | Makefile* 27 | *build-* 28 | 29 | # QtCreator 30 | 31 | *.autosave 32 | 33 | # QtCtreator Qml 34 | *.qmlproject.user 35 | *.qmlproject.user.* 36 | 37 | # QtCtreator CMake 38 | CMakeLists.txt.user* 39 | 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # todo-list-tutorial 2 | This repository contains the source code for the [Using C++ Models in QML](https://www.youtube.com/watch?v=9BcAYDlpuT8) video tutorial. It is organized into several branches: 3 | 4 | https://github.com/mitchcurtis/todo-list-tutorial/branches/all 5 | 6 | If you want to start following the tutorial from a certain point in the video, check out the relevant branch: 7 | 8 | - [01:48](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=108s) - chapter-1 9 | - [04:10](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=250s) - chapter-2 10 | - [07:58](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=478s) - chapter-3 11 | - [13:06](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=786s) - chapter-4 12 | - [18:11](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=1091s) - chapter-5 13 | - [21:14](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=1274s) - chapter-6 14 | - [25:02](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=1502s) - chapter-7 15 | - [30:44](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=1844s) - chapter-8 16 | - [39:25](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=2365s) - chapter-9 17 | - [45:38](https://www.youtube.com/watch?v=9BcAYDlpuT8&t=2738s) - chapter-10 18 | 19 | The source code for the finished application can be found in the chapter-11 branch. 20 | --------------------------------------------------------------------------------