framemanager.AuiDockingGuide
Inheritance diagram for AuiDockingGuide:
Description
Base class for L{AuiCenterDockingGuide} and L{AuiSingleDockingGuide}.
Class API
Methods
-
class AuiDockingGuide(parent, id=-1, title='', pos=wx.Point(-1, -1), size=wx.Size(-1, -1), style=2129926, name='AuiDockingGuide')
Bases: wx._windows.Frame
Base class for L{AuiCenterDockingGuide} and L{AuiSingleDockingGuide}.
-
__init__()
Default class constructor. Used internally, do not call it in your code!
Parameters: |
- parent – the AuiDockingGuide parent;
- id – the window identifier. It may take a value of -1 to indicate a default value.
- title – the caption to be displayed on the frame’s title bar.
- pos – the window position. A value of (-1, -1) indicates a default position,
chosen by either the windowing system or wxPython, depending on platform.
- 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 – the window style. See L{wx.Frame}.
- name – 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(x, y)
To be overridden by parent classes.
Parameters: |
- x – the x mouse position;
- y – the y mouse position.
|
-
ValidateNotebookDocking(valid)
To be overridden by parent classes.
Parameter: | valid – whether a pane can be docked on top to another to form an automatic
L{auibook.AuiNotebook}. |