Hi,
A new RC build of wxPython has been uploaded to starship.
Version: 2.5.2.4
Pythons: 2.2 2.3
URL: http://starship.python.net/crew/robind/wxPython/preview/2.5.2.4
Have fun!
R'bot
Hi,
A new RC build of wxPython has been uploaded to starship.
Version: 2.5.2.4
Pythons: 2.2 2.3
URL: http://starship.python.net/crew/robind/wxPython/preview/2.5.2.4
Have fun!
R'bot
Hi Robin,
Overall this release looks pretty solid on Mac. But there are a couple issues that need to be addressed:
- Scrollbars are not appearing for wxScrolledPanel/wxScrolledWindow derived controls.
- ColourSelect is not drawing the new color after a colour is selected
- wxSound crashes when trying to play the second sound.
Other than that, in the demo, I just see a few cosmetic issues. I'm going to test with my app next as I need to make a Mac version of my app this week and this looks like a good release to do it from (provided the above issues are taken care of).
Also, I've just updated my CVS and am doing a clean rebuild of wx, so once that's finished I'll try to play with at least the scrollbars issue. Mozilla isn't going to be ready on time (though I'm making good progress), so I'm going to just try to polish a version of my app sans Mozilla on Mac and come back to Mozilla Mac issues after the EClass training next week.
Thanks,
Kevin
On Aug 7, 2004, at 1:38 AM, R'bot wrote:
Hi,
A new RC build of wxPython has been uploaded to starship.
Version: 2.5.2.4
Pythons: 2.2 2.3
URL: http://starship.python.net/crew/robind/wxPython/preview/2.5.2.4Have fun!
R'bot---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-dev-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-dev-help@lists.wxwidgets.org
Kevin Ollivier wrote:
Hi Robin,
Overall this release looks pretty solid on Mac. But there are a couple issues that need to be addressed:
- Scrollbars are not appearing for wxScrolledPanel/wxScrolledWindow derived controls.
Hmm... I wonder when that happened. Julian checked in something this morning that may be fixing this. I'll update and find out.
- ColourSelect is not drawing the new color after a colour is selected
wxBitmapButton::SetBitmapLabel appears to be broken. Any ideas what's going on there?
- wxSound crashes when trying to play the second sound.
<grumble> wxSound is supposed to support releasing the wxSound object of a sound that is currently playing asyncronously, and then destroying the internal object later when the sound is done, but as other things get fixed this feature keeps getting broken... I'll take another look at it.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
Robin Dunn wrote:
Kevin Ollivier wrote:
- ColourSelect is not drawing the new color after a colour is selected
wxBitmapButton::SetBitmapLabel appears to be broken. Any ideas what's going on there?
Actually, that's not the problem, but I'm not quite sure yet what is...
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
[
CC'd to Stefan.
Some background: ColourSelect is a wxPython widget that derives from wxBitmapButton that shows a wxColourDialog when clicked. It also creates a bitmap on the fly that is the selected colour and that is the bitmap shown by the button.
Robin Dunn wrote:
Robin Dunn wrote:
Kevin Ollivier wrote:
- ColourSelect is not drawing the new color after a colour is selected
wxBitmapButton::SetBitmapLabel appears to be broken. Any ideas what's going on there?
Actually, that's not the problem, but I'm not quite sure yet what is...
Okay, now this is just freaking weird. If found that some of the ColourSelect buttons in the demo worked and some didn't. After futzing around for a while I realized that those that have equal width and height are the ones that don't work and all the others do!!??? After adding this bit of code in MakeBitmap all of them worked!
if width == height:
height -= 1
Any ideas?
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!