Simple custom class used to display “old” and “new” colour panels, with alpha blending capabilities.
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. |
ColourPanel
(wx.Panel)¶Simple custom class used to display “old” and “new” colour panels, with alpha blending capabilities.
__init__
(self, parent, style=wx.SIMPLE_BORDER)¶Default class constructor. Used internally. Do not call it in your code!
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
for wx.ColourPanel
.
event – a EraseEvent
event to be processed.
Note
This is intentionally empty to reduce flicker.
OnPaint
(self, event)¶Handles the wx.EVT_PAINT
for wx.ColourPanel
.
event – a PaintEvent
event to be processed.
OnSize
(self, event)¶Handles the wx.EVT_SIZE
for wx.ColourPanel
.
event – a wx.SizeEvent
event to be processed.
RefreshColour
(self, colour)¶Refresh the panel after a colour/alpha change.
colour – the new background colour of wx.ColourPanel
.