The screen shot has been attached.
There is a kind of tree shaped widget in which you can fill in details, I wish to know its name.
Do QTreeWidget or QTreeView do the trick?
Do we have such a widget in Qt (in which text can be entered at run time
)?
The
QTreWidgetis used when you want to display a simple tree with standard items.The
QTreeViewis used when you have more complex models and gives you more flexibilityI believe (I have not checked the corresponding code) that in the Gnome planner what you see is can be implemented
QTreeViewwith customQAbstractItemDelegate. Notice though but most Gnome applications useGTKand notQt.You should study the Qt Model/View Programming. It may has a steep learning curve but once you get familiar with it you can implement almost everything.