I am currently reading model/view tutorial from Qt, but I am still not sure if I should use model/view or widget for my Qt program :
I need to do a logger application that will monitor all information in a simulation environment. Basic scenario might be :
- User 1 say something to virtual entity B (logger application get what user 1 said and show it in table view or list view)
- Virtual entity B reply something to user 1 (logger application get what user 1 said and add it in table view or list view)
etc
The needs of this logger application is to get this information in real time and also, the data collected will NOT be editable. Essentially, this is just to show logs.
So, is it worth it to use modal/view or widget is enough for what I want to do?
Thank you