5

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

peterphonic
  • 951
  • 1
  • 19
  • 38
  • 1
    I'd say go with widgets, some signals goodies and you're good to go, no need to over engineering with model/view. – MGP Jan 22 '13 at 14:51

2 Answers2

13

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.

synacker
  • 1,722
  • 13
  • 32
1

If the logs entries are not saved in a database table, go with the widgets, otherwise I would give a look at the model/view

Gianluca
  • 3,227
  • 2
  • 34
  • 35