wx.aui.AuiDockArt is part of the AUI
class framework.
See also AUI Overview.
wx.aui.AuiDockArt is the art provider: provides all drawing functionality to the Aui dock manager. This allows the dock manager to have a plugable look-and-feel.
By default, a wx.aui.AuiManager uses an instance of this class called wx.aui.AuiDefaultDockArt which provides bitmap art and a colour scheme that is adapted to the major platforms’ look. You can either derive from that class to alter its behaviour or write a completely new dock art class. Call wx.aui.AuiManager.SetArtProvider
to force AUI
to use your new dock art provider.
See also
Constructor. |
|
Draws a background. |
|
Draws a border. |
|
Draws a caption. |
|
Draws a gripper. |
|
Draws a button in the pane’s title bar. |
|
Draws a sash between two windows. |
|
Get the colour of a certain setting. |
|
Get a font setting. |
|
Get the value of a certain setting. |
|
Set a certain setting with the value colour. |
|
Set a font setting. |
|
Set a certain setting with the value new_val. |
Possible constructors:
AuiDockArt()
AuiDockArt is part of the AUI
class framework.
Constructor.
Draws a background.
Draws a border.
dc (wx.DC) –
window (wx.Window) –
rect (wx.Rect) –
pane (wx.aui.AuiPaneInfo) –
Draws a caption.
dc (wx.DC) –
window (wx.Window) –
text (string) –
rect (wx.Rect) –
pane (wx.aui.AuiPaneInfo) –
Draws a gripper.
dc (wx.DC) –
window (wx.Window) –
rect (wx.Rect) –
pane (wx.aui.AuiPaneInfo) –
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.
dc (wx.DC) –
window (wx.Window) –
button (int) –
button_state (int) –
rect (wx.Rect) –
pane (wx.aui.AuiPaneInfo) –
Draws a sash between two windows.
Get the colour of a certain setting.
id can be one of the colour values of AuiPaneDockArtSetting.
id (int) –
Colour
Get a font setting.
id (int) –
Font
Get the value of a certain setting.
id can be one of the size values of AuiPaneDockArtSetting.
id (int) –
int
Set a certain setting with the value colour.
id can be one of the colour values of AuiPaneDockArtSetting.
id (int) –
colour (wx.Colour) –
Set a certain setting with the value new_val.
id can be one of the size values of AuiPaneDockArtSetting.
id (int) –
new_val (int) –