2003-11-12 16:34:20 -05:00
|
|
|
"""
|
2003-12-22 14:09:54 -05:00
|
|
|
PyColourChooser
|
2003-11-12 16:34:20 -05:00
|
|
|
Copyright (C) 2002 Michael Gilfix <mgilfix@eecs.tufts.edu>
|
|
|
|
|
2003-12-22 14:09:54 -05:00
|
|
|
This file is part of PyColourChooser.
|
2003-11-12 16:34:20 -05:00
|
|
|
|
2003-12-22 14:09:54 -05:00
|
|
|
This version of PyColourChooser is open source; you can redistribute it
|
2003-11-12 16:34:20 -05:00
|
|
|
and/or modify it under the licensed terms.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
"""
|
|
|
|
|
2003-12-16 19:34:40 -05:00
|
|
|
# 12/14/2003 - Jeff Grimmett (grimmtooth@softhome.net)
|
|
|
|
#
|
|
|
|
# o 2.5 compatability update.
|
|
|
|
#
|
2003-12-22 14:09:54 -05:00
|
|
|
# 12/21/2003 - Jeff Grimmett (grimmtooth@softhome.net)
|
|
|
|
#
|
|
|
|
# o wxPyColorChooser -> PyColorChooser
|
|
|
|
# o wxPyColourChooser -> PyColourChooser
|
|
|
|
#
|
2003-12-16 19:34:40 -05:00
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
from pycolourchooser import *
|
|
|
|
|
|
|
|
# For the American in you
|
2003-12-22 14:09:54 -05:00
|
|
|
PyColorChooser = PyColourChooser
|
2003-11-12 16:34:20 -05:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
'canvas',
|
|
|
|
'pycolourbox',
|
|
|
|
'pycolourchooser',
|
|
|
|
'pycolourslider',
|
|
|
|
'pypalette',
|
|
|
|
]
|