]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/ColourDB.py
docstring update
[wxWidgets.git] / wxPython / demo / ColourDB.py
CommitLineData
8fa876ca
RD
1
2import wx
95bfd958 3import wx.lib.colourdb
c8ace611
RD
4
5import images
6
7
c8ace611
RD
8#----------------------------------------------------------------------
9
8fa876ca 10class TestWindow(wx.ScrolledWindow):
c8ace611 11 def __init__(self, parent):
8fa876ca
RD
12 wx.ScrolledWindow.__init__(self, parent, -1)
13
14 # Populate our color list
dc9876fb 15 self.clrList = wx.lib.colourdb.getColourInfoList()
c8ace611 16
8fa876ca 17 # Just for style points, we'll use this as a background image.
c8ace611
RD
18 self.bg_bmp = images.getGridBGBitmap()
19
8fa876ca
RD
20 # This could also be done by getting the window's default font;
21 # either way, we need to have a font loaded for later on.
c8ace611 22 #self.SetBackgroundColour("WHITE")
8fa876ca 23 self.font = wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL)
c8ace611 24
8fa876ca
RD
25 # Create drawing area and set its font
26 dc = wx.ClientDC(self)
c8ace611
RD
27 dc.SetFont(self.font)
28
8fa876ca
RD
29 # Using GetFullTextExtent(), we calculate a basic 'building block'
30 # that will be used to draw a depiction of the color list. We're
31 # using 'Wy' as the model becuase 'W' is a wide character and 'y'
32 # has a descender. This constitutes a 'worst case' scenario, which means
33 # that no matter what we draw later, text-wise, we'll have room for it
34 w,h,d,e = dc.GetFullTextExtent("Wy")
35
36 # Height plus descender
c8ace611 37 self.textHeight = h + d
8fa876ca
RD
38
39 # Pad a little bit
c8ace611 40 self.lineHeight = self.textHeight + 5
8fa876ca
RD
41
42 # ... and this is the basic width.
c8ace611
RD
43 self.cellWidth = w
44
8fa876ca 45 # jmg 11/8/03: why 24?
c8ace611 46 numCells = 24
8fa876ca
RD
47
48 # 'prep' our scroll bars.
49 self.SetScrollbars(
50 self.cellWidth, self.lineHeight, numCells, len(self.clrList) + 2
51 )
0c8f2860
RD
52
53 # Event handlers - moved here so events won't fire before init is
54 # finished.
095315e2 55 self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
0c8f2860
RD
56 self.Bind(wx.EVT_PAINT, self.OnPaint)
57 self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)
c8ace611
RD
58
59
8fa876ca 60 # tile the background bitmap loaded in __init__()
c8ace611 61 def TileBackground(self, dc):
c8ace611
RD
62 sz = self.GetClientSize()
63 w = self.bg_bmp.GetWidth()
64 h = self.bg_bmp.GetHeight()
65
66 # adjust for scrolled position
67 spx, spy = self.GetScrollPixelsPerUnit()
68 vsx, vsy = self.GetViewStart()
69 dx, dy = (spx * vsx) % w, (spy * vsy) % h
70
71 x = -dx
8fa876ca 72
c8ace611
RD
73 while x < sz.width:
74 y = -dy
75 while y < sz.height:
d7403ad2 76 dc.DrawBitmap(self.bg_bmp, x, y)
c8ace611 77 y = y + h
c8ace611 78
8fa876ca 79 x = x + w
c8ace611 80
8fa876ca 81 # Redraw the background over a 'damaged' area.
c8ace611
RD
82 def OnEraseBackground(self, evt):
83 dc = evt.GetDC()
8fa876ca 84
c8ace611 85 if not dc:
8fa876ca 86 dc = wx.ClientDC(self)
b166c703 87 rect = self.GetUpdateRegion().GetBox()
4da6d35e 88 dc.SetClippingRect(rect)
8fa876ca 89
c8ace611
RD
90 self.TileBackground(dc)
91
92
93 def OnPaint(self, evt):
8fa876ca 94 dc = wx.PaintDC(self)
c8ace611
RD
95 self.PrepareDC(dc)
96 self.Draw(dc, self.GetUpdateRegion(), self.GetViewStart())
97
98
99 def Draw(self, dc, rgn=None, vs=None):
c8ace611 100 dc.SetTextForeground("BLACK")
8fa876ca 101 dc.SetPen(wx.Pen("BLACK", 1, wx.SOLID))
c8ace611
RD
102 dc.SetFont(self.font)
103 colours = self.clrList
104 numColours = len(colours)
105
106 if rgn:
8fa876ca
RD
107 # determine the subset of the color list that has been exposed
108 # and needs drawn. This is based on all the precalculation we
109 # did in __init__()
c8ace611
RD
110 rect = rgn.GetBox()
111 pixStart = vs[1]*self.lineHeight + rect.y
112 pixStop = pixStart + rect.height
113 start = pixStart / self.lineHeight - 1
114 stop = pixStop / self.lineHeight
115 else:
116 start = 0
b166c703 117 stop = numColours
c8ace611
RD
118
119 for line in range(max(0,start), min(stop,numColours)):
dc9876fb 120 clr = colours[line][0]
c8ace611 121 y = (line+1) * self.lineHeight + 2
8fa876ca 122
d7403ad2 123 dc.DrawText(clr, self.cellWidth, y)
c8ace611 124
8fa876ca 125 brush = wx.Brush(clr, wx.SOLID)
c8ace611 126 dc.SetBrush(brush)
dc9876fb 127 dc.DrawRectangle(10 * self.cellWidth, y,
d7403ad2 128 6 * self.cellWidth, self.textHeight)
dc9876fb
RD
129
130 dc.DrawText(str(tuple(colours[line][1:])),
131 18 * self.cellWidth, y)
c8ace611
RD
132
133
299647ac
RD
134# On wxGTK there needs to be a panel under wx.ScrolledWindows if they are
135# going to be in a wxNotebook. And, in this demo, we are.
8fa876ca 136class TestPanel(wx.Panel):
b166c703 137 def __init__(self, parent):
8fa876ca 138 wx.Panel.__init__(self, parent, -1)
b166c703 139 self.win = TestWindow(self)
8fa876ca
RD
140 self.Bind(wx.EVT_SIZE, self.OnSize)
141
b166c703
RD
142
143 def OnSize(self, evt):
144 self.win.SetSize(evt.GetSize())
145
146
c8ace611
RD
147
148#----------------------------------------------------------------------
149
150
151def runTest(frame, nb, log):
8b9a4190 152 # This loads a whole bunch of new color names and values
8fa876ca
RD
153 # into TheColourDatabase
154 #
155 # Note 11/24/03 - jg - I moved this into runTest() because
156 # there must be a wx.App existing before this function
157 # can be called - this is a change from 2.4 -> 2.5.
95bfd958 158 wx.lib.colourdb.updateColourDB()
8b9a4190 159
b166c703 160 win = TestPanel(nb)
8fa876ca 161
c8ace611
RD
162 return win
163
164#----------------------------------------------------------------------
165
166overview = """
8fa876ca
RD
167<html>
168<body>
169<B><font size=+2>ColourDB</font></b>
170
171<p>wxWindows maintains a database of standard RGB colours for a predefined
172set of named colours (such as "BLACK'', "LIGHT GREY''). The application
173may add to this set if desired by using Append. There is only one instance
174of this class: <b>TheColourDatabase</b>.
175
176<p>The <code>colourdb</code> library is a lightweight API that pre-defines
177a multitude of colors for you to use 'out of the box', and this demo serves
178to show you these colors (it also serves as a handy reference).
179
180<p>A secondary benefit of this demo is the use of the <b>ScrolledWindow</b> class
181and the use of various *DC() classes, including background tiling and the use of
182font data to generate a "building block" type of construct for repetitive use.
183
184<p>
185<B><font size=+2>Important note</font></b>
186
187<p>
188With implementation of V2.5 and later, it is required to have a wx.App already
189initialized before <b><code>wx.updateColourDB()</code></b> can be called.
190Trying to do otherwise will cause an exception to be raised.
191</body>
192</html>
c8ace611 193"""
1fded56b
RD
194
195
196if __name__ == '__main__':
197 import sys,os
198 import run
8eca4fef 199 run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
1fded56b 200