1

This question is the exact same as this one except that I'm looking for such a widget to be used in PySide. Anyone knows some code out there that provide easy-to-reuse property editor widget?

There is the proposal of using QTreeView or QTableView to build such a widget that is an option with PySide, but this is not a straight forward solution...

Community
  • 1
  • 1
Christian O'Reilly
  • 1,864
  • 3
  • 18
  • 33
  • You can always [generate Python binding for the C++ library](http://qt-project.org/wiki/Category:LanguageBindings::PySide::Shiboken::PySide_Binding_Generation_Tutorial). This is actually not that hard if you know some C++. – uranusjr Oct 15 '13 at 03:02

1 Answers1

0

I don't know if you would be OK with this, but if you are happy to add the whole of pyqtgraph as a dependency, then you might want to try using pyqtgraph's ParameterTree.

There is a pretty comprehensive set of examples, just install pyqtgraph and then run:

import pyqtgraph.examples
pyqtgraph.examples.run()

Launch the ParameterTree example!

three_pineapples
  • 11,579
  • 5
  • 38
  • 75