framemanager.AuiDockingGuide

Inheritance diagram for AuiDockingGuide:


digraph inheritance6535bcfe11 {
rankdir=LR;
size="8.0, 12.0";
  "framemanager.AuiDockingGuide" [style="setlinewidth(0.5)",URL="#framemanager.AuiDockingGuide",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
  "wx._windows.Frame" -> "framemanager.AuiDockingGuide" [arrowsize=0.5,style="setlinewidth(0.5)"];
  "wx._core.EvtHandler" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
  "wx._core.Object" -> "wx._core.EvtHandler" [arrowsize=0.5,style="setlinewidth(0.5)"];
  "wx._core.Window" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
  "wx._core.EvtHandler" -> "wx._core.Window" [arrowsize=0.5,style="setlinewidth(0.5)"];
  "wx._core.Object" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
  "wx._windows.TopLevelWindow" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
  "wx._core.Window" -> "wx._windows.TopLevelWindow" [arrowsize=0.5,style="setlinewidth(0.5)"];
  "wx._windows.Frame" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
  "wx._windows.TopLevelWindow" -> "wx._windows.Frame" [arrowsize=0.5,style="setlinewidth(0.5)"];
}


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}.

Table Of Contents

This Page