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
"""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)
methods to the Python methods implemented in the derived class.
"""
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
- def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
+ def __init__(self, *args, **kwargs):
+ """
+ __init__(self) -> PyAuiTabArt
+
+ This version of the `TabArt` class has been instrumented to be
+ subclassable in Python and to reflect all calls to the C++ base class
+ methods to the Python methods implemented in the derived class.
+ """
+ _aui.PyAuiTabArt_swiginit(self,_aui.new_PyAuiTabArt(*args, **kwargs))
+ PyAuiTabArt._setCallbackInfo(self, self, PyAuiTabArt)
+
_aui.PyAuiTabArt_swigregister(PyAuiTabArt)