In an earlier query, the answers to my problem were two methods: wx.Image.IsOk(), and wx.EmptyImage(). The former one I should have found, but the latter one is not in the documentation I've been using.
I'm running wxPython version: 2.8.9.1 (msw-unicode) over Python 2.6.1 on Windows XP. Documentation is in the wxPython 2.8 docs & demos directory.
I've been using the wxWidgets help file for documentation, even though it mostly uses C++ descriptions. That doesn't usually bother me, since I used C++ for many years. But it doesn't have EmptyImage() in it. I suspect that it was added in the Python port.
I can see the docs in http://www.wxpython.org/docs/api/ and I can see the .py source (with pydoc string) in _core.py
but there doesn't seem to be a single place I can look for everything.
Suggestions?
Related question: I'm using Komodo 5.0.3 for an IDE, and its autocomplete and calltips logic can't parse much of the wxPython source. It uses static parsing, not reflection, so I'm not surprised, given all the clever things done in the sources to simplify the visible interface. But I was wondering if anybody has built a "API Catalog file" for wxPython (it would have an extension of .cix) Ideally, it could be auto-generated from some form of docs that are already maintained by wxPython.
Thanks, DaveA