[wxPython] wxPython wiki pages

Dan created a wiki page to cover PythonCard on the Mac.
http://wiki.wxpython.org/index.cgi/PythonCardOnMac

I stuck some basic info and links in it to help people that may not already
be on the wxPython-Mac mailing list.

It would probably make more sense to go ahead and have a specific wxPython
Mac wiki page.

The Mac info in the wxPython FAQ probably needs updating.
http://wiki.wxpython.org/index.cgi/Frequently_20Asked_20Questions

ka

I have an app with a wxSplitterWindow in a wxNotebook page. It exhibits
different behaviour on GTK and MSW. The following code fragment puts a
wxNotebook (vertical tabs) in the left panel and a wxPanel on the right.

self.SetMinimumPaneSize(190)
self.SplitVertically(leftPanel, rightPanel)
self.SetSashPosition(200)

Under GTK I get the two panels showing nicely but on MSW only the tabs of
the vertical notebook are showing. If I click on the sash the left panel is
exposed.

The app is large and reducing it to a simple example will probably take a
long time and not produce this odd behavour. Can I simulate the click on
the sash in the idle handler?

Nigel

I have an app with a wxSplitterWindow in a wxNotebook page. It exhibits
different behaviour on GTK and MSW. The following code fragment puts a
wxNotebook (vertical tabs) in the left panel and a wxPanel on the right.

self.SetMinimumPaneSize(190)
self.SplitVertically(leftPanel, rightPanel)
self.SetSashPosition(200)

Under GTK I get the two panels showing nicely but on MSW only the tabs of
the vertical notebook are showing. If I click on the sash the left panel

is

exposed.

You might try forcing the splitter to resize a tiny bit so it will get a
size event...

ยทยทยท

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