framemanager.AuiDockingHintWindow

Inheritance diagram for AuiDockingHintWindow:


digraph inheritance8b74dde32e {
rankdir=LR;
size="8.0, 12.0";
  "framemanager.AuiDockingHintWindow" [style="setlinewidth(0.5)",URL="#framemanager.AuiDockingHintWindow",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
  "wx._windows.Frame" -> "framemanager.AuiDockingHintWindow" [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

The original wxAUI docking window hint.

Class API

Methods

class AuiDockingHintWindow(parent, id=-1, title='', pos=wx.Point(-1, -1), size=wx.Size(1, 1), style=2097182, name='auiHintWindow')

Bases: wx._windows.Frame

The original wxAUI docking window hint.

__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.
MakeVenetianBlinds()
Creates the “venetian blind” effect if L{AuiManager} has the AUI_MGR_VENETIAN_BLINDS_HINT flag set.
OnSize(event)

Handles the wx.EVT_SIZE event for L{AuiDockingHintWindow}.

Parameter:event – a L{wx.SizeEvent} to be processed.
SetBlindMode(flags)

Sets whether venetian blinds or transparent hints will be shown as docking hint. This depends on the L{AuiManager} flags.

Parameter:flags – the L{AuiManager} flags.

Table Of Contents

This Page