Editable columns in tree widget
-
I am designing a Gui editor for a shared memory structure that has a list of varibles. I need to design an implementation that can let me view the current values of the variables in a tree format in realtime,ie the current values of the entire shared memory segment, as well as edit the values.
Its something very similar to this: "Shared Memory Editor":http://cuauv.org/vehicles/drekar/software/visualizations
From what I make, the shared memory editor that they have come up with uses some sort of tree view. Any ideas please?
PS: I'm relatively new to Qt and Gui designing in general.!http://cuauv.org/files/Screenshot-Shared Memory Editor.png(Image)!
-
If you're new, you might find good starting points in the "Qt examples":http://qt-project.org/doc/qt-5.1/qtdoc/qtexamplesandtutorials.html#examples. They cover nearly all the "basics".
In this case I suggest the "Dir View Example":http://qt-project.org/doc/qt-5.1/qtwidgets/itemviews-dirview.html, "File System Example":http://qt-project.org/doc/qt-5.1/qtxmlpatterns/xmlpatterns-filetree.html, "QXmlStream Bookmarks Example":http://qt-project.org/doc/qt-5.1/qtxml/streambookmarks.html or maybe another "Itemview Example":http://qt-project.org/doc/qt-5.1/qtwidgets/examples-itemviews.html. Depending on where you have trouble, these might be very helpful for your first steps, or they might be mostly useless. If the latter is the case, you should consider giving more information. :)