mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-09 21:40:34 +01:00
@@ -67,7 +67,8 @@ Changes in this release include the following:
|
||||
|
||||
* Fix the object ownership transfer for wx.Menu.Insert() (#931)
|
||||
|
||||
* Added wx.Treebook.GetTreeCtrl and wx.Choicebook.GetChoiceCtrl. (#918)
|
||||
* Added wx.Treebook.GetTreeCtrl, wx.Listbook.GetListView and
|
||||
wx.Choicebook.GetChoiceCtrl. (#918)
|
||||
|
||||
* Removed the wx.BookCtrlBase.RemovePage workaround as it was causing problems
|
||||
and doesn't seem to be necessary any more. The wxWidgets assertions are catching
|
||||
|
||||
@@ -38,6 +38,10 @@ def run():
|
||||
tools.fixWindowClass(c)
|
||||
tools.fixBookctrlClass(c)
|
||||
|
||||
c.addCppMethod('wxListView*', 'GetListView', '()',
|
||||
doc="Returns the list control used for selecting pages.",
|
||||
body="return(self->GetListView());")
|
||||
|
||||
module.addPyCode("""\
|
||||
EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_LISTBOOK_PAGE_CHANGED, 1 )
|
||||
EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_LISTBOOK_PAGE_CHANGING, 1 )
|
||||
|
||||
Reference in New Issue
Block a user