Author: Date: Subject:
R'bot
2008-05-31 20:03:53
[wxpython-dev] 20080531 test build uploaded
Author: Date: Subject:
Werner F. Bruhin
2008-06-01 08:46:08
Re: [wxpython-dev] 20080531 test build uploaded
Robin,
R'bot wrote:
> Hi,
>
> A new test build of wxPython has been uploaded.
>
> Version: 2.8.8.0.pre20080531
> URL: http://wxPython.wxcommunity.com/preview/20080531
> Changes: http://wxPython.wxcommunity.com/preview/20080531/CHANGES.html
>
Did the gridbagsizer.GetChildren correction make it into this release -
see attached mail.
Werner
Werner F. Bruhin wrote:
> The Boa GUI designer when working with a gridbagsizer does:
>
> gbs.GetChildren() this returns a list of wxGBSizerItem
>
> I just tested this and it works in 2.8.4.0, however when I try it with
> 2.8.7.1 I get an exception.
>
> Problem seems that gbs.GetChildren() returns wx.SizerItem instead of
> wxGBSizerItem.
>
> I guess that this was introduced in 2.8.4.2 by the change listed first
> "Added some SWIG magic that allows wx C++ lists to be exposed to
> wxPython as sequence-like wrappers around the real list,.....".
>
> If my guess is correct is there a way to get the wxGBSizerItem?
You are correct. There isn't a safe way to get a wxGBSizerItem from it.
I'll see if I can give wx.GridBagSizer it's own GetChildren that does
the RightThing.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
_______________________________________________
wxpython-users mailing list
[email protected]
http://lists.wxwidgets.org/mailman/listinfo/wxpython-users
_______________________________________________
wxpython-dev mailing list
[email protected]
http://lists.wxwidgets.org/mailman/listinfo/wxpython-dev
Author: Date: Subject:
Robin Dunn
2008-06-02 09:20:49
Re: [wxpython-dev] 20080531 test build uploaded
Werner F. Bruhin wrote:
> Robin,
>
> R'bot wrote:
>> Hi,
>>
>> A new test build of wxPython has been uploaded.
>> Version: 2.8.8.0.pre20080531
>> URL: http://wxPython.wxcommunity.com/preview/20080531
>> Changes: http://wxPython.wxcommunity.com/preview/20080531/CHANGES.html
>>
> Did the gridbagsizer.GetChildren correction make it into this release -
Yes. Go to the demo, select the GridBagSizer sample, hit F6 to bring up
the inspection tool, and select the GridBagSizer in the tree:
>>> obj
<wx._core.GridBagSizer; proxy of <Swig Object of type 'wxGridBagSizer
*' at 0x138bcdb0> >
>>> obj.GetChildren()[0]
<wx._core.GBSizerItem; proxy of <Swig Object of type 'wxGBSizerItem *'
at 0x1389ebf0> >
>>>
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
_______________________________________________
wxpython-dev mailing list
[email protected]
http://lists.wxwidgets.org/mailman/listinfo/wxpython-dev
Author: Date: Subject:
Werner F. Bruhin
2008-06-03 14:56:19
Re: [wxpython-dev] 20080531 test build uploaded
Robin,
Robin Dunn wrote:
> Werner F. Bruhin wrote:
>> Robin,
>>
>> R'bot wrote:
>>> Hi,
>>>
>>> A new test build of wxPython has been uploaded. Version:
>>> 2.8.8.0.pre20080531
>>> URL: http://wxPython.wxcommunity.com/preview/20080531
>>> Changes:
>>> http://wxPython.wxcommunity.com/preview/20080531/CHANGES.html
>>>
>> Did the gridbagsizer.GetChildren correction make it into this release -
>
> Yes. Go to the demo, select the GridBagSizer sample, hit F6 to bring
> up the inspection tool, and select the GridBagSizer in the tree:
Great!
Sorry to bother you with this, I wasn't sure when I get around to
download and test it (hopefully tomorrow), so I thought I better ask as
I didn't see it in the changes.html.
Werner
_______________________________________________
wxpython-dev mailing list
[email protected]
http://lists.wxwidgets.org/mailman/listinfo/wxpython-dev
Author: Date: Subject:
jmf
2008-06-02 13:59:33
[wxpython-dev] Re: 20080531 test build uploaded
Author: Date: Subject:
Robin Dunn
2008-06-02 11:40:32
Re: [wxpython-dev] Re: 20080531 test build uploaded
jmf wrote:
Thanks for testing.
> I'm confident there will be an ansi-build (I need it) and from what I understand
> and spy on the misc. wc-dev lists, it will be the last time.
Yes there will be an ansi build for the official release, and if there
are any more 2.8.x builds they will have them too. Starting with 2.9.x
builds I will be dropping the ansi builds (although users can still make
their own builds if they really are not able to use the Unicode build.)
I'll also be dropping the wxPython package in 2.9 and will only
distribute the wx pacakge.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
_______________________________________________
wxpython-dev mailing list
[email protected]
http://lists.wxwidgets.org/mailman/listinfo/wxpython-dev
|