AGW Logo

agw_title AuiDockingHintWindow

The original wxAUI docking window hint.

hierarchy Inheritance Diagram

Inheritance diagram for: AuiDockingHintWindow

Inheritance diagram of AuiDockingHintWindow


method_summary Methods Summary

__init__Default class constructor.
MakeVenetianBlindsCreates the “venetian blind” effect if AuiManager has the AUI_MGR_VENETIAN_BLINDS_HINT
OnSizeHandles the wx.EVT_SIZE event for AuiDockingHintWindow.
SetBlindModeSets whether venetian blinds or transparent hints will be shown as docking hint.
SetShapeIf the platform supports it, sets the shape of the window to that depicted by region.
ShowShow the hint window.

API Class API

class AuiDockingHintWindow(wx.Frame)[source]

The original wxAUI docking window hint.



__init__(parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, size=wx.Size(1, 1), style=wx.FRAME_TOOL_WINDOW | wx.FRAME_FLOAT_ON_PARENT | wx.FRAME_NO_TASKBAR | wx.NO_BORDER | wx.FRAME_SHAPED, name="auiHintWindow")[source]

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;
  • 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()[source]

Creates the “venetian blind” effect if AuiManager has the AUI_MGR_VENETIAN_BLINDS_HINT flag set.



OnSize(event)[source]

Handles the wx.EVT_SIZE event for AuiDockingHintWindow.

Parameters:event – a wx.SizeEvent to be processed.


SetBlindMode(agwFlags)[source]

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

Parameters:agwFlags – the AuiManager flags.


SetShape(region)[source]

If the platform supports it, sets the shape of the window to that depicted by region. The system will not display or respond to any mouse event for the pixels that lie outside of the region. To reset the window to the normal rectangular shape simply call SetShape again with an empty region.

Parameters:region – the shape of the frame (an instance of wx.Region).

Note

Overridden for wxMac.



Show(show=True)[source]

Show the hint window.

Parameters:show – whether to show or hide the hint docking window.
Tree

Table Of Contents

Previous topic

AuiDockingGuideWindow

Next topic

AuiFloatingFrame