Merged wxPython 2.2.2 over to the main branch
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -76,6 +76,12 @@ class wxNotebookPtr(wxControlPtr):
|
||||
def GetRowCount(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_GetRowCount,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def SetPageSize(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_SetPageSize,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def SetPadding(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_SetPadding,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def DeletePage(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_DeletePage,(self,) + _args, _kwargs)
|
||||
return val
|
||||
@@ -88,6 +94,9 @@ class wxNotebookPtr(wxControlPtr):
|
||||
def AddPage(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_AddPage,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def InsertPage(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_InsertPage,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def GetPage(self, *_args, **_kwargs):
|
||||
val = apply(windows2c.wxNotebook_GetPage,(self,) + _args, _kwargs)
|
||||
if val: val = wxWindowPtr(val)
|
||||
|
Reference in New Issue
Block a user