Anyone know what these tree-like widgets are?
-
!http://img148.imageshack.us/img148/526/widgets.jpg(Picture)!
I know that they're both under dock widgets, that's not what I'm talking about. What are the widgets themselves? They both look like functionality I could use in my programs, so any response is appreciated...
-
They both look like QTreeViews http://developer.qt.nokia.com/doc/qt-4.7/qtreeview.html there is 2 versions one for use with Qt's MVC the other for standalone use
-
They are both tree views, I think.
The bottom one is a property editor that uses a tree view as a display, the top on is a tree view that uses a custom delegate to not render the lines connecting the items.
-
Agreed although hiding of the dotted lines that usually join the items is more likely controlled by a style option than by a delegate. I think the KDE Oxygen style offers this as an option.
-
Alright, so should I learn more about model/view programming to get the most out of QTreeView? Or is there a different way to implement a property editor and tree view together?
-
I've seen some property editors on qt-apps.org.
Just google the site and you will find some.
-
Yeah, personally, I used (and extended) YAPE. Worked nicely, I thought.
6/7