.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. currentmodule:: wx.lib.agw.cubecolourdialog
.. highlight:: python
.. _wx.lib.agw.cubecolourdialog.ColourPanel:
==========================================================================================================================================
|phoenix_title| **wx.lib.agw.cubecolourdialog.ColourPanel**
==========================================================================================================================================
Simple custom class used to display "old" and "new" colour panels, with alpha
blending capabilities.
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html

Inheritance diagram for class
ColourPanel:
|
|super_classes| Known Superclasses
==================================
:class:`wx.Panel`
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.__init__` Default class constructor.
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.AcceptsFocus` Can this window be given focus by mouse click?
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.AcceptsFocusFromKeyboard` Can this window be given focus by keyboard navigation? If not, the
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.OnEraseBackground` Handles the ``wx.EVT_ERASE_BACKGROUND`` for :class:`wx.ColourPanel`.
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.OnPaint` Handles the ``wx.EVT_PAINT`` for :class:`wx.ColourPanel`.
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.OnSize` Handles the ``wx.EVT_SIZE`` for :class:`wx.ColourPanel`.
:meth:`~wx.lib.agw.cubecolourdialog.ColourPanel.RefreshColour` Refresh the panel after a colour/alpha change.
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: ColourPanel(wx.Panel)
Simple custom class used to display "old" and "new" colour panels, with alpha
blending capabilities.
.. method:: __init__(self, parent, style=wx.SIMPLE_BORDER)
Default class constructor.
Used internally. Do not call it in your code!
:param `parent`: the control parent window;
:param `style`: the :class:`wx.ColourPanel` window style.
.. method:: 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 :class:`Panel`.
.. method:: 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 :class:`Panel`.
.. method:: OnEraseBackground(self, event)
Handles the ``wx.EVT_ERASE_BACKGROUND`` for :class:`wx.ColourPanel`.
:param `event`: a :class:`EraseEvent` event to be processed.
.. note:: This is intentionally empty to reduce flicker.
.. method:: OnPaint(self, event)
Handles the ``wx.EVT_PAINT`` for :class:`wx.ColourPanel`.
:param `event`: a :class:`PaintEvent` event to be processed.
.. method:: OnSize(self, event)
Handles the ``wx.EVT_SIZE`` for :class:`wx.ColourPanel`.
:param `event`: a :class:`wx.SizeEvent` event to be processed.
.. method:: RefreshColour(self, colour)
Refresh the panel after a colour/alpha change.
:param `colour`: the new background colour of :class:`wx.ColourPanel`.