[PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread James Polk
Greetings All, In a typical QTreeView,...the default behaviour of clicking on a plus box, i.e. the branch boxes of the tree, yields a single box open, or in the case of collapsing, a single box closed event. Is there any way to use a keyboard modifier, like SHIFT, CTRL, and/or ALT, to expand or

Re: [PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread James Polk
Whoops,...just found the *-hotkey,nevermind, lol... --- On Tue, 4/19/11, James Polk jpolk5...@yahoo.com wrote: From: James Polk jpolk5...@yahoo.com Subject: Question on QTreeView, interactive expanding/collapsing To: pyqt@riverbankcomputing.com Date: Tuesday, April 19, 2011, 2:09 PM

Re: [PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread Zoltan Szalai
The * key expands all children but you can easily implement your own expand / collapse subtree functionality. bests Zoli On 2011.04.19. 23:09, James Polk wrote: Greetings All, In a typical QTreeView,...the default behaviour of clicking on a plus box, i.e. the branch boxes of the tree,

Re: [PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread Paul Du Bois
-boun...@riverbankcomputing.com [mailto:pyqt-boun...@riverbankcomputing.com] On Behalf Of James Polk Sent: Tuesday, April 19, 2011 2:28 PM To: pyqt@riverbankcomputing.com Subject: Re: [PyQt] Question on QTreeView, interactive expanding/collapsing Whoops,...just found the *-hotkey,nevermind

Re: [PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread James Polk
That's Cool!...Thanks Paul! --- On Tue, 4/19/11, Paul Du Bois dub...@doublefine.com wrote: From: Paul Du Bois dub...@doublefine.com Subject: RE: [PyQt] Question on QTreeView, interactive expanding/collapsing To: James Polk jpolk5...@yahoo.com, pyqt@riverbankcomputing.com Date: Tuesday, April

Re: [PyQt] Question on QTreeView, interactive expanding/collapsing

2011-04-19 Thread Knacktus
Am 19.04.2011 23:29, schrieb Zoltan Szalai: The * key expands all children but you can easily implement your own expand / collapse subtree functionality. Wow, I didn't know about that! But Qt needs a method to expand all subchildren recursively. Why is this method not available? Or is it?