On Fri Apr 18 08:29:23 BST 2008, Aaron Digulla wrote:
> Quoting David Boddie :
>
> > You could port the C++ Editable Tree Model example from the Qt package,
> > but that might not be dynamic enough for your purposes.
> >
> > Another example of the model/view classes in Python is the PyPI Browser
>
Quoting David Boddie <[EMAIL PROTECTED]>:
You could port the C++ Editable Tree Model example from the Qt package,
but that might not be dynamic enough for your purposes.
Another example of the model/view classes in Python is the PyPI Browser
application I started writing almost two years ago(!)
On Thu, 17 Apr 2008 15:50:35 +0200, Aaron Digulla wrote:
> Does someone have a more complex tree model example than
> simpletreemodel from PyQt4? Especially one which does change the model
> instead of displaying a static datasource?
You could port the C++ Editable Tree Model example from the
Hello,
I'm trying to implement a tree model which displays a complex
tree-like structure. The structure has no idea of the tree model and
I'd like to keep it that way. When the structure changes (elements
added, modified or removed), they send signals so I can update the
tree model.
Thi