functions missing from 2.5.2 wxWidgets documen tation

Kevin Altis wrote:

I've noticed that several of the methods of various classes have
dropped out of the C++ documentation; the 2 most recent examples
I've found are wxComboBox.Append() and .Clear(). Is there
something I should know here, or is there a systematic error
that can be fixed to restore this, or is this just human error?

I believe this is because they are documented in wxControlWithItems,
which is one of the superclasses.

Ahhh. thanks; I missed that (and I suspect others will too!).
I note that .AppendItems() is still missing...

···

On Jul 20, 2004, at 9:57 PM, Will Sadkin wrote:

Also, I note that wx.ComboBox has a .AppendItems() method from doing
an import in PythonWin and using completion; can someone tell me the
usage?

Will Sadkin wrote:

I note that .AppendItems() is still missing...

It's got a docstring though:

$ pydoc wx.ComboBox.AppendItems
Help on method AppendItems in wx.ComboBox:

wx.ComboBox.AppendItems = AppendItems(*args, **kwargs) unbound wx._controls.ComboBox method

     Append(self, List strings)

     Apend several items at once to the control. Notice that calling this
     method may be much faster than appending the items one by one if you
     need to add a lot of items.

···

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

So Choice, ComboBox, and ListBox all support AppendItems. RadioBox doesn't. So, if AppendItems is part of ControlWithItems I suppose CheckListBox supports it as well. BTW, it seems like RadioBox should inherit from ControlWithItems as well.

ka

···

On Jul 21, 2004, at 12:46 PM, Robin Dunn wrote:

Will Sadkin wrote:

I note that .AppendItems() is still missing...

It's got a docstring though:

$ pydoc wx.ComboBox.AppendItems
Help on method AppendItems in wx.ComboBox:

wx.ComboBox.AppendItems = AppendItems(*args, **kwargs) unbound wx._controls.ComboBox method

    Append(self, List strings)

    Apend several items at once to the control. Notice that calling this
    method may be much faster than appending the items one by one if you
    need to add a lot of items.