wx.lib.agw.cubecolourdialog.ColourPanel¶
Simple custom class used to display “old” and “new” colour panels, with alpha blending capabilities.
Class Hierarchy¶
Known Superclasses¶
Methods Summary¶
Default class constructor. |
|
Can this window be given focus by mouse click? |
|
Can this window be given focus by keyboard navigation? If not, the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Refresh the panel after a colour/alpha change. |
Class API¶
- class ColourPanel(wx.Panel)¶
Simple custom class used to display “old” and “new” colour panels, with alpha blending capabilities.
Methods¶
- __init__(self, parent, style=wx.SIMPLE_BORDER)¶
Default class constructor. Used internally. Do not call it in your code!
- Parameters:
parent – the control parent window;
style – the
wx.ColourPanel
window style.
- AcceptsFocus(self)¶
Can this window be given focus by mouse click?
Note
This method always returns
False
as we do not accept focus from mouse click.Note
Overridden from
Panel
.
- AcceptsFocusFromKeyboard(self)¶
Can this window be given focus by keyboard navigation? If not, the only way to give it focus (provided it accepts it at all) is to click it.
Note
This method always returns
False
as we do not accept focus from the keyboard.Note
Overridden from
Panel
.
- OnEraseBackground(self, event)¶
Handles the
wx.EVT_ERASE_BACKGROUND
forwx.ColourPanel
.- Parameters:
event – a
EraseEvent
event to be processed.
Note
This is intentionally empty to reduce flicker.
- OnPaint(self, event)¶
Handles the
wx.EVT_PAINT
forwx.ColourPanel
.- Parameters:
event – a
PaintEvent
event to be processed.
- OnSize(self, event)¶
Handles the
wx.EVT_SIZE
forwx.ColourPanel
.- Parameters:
event – a
wx.SizeEvent
event to be processed.
- RefreshColour(self, colour)¶
Refresh the panel after a colour/alpha change.
- Parameters:
colour – the new background colour of
wx.ColourPanel
.