def SetFrame(*args, **kwargs):
"""
- SetFrame(self, Frame frame)
+ SetFrame(self, Window frame)
SetFrame is called to specify the frame which is to be managed by the
FrameManager. It only needs to be called if the Frame was not given
def GetFrame(*args, **kwargs):
"""
- GetFrame(self) -> Frame
+ GetFrame(self) -> Window
GetFrame returns the frame currently being managed by the
FrameManager.
"""
return _aui.FrameManager_Update(*args, **kwargs)
+ def OnRender(*args, **kwargs):
+ """OnRender(self, FrameManagerEvent evt)"""
+ return _aui.FrameManager_OnRender(*args, **kwargs)
+
+ def OnPaneButton(*args, **kwargs):
+ """OnPaneButton(self, FrameManagerEvent evt)"""
+ return _aui.FrameManager_OnPaneButton(*args, **kwargs)
+
def GetPane(self, item):
"""
GetPane(self, window_or_info item) -> PaneInfo
"""SetButton(self, int b)"""
return _aui.FrameManagerEvent_SetButton(*args, **kwargs)
+ def SetDC(*args, **kwargs):
+ """SetDC(self, DC pdc)"""
+ return _aui.FrameManagerEvent_SetDC(*args, **kwargs)
+
def GetPane(*args, **kwargs):
"""GetPane(self) -> PaneInfo"""
return _aui.FrameManagerEvent_GetPane(*args, **kwargs)
"""GetButton(self) -> int"""
return _aui.FrameManagerEvent_GetButton(*args, **kwargs)
+ def GetDC(*args, **kwargs):
+ """GetDC(self) -> DC"""
+ return _aui.FrameManagerEvent_GetDC(*args, **kwargs)
+
def Veto(*args, **kwargs):
"""Veto(self, bool veto=True)"""
return _aui.FrameManagerEvent_Veto(*args, **kwargs)
button = property(_aui.FrameManagerEvent_button_get, _aui.FrameManagerEvent_button_set)
veto_flag = property(_aui.FrameManagerEvent_veto_flag_get, _aui.FrameManagerEvent_veto_flag_set)
canveto_flag = property(_aui.FrameManagerEvent_canveto_flag_get, _aui.FrameManagerEvent_canveto_flag_set)
+ dc = property(_aui.FrameManagerEvent_dc_get, _aui.FrameManagerEvent_dc_set)
_aui.FrameManagerEvent_swigregister(FrameManagerEvent)
class DockInfo(object):
wxEVT_AUI_PANEBUTTON = _aui.wxEVT_AUI_PANEBUTTON
wxEVT_AUI_PANECLOSE = _aui.wxEVT_AUI_PANECLOSE
+wxEVT_AUI_RENDER = _aui.wxEVT_AUI_RENDER
EVT_AUI_PANEBUTTON = wx.PyEventBinder( wxEVT_AUI_PANEBUTTON )
EVT_AUI_PANECLOSE = wx.PyEventBinder( wxEVT_AUI_PANECLOSE )
+EVT_AUI_RENDER = wx.PyEventBinder( wxEVT_AUI_RENDER )
class DockArt(object):
"""