Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt model/view vs standard widget

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 :

  1. User 1 say something to virtual entity B (logger application get what user 1 said and show it in table view or list view)
  2. 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

like image 547
peterphonic Avatar asked Dec 11 '22 18:12

peterphonic


1 Answers

I had simular target and simular question. I looked both solutions.

I created log file with 20 mb size. Then, I loaded him into QTableView with own model, and to QTableWidget with standard model.

QTableView was more faster (about 30 sec) than QTableWidget (about 1.5 min), but solution with QTableWidget was easer.

About you question i think, if you will have big log (many information must be loaded immediately), you should use QTableView with own model. Else more easer is use QTableWidget with standard model.

like image 194
synacker Avatar answered Dec 28 '22 08:12

synacker