win98, Py 2.3.4, wxPython 2.5.2.2p.20040619
- Demo / Custom Controls / ColourSelect
When a button receives a new colour, it seems only the newly exposed region
(region that was hidden by the colour selector) of that button is refreshed.
- Demo / More Windows/Controls / DynamicSashWindow
From the log window,
Running demo DynamicSashWindow.py...
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\src\msw\window.cpp(1506): 'MoveWindow' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\include\wx/msw/private.h(297): 'GetWindowRect' failed with error 0x00000000 (l'opération s'est terminée.).
Debug: ..\..\src\msw\window.cpp(1506): 'MoveWindow' failed with error 0x00000000 (l'opération s'est terminée.).
- Demo / More Windows/Controls / Time Ctrl
The text ctrls have "strange" sizes. See remark below (***)
- Demo / Windows layout / Sizers
As said in a previous post, on my win platform, I also see some black spaces
(lines with a 1-2 pixels width), between ctrls, where no space is expected.
- Demo window
It does not display the "mondrian" icon.
- From my apps / Strange behaviour of the wx.TextCtrl control
(***)
In something like:
self.txt = wx.TextCtrl(self, 3001, 'text control', (10, 100), (300, 30), wx.ST_NO_AUTORESIZE)
self.txt.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, False))
the size of the ctrl is not set correctly. It always presents a fixed size of
approximatively (100, 25). When removing self.txt.SetFont(), everything is ok.
This is probably what happens in the Time Ctrl issue, the used fonts are
monospaced fonts. The masked.TextCtrl using a monospace font by
default, present the same bug.
- fixdc.py has done its job very well.
- I will probably not have the time to test all the beta releases, as I have done
with wxPython 2.5.1.5
Jean-Michel Fauth, Switzerland