Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cb6727e8118d24d0fb65ef60dec5f512a58c1f46 authored by Martin v. Löwis on 02 March 2008, 20:39:32 UTC
Prepare for 2.3.7c1.
Tip revision: cb6727e
libcolorpicker.tex
\section{\module{ColorPicker} ---
         Color selection dialog}

\declaremodule{extension}{ColorPicker}
  \platform{Mac}
\modulesynopsis{Interface to the standard color selection dialog.}
\moduleauthor{Just van Rossum}{just@letterror.com}
\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}


The \module{ColorPicker} module provides access to the standard color
picker dialog.


\begin{funcdesc}{GetColor}{prompt, rgb}
  Show a standard color selection dialog and allow the user to select
  a color.  The user is given instruction by the \var{prompt} string,
  and the default color is set to \var{rgb}.  \var{rgb} must be a
  tuple giving the red, green, and blue components of the color.
  \function{GetColor()} returns a tuple giving the user's selected
  color and a flag indicating whether they accepted the selection of
  cancelled.
\end{funcdesc}
back to top