wx.lib.agw.aui.framemanager.AuiDockingGuide¶
Base class for AuiSingleDockingGuide
and AuiCenterDockingGuide
.
Class Hierarchy¶
Known Subclasses¶
wx.lib.agw.aui.framemanager.AuiCenterDockingGuide
, wx.lib.agw.aui.framemanager.AuiSingleDockingGuide
Known Superclasses¶
Methods Summary¶
Default class constructor. Used internally, do not call it in your code! |
|
To be overridden by parent classes. |
|
To be overridden by parent classes. |
Class API¶
- class AuiDockingGuide(wx.Frame)¶
Base class for
AuiSingleDockingGuide
andAuiCenterDockingGuide
.
Methods¶
- __init__(self, parent, id=wx.ID_ANY, title='', pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.FRAME_TOOL_WINDOW | wx.STAY_ON_TOP | wx.FRAME_NO_TASKBAR | wx.NO_BORDER, name='AuiDockingGuide')¶
Default class constructor. Used internally, do not call it in your code!
- Parameters:
parent – the
AuiManager
parent;id (integer) – the window identifier. It may take a value of -1 to indicate a default value.
title (string) – the caption to be displayed on the frame’s title bar.
pos (wx.Point) – the window position. A value of (-1, -1) indicates a default position, chosen by either the windowing system or wxPython, depending on platform.
size (wx.Size) – the window size. A value of (-1, -1) indicates a default size, chosen by either the windowing system or wxPython, depending on platform.
style (integer) – the window style.
name (string) – the name of the window. This parameter is used to associate a name with the item, allowing the application user to set Motif resource values for individual windows.
- HitTest(self, x, y)¶
To be overridden by parent classes.
- Parameters:
x (integer) – the x mouse position;
y (integer) – the y mouse position.
- ValidateNotebookDocking(self, valid)¶
To be overridden by parent classes.
- Parameters:
valid (bool) – whether a pane can be docked on top to another to form an automatic
AuiNotebook
.