 
       wx.aui.AuiDefaultDockArt¶
  wx.aui.AuiDefaultDockArt¶This is the default art provider for wx.aui.AuiManager.
Dock art can be customized by creating a class derived from this one, or replacing this class entirely.
 Methods Summary¶
 Methods Summary¶| __init__ | |
| DrawBackground | Draws a background. | 
| DrawBorder | Draws a border. | 
| DrawCaption | Draws a caption. | 
| DrawGripper | Draws a gripper. | 
| DrawIcon | |
| DrawPaneButton | Draws a button in the pane’s title bar. | 
| DrawSash | Draws a sash between two windows. | 
| GetColour | Get the colour of a certain setting. | 
| GetFont | Get a font setting. | 
| GetMetric | Get the value of a certain setting. | 
| SetColour | Set a certain setting with the value colour. | 
| SetFont | Set a font setting. | 
| SetMetric | Set a certain setting with the value new_val. | 
 Class API¶
 Class API¶wx.aui.AuiDefaultDockArt(AuiDockArt)¶Possible constructors:
AuiDefaultDockArt()
This is the default art provider for AuiManager.
__init__(self)¶DrawBackground(self, dc, window, orientation, rect)¶Draws a background.
| Parameters: | 
|---|
DrawBorder(self, dc, window, rect, pane)¶Draws a border.
| Parameters: | 
 | 
|---|
DrawCaption(self, dc, window, text, rect, pane)¶Draws a caption.
| Parameters: | 
 | 
|---|
DrawGripper(self, dc, window, rect, pane)¶Draws a gripper.
| Parameters: | 
 | 
|---|
DrawIcon(self, dc, rect, pane)¶| Parameters: | 
 | 
|---|
DrawPaneButton(self, dc, window, button, button_state, rect, pane)¶Draws a button in the pane’s title bar.
button can be one of the values of AuiButtonId. button_state can be one of the values of AuiPaneButtonState.
| Parameters: | 
 | 
|---|
DrawSash(self, dc, window, orientation, rect)¶Draws a sash between two windows.
| Parameters: | 
|---|
GetColour(self, id)¶Get the colour of a certain setting.
id can be one of the colour values of AuiPaneDockArtSetting.
| Parameters: | id (int) – | 
|---|---|
| Return type: | Colour | 
GetFont(self, id)¶Get a font setting.
| Parameters: | id (int) – | 
|---|---|
| Return type: | Font | 
GetMetric(self, id)¶Get the value of a certain setting.
id can be one of the size values of AuiPaneDockArtSetting.
| Parameters: | id (int) – | 
|---|---|
| Return type: | int | 
SetColour(self, id, colour)¶Set a certain setting with the value colour.
id can be one of the colour values of AuiPaneDockArtSetting.
| Parameters: | 
 | 
|---|
SetMetric(self, id, new_val)¶Set a certain setting with the value new_val.
id can be one of the size values of AuiPaneDockArtSetting.
| Parameters: | 
 | 
|---|