Hi,

I have a class (class CTool) that I want to be represented using MVC approach.
Class CTool has three types of parameters that have to be represented on a QTreeView, Configuration, Input and Output. The parameters are stored on a single QList.

I'm thinking on creating a QDockWidget that will contain a QTabWidget(three tabs for each parameter type). Each tab have a QTreeView(I think so).

Have I to use three QTreeViews, one for each tab? Have you a better idea how to represent this data?

Thanks,