wxlistctrl and wxtreectrl

I want to mix an wxlistctrl inside a wxtreectrl, so I want to expand the list items

It's possible ??
where can I see an example ??

please
Thanks

Iespana wrote:

I want to mix an wxlistctrl inside a wxtreectrl, so I want to expand the list items

It's possible ?? where can I see an example ??

Look at the SplitTree sample in the demo.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

I want to mix an wxlistctrl inside a wxtreectrl, so I want to expand the list items

It's possible ??
where can I see an example ??

I have a C++ version of it at
http://web.tiscali.it/no-redirect-tiscali/agriggio/wx-stuff.html

If there is some interest, I can try to wrap it with SWIG (although this
may require some time as I've never used it before).

Alberto

something in python

···

----- Original Message -----
From: "Alberto Griggio" <albgrig@tiscalinet.it>
To: <wxPython-users@lists.wxwindows.org>
Sent: Thursday, February 20, 2003 10:24
Subject: Re: [wxPython-users] wxlistctrl and wxtreectrl

> I want to mix an wxlistctrl inside a wxtreectrl, so I want to expand the

list items

>
> It's possible ??
> where can I see an example ??

I have a C++ version of it at
wxWindows stuff

If there is some interest, I can try to wrap it with SWIG (although this
may require some time as I've never used it before).

Alberto

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org

---Publicidad--------------------------------------------------------
Únete a los miles de sin pareja en Meetic... ¡te vas a enamorar!
Última información publicada - iespaña

---Publicidad--------------------------------------------------------
Juega con Ventura24.es, lotería inteligente y multiplica tus
posibilidades!! Última información publicada - iespaña

Alberto Griggio wrote:

I want to mix an wxlistctrl inside a wxtreectrl, so I want to expand the list items

It's possible ?? where can I see an example ??

I have a C++ version of it at wxWindows stuff

Looks nice. What would it take to not require the friend declaration in wxTreeEvent? Just add Set methods for all the data members?

If there is some interest, I can try to wrap it with SWIG (although this
may require some time as I've never used it before).

We could probably get it added to the gizmos contrib and then it adding it to wxPython would be simpler.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

Looks nice. What would it take to not require the friend declaration in
wxTreeEvent? Just add Set methods for all the data members?

Yes, basically. Another alternative could be to make the members
protected (or public, although some C++ guru might complain ;), so I can
derive a wxTreeListEvent class and add the needed methods there.

> If there is some interest, I can try to wrap it with SWIG (although this
> may require some time as I've never used it before).

We could probably get it added to the gizmos contrib and then it adding
it to wxPython would be simpler.

Well, tell me if I can help. I've submitted a patch that adds it to wx's
contrib some months ago, but it has not been applied yet.

Alberto