2003-12-09 01:23:28 +00:00
|
|
|
#
|
|
|
|
# Note: this module is not a demo per se, but is used by many of
|
|
|
|
# the demo modules for various purposes.
|
2004-01-13 03:17:17 +00:00
|
|
|
#
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import wx
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
class ColoredPanel(wx.Window):
|
1999-04-30 03:29:54 +00:00
|
|
|
def __init__(self, parent, color):
|
2003-12-09 01:23:28 +00:00
|
|
|
wx.Window.__init__(self, parent, -1, style = wx.SIMPLE_BORDER)
|
1999-04-30 03:29:54 +00:00
|
|
|
self.SetBackgroundColour(color)
|
|
|
|
|
1999-07-31 07:56:15 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2003-12-09 01:23:28 +00:00
|
|
|
|