.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2018 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc

.. currentmodule:: wx.lib.colourchooser.pypalette

.. highlight:: python



.. _wx.lib.colourchooser.pypalette.PyPalette:

==========================================================================================================================================
|phoenix_title|  **wx.lib.colourchooser.pypalette.PyPalette**
==========================================================================================================================================

The Pure-Python Palette

The PyPalette is a pure python implementation of a colour palette. The
palette implementation here imitates the palette layout used by MS
Windows and Adobe Photoshop.

The actual palette image has been embedded as an XPM for speed. The
actual reverse-engineered drawing algorithm is provided in the
GeneratePaletteBMP() method. The algorithm is tweakable by supplying
the granularity factor to improve speed at the cost of display
beauty. Since the generator isn't used in real time, no one will
likely care :) But if you need it for some sort of unforeseen realtime
application, it's there.



|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>PyPalette</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.lib.colourchooser.pypalette.PyPalette_inheritance.png" alt="Inheritance diagram of PyPalette" usemap="#dummy" class="inheritance"/></center>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.lib.colourchooser.pypalette.PyPalette.html" title="The Pure-Python Palette" alt="" coords="5,392,299,421"/> <area shape="rect" id="node2" href="wx.lib.colourchooser.canvas.Canvas.html" title="A canvas class for arbitrary drawing." alt="" coords="20,315,284,344"/> <area shape="rect" id="node3" href="wx.Window.html" title="wx.Window  is the base class for all windows and represents any visible object on screen." alt="" coords="103,237,201,267"/> <area shape="rect" id="node4" href="wx.WindowBase.html" title="wx.WindowBase" alt="" coords="87,160,217,189"/> <area shape="rect" id="node5" href="wx.EvtHandler.html" title="A class that can handle events from the windowing system." alt="" coords="93,83,211,112"/> <area shape="rect" id="node6" href="wx.Object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="47,5,135,35"/> <area shape="rect" id="node7" href="wx.Trackable.html" title="Add-on base class for a trackable object." alt="" coords="159,5,270,35"/> </map> 
   </p>
   </div>

|


|super_classes| Known Superclasses
==================================

:class:`wx.lib.colourchooser.canvas.Canvas`

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.__init__`                       Creates a palette object.
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.ClearPoint`                     
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.DoGetBestClientSize`            Overridden to create a client window that exactly fits our bitmap
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.DrawBuffer`                     Draws the palette XPM into the memory buffer.
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.GeneratePaletteBMP`             The actual palette drawing algorithm.
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.GetValue`                       Returns a colour value at a specific x, y coordinate pair. This
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.HighlightPoint`                 Highlights an area of the palette with a little circle around
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.xInBounds`                      Limit x to [0,width)
:meth:`~wx.lib.colourchooser.pypalette.PyPalette.yInBounds`                      Limit y to [0,height)
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: PyPalette(canvas.Canvas)

   The Pure-Python Palette
   
   The PyPalette is a pure python implementation of a colour palette. The
   palette implementation here imitates the palette layout used by MS
   Windows and Adobe Photoshop.
   
   The actual palette image has been embedded as an XPM for speed. The
   actual reverse-engineered drawing algorithm is provided in the
   GeneratePaletteBMP() method. The algorithm is tweakable by supplying
   the granularity factor to improve speed at the cost of display
   beauty. Since the generator isn't used in real time, no one will
   likely care :) But if you need it for some sort of unforeseen realtime
   application, it's there.

   .. method:: __init__(self, parent, id)

      Creates a palette object.


   .. method:: ClearPoint(self)


   .. method:: DoGetBestClientSize(self)

      Overridden to create a client window that exactly fits our bitmap


   .. method:: DrawBuffer(self)

      Draws the palette XPM into the memory buffer.


   .. method:: GeneratePaletteBMP(self, file_name, granularity=1)

      The actual palette drawing algorithm.
      
      This used to be 100% reverse engineered by looking at the
      values on the MS map, but has since been redone Correctly(tm)
      according to the HSV (hue, saturation, value) colour model by
      Charl P. Botha <http://cpbotha.net/>.
      
      Speed is tweakable by changing the granularity factor, but
      that affects how nice the output looks (makes the vertical
      blocks bigger. This method was used to generate the embedded
      XPM data.


   .. method:: GetValue(self, x, y)

      Returns a colour value at a specific x, y coordinate pair. This
      is useful for determining the colour found a specific mouse click
      in an external event handler.


   .. method:: HighlightPoint(self, x, y)

      Highlights an area of the palette with a little circle around
      the coordinate point


   .. method:: xInBounds(self, x)

      Limit x to [0,width)


   .. method:: yInBounds(self, y)

      Limit y to [0,height)