Add docstrings for ComboCtrl and ComboPopup, and added OwnerDrawnComboBox

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-18 00:33:33 +00:00
parent 3b339f106c
commit 84dd1dd89e
4 changed files with 667 additions and 209 deletions

View File

@@ -19,6 +19,14 @@ have a lot of control over other aspects of the combo widget as well.
It works very well on GTK and MSW, using native renderers for drawing
the combo button, but is unfortunatly still a bit klunky on OSX...
Use system default paper size for printing instead of A4 by default.
Added wx.combo.OwnerDrawnComboBox, which is a ComboCtrl that delegates
the drawing of the items in the popup and in the control itself to
overridden methods of a derived class, similarly to how wx.VListBox
works.