Where can I find the license documentation for wxPython. I looked in the
wxPython source but could only find wxWindows Library License, Version 3.
Thanks,
Susanne
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org
First, I used the option HIDE_ROOT - no twist buttons showed up.
Then I had a root with no text and no image - twist buttons showed up but
the headings had an ugly indent to make space for an image I didn't want,
which forced me to add an image to each heading item. I got everything
working eventually, but I just wanted to let you know that wxTreeCtrl
works much better on Linux...
result = dlg.ShowModal()
if result == wxID_DLGPOINTSBTNOK the programme complains
that wxID_DLGPOINTSBTNOK is not defined
I tried to use dlg.wxID_DLGPOINTSBTNOK and even dlg._init_ctrls[2] but without result.
Does anyone know how to handle this procedure with the
Boa generated code? (maybe I have to adjust some kind of
button property?)
If I remember correctly the IDs are at the global scope in the module where they are defined, so it depends on where you are trying to use it, just like any other variable name in Python.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
First, I used the option HIDE_ROOT - no twist buttons showed up. Then I had a root with no text and no image - twist buttons showed up but the headings had an ugly indent to make space for an image I didn't want, which forced me to add an image to each heading item. I got everything working eventually, but I just wanted to let you know that wxTreeCtrl works much better on Linux...
Yep, the Microsoft widget is a pain in unmentionable places. If you use images anywhere you have to use them everywhere or it looks dorky. I've been thinking about making the wxGenericTreeCtrl (which is what is used on wxGTK and wxMac as wxTreeCtrl) be available in the Win32 version too.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!