What is a good MV * model for a Qt application?

In a Qt application, I mean a C ++ application with a Qt GUI. I used MVP for the Android project and Winform, MVC for ASP.NET MVC, of ​​course, and MVVM for WPF / Silverlight / Javascript. But now that I need to start learning Qt, what is an MV * pattern that works well for a Qt application?

+6
source share
2 answers

You can try this MVC environment for Qt. https://github.com/lheric/libgitlmvc

+1
source

Check out this tutorial . The structure includes some base classes, and the tutorial shows how to implement MVC in Qt.

0
source

All Articles