ignore things that are just defined for the sake of the preprocessor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-01-08 22:58:22 +00:00
parent 0b8055d224
commit 070a1e7e3b
7 changed files with 113 additions and 17 deletions

View File

@@ -154,8 +154,6 @@ import _core
import _windows
wx = _core
__docfilter__ = wx.__DocFilter(globals())
USE_AUI = _aui.USE_AUI
USE_MENUS = _aui.USE_MENUS
AUI_DOCK_NONE = _aui.AUI_DOCK_NONE
AUI_DOCK_TOP = _aui.AUI_DOCK_TOP
AUI_DOCK_RIGHT = _aui.AUI_DOCK_RIGHT
@@ -1437,6 +1435,10 @@ class AuiNotebook(_core.Control):
"""Split(self, size_t page, int direction)"""
return _aui.AuiNotebook_Split(*args, **kwargs)
def GetAuiManager(*args, **kwargs):
"""GetAuiManager(self) -> AuiManager"""
return _aui.AuiNotebook_GetAuiManager(*args, **kwargs)
PageCount = property(GetPageCount,doc="See `GetPageCount`")
Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
_aui.AuiNotebook_swigregister(AuiNotebook)