-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathscrolleddoublebuffer.py
executable file
·291 lines (216 loc) · 8.65 KB
/
scrolleddoublebuffer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env python2.3
import wx
try:
print "Using version:", wx.__version__
except AttributeError:
print "Using version:", wx.__revision__
from wxPython.wx import *
import random
# This has been set up to optionally use the wxBufferedDC if
# USE_BUFFERED_DC is true, it will be used. Otherwise, it uses the raw
# wxMemory DC , etc.
USE_BUFFERED_DC = 0
class wxBufferedWindow(wxScrolledWindow):
"""
A Buffered window class.
To use it, subclass it and define a Draw(DC) method that takes a DC
to draw to. In that method, put the code needed to draw the picture
you want. The window will automatically be double buffered, and the
screen will be automatically updated when a Paint event is received.
When the drawing needs to change, you app needs to call the
UpdateDrawing() method. Since the drawing is stored in a bitmap, you
can also save the drawing to file by calling the
SaveToFile(self,file_name,file_type) method.
"""
def __init__(self, parent, id,
pos = wxDefaultPosition,
size = wxDefaultSize,
):
wxScrolledWindow.__init__(self, parent, id, pos, size) #, style)
self.thumb = 10
Width, Height = parent.GetClientSizeTuple()
# round to even multiple of self.thumb
Width = int(Width * 2 / self.thumb) * self.thumb
Height = int(Height * 2 / self.thumb) * self.thumb
# round Width and
self.SetScrollRate(self.thumb, self.thumb)
self.SetVirtualSize( (Width, Height) )
# self.SetVirtualSize( (self.thumb * noUnitsX, self.thumb * noUnitsY) )
#self.SetScrollbars(self.thumb, self.thumb, noUnitsX, noUnitsY )
Width, Height = self.GetVirtualSize()
# create a Buffer the vitual size
print "Virtual Size is:", self.GetVirtualSize()
self._Buffer = wxEmptyBitmap(Width, Height)
EVT_PAINT(self, self.OnPaint)
#EVT_SIZE(self, self.OnSize)
EVT_LEFT_DOWN(self, self.LeftDown)
def LeftDown(self, Event):
print "in LeftDown"
x, y = Event.GetPosition()
print "(x,y) is:)", (x, y)
print "Virtual XY is:", self.CalcUnscrolledPosition(x,y)
print "Virtual Size of Window is:", self.GetVirtualSize()
def Draw(self,dc):
## just here as a place holder.
## This method should be over-ridden when sub-classed
pass
def OnPaint(self, event):
# All that is needed here is to draw the buffer to screen
if USE_BUFFERED_DC:
dc = wxBufferedPaintDC(self, self._Buffer)
else:
dc = wxPaintDC(self)
self.PrepareDC(dc)
#print dc
#print self._Buffer
dc.DrawBitmap(self._Buffer,0,0)
def OnSize(self,event):
print "In OnSize"
print "Virtual Size is:", self.GetVirtualSize()
event.Skip()
# perhaps something needs to be done to make sure theuser doesn't make the window bigger than the viftual size.
def SaveToFile(self,FileName,FileType):
## This will save the contents of the buffer
## to the specified file. See the wxWindows docs for
## wxBitmap::SaveFile for the details
self._Buffer.SaveFile(FileName,FileType)
def UpdateDrawing(self):
"""
This would get called if the drawing needed to change, for whatever reason.
The idea here is that the drawing is based on some data generated
elsewhere in the system. IF that data changes, the drawing needs to
be updated.
"""
if USE_BUFFERED_DC:
dc = wxBufferedDC(wxClientDC(self), self._Buffer)
self.Draw(dc)
else:
print "updating the drawing"
# update the buffer
dc = wxMemoryDC()
dc.SelectObject(self._Buffer)
self.Draw(dc)
del dc
# update the screen
dc = wxClientDC(self)
self.PrepareDC(dc)
dc.DrawBitmap(self._Buffer, 0, 0)
#dc.Blit(0, 0, self.Width, self.Height, dc, 0, 0)
class DrawWindow(wxBufferedWindow):
def __init__(self, parent, id = -1):
## Any data the Draw() function needs must be initialized before
## calling wxBufferedWindow.__init__, as it will call the Draw
## function.
self.DrawData = {}
wxBufferedWindow.__init__(self, parent, id)
def Draw(self, dc):
print "In Draw"
print "DC size is:", dc.GetSize()
dc.BeginDrawing()
dc.SetBackground( wxBrush("White") )
dc.Clear() # make sure you clear the bitmap!
# Here's the actual drawing code.
for key,data in self.DrawData.items():
if key == "Rectangles":
dc.SetBrush(wxBLUE_BRUSH)
dc.SetPen(wxPen('VIOLET', 4))
for r in data:
dc.DrawRectangle(*r)
elif key == "Ellipses":
dc.SetBrush(wxBrush("GREEN YELLOW"))
dc.SetPen(wxPen('CADET BLUE', 2))
for r in data:
dc.DrawEllipse(*r)
elif key == "Polygons":
dc.SetBrush(wxBrush("SALMON"))
dc.SetPen(wxPen('VIOLET RED', 4))
for r in data:
dc.DrawPolygon(r)
dc.DrawText("(900,900)", 900, 900)
dc.EndDrawing()
class TestFrame(wxFrame):
def __init__(self):
wxFrame.__init__(self, NULL, -1, "Scrolled Double Buffered Test",
wxDefaultPosition,
size=(500,500),
#style=wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE
)
## Set up the MenuBar
MenuBar = wxMenuBar()
file_menu = wxMenu()
ID_EXIT_MENU = wxNewId()
file_menu.Append(ID_EXIT_MENU, "E&xit","Terminate the program")
EVT_MENU(self, ID_EXIT_MENU, self.OnQuit)
MenuBar.Append(file_menu, "&File")
draw_menu = wxMenu()
ID_DRAW_MENU = wxNewId()
draw_menu.Append(ID_DRAW_MENU, "&New Drawing","Update the Drawing Data")
EVT_MENU(self, ID_DRAW_MENU,self.NewDrawing)
BMP_ID = wxNewId()
draw_menu.Append(BMP_ID,'&Save Drawing\tAlt-I','')
EVT_MENU(self,BMP_ID, self.SaveToFile)
MenuBar.Append(draw_menu, "&Draw")
self.SetMenuBar(MenuBar)
self.Window = DrawWindow(self)
def OnQuit(self,event):
self.Close(true)
def NewDrawing(self,event):
self.Window.DrawData = self.MakeNewData()
self.Window.UpdateDrawing()
def SaveToFile(self,event):
dlg = wxFileDialog(self, "Choose a file name to save the image as a PNG to",
defaultDir = "",
defaultFile = "",
wildcard = "*.png",
style = wxSAVE)
if dlg.ShowModal() == wxID_OK:
self.Window.SaveToFile(dlg.GetPath(),wxBITMAP_TYPE_PNG)
dlg.Destroy()
def MakeNewData(self):
## This method makes some random data to draw things with.
MaxX, MaxY = self.Window.GetVirtualSize()
print "in MakeNewData", MaxX, MaxY
DrawData = {}
# make some random rectangles
l = []
for i in range(5):
w = random.randint(1,MaxX/2)
h = random.randint(1,MaxY/2)
x = random.randint(1,MaxX-w)
y = random.randint(1,MaxY-h)
l.append( (x,y,w,h) )
DrawData["Rectangles"] = l
# make some random ellipses
l = []
for i in range(5):
w = random.randint(1,MaxX/2)
h = random.randint(1,MaxY/2)
x = random.randint(1,MaxX-w)
y = random.randint(1,MaxY-h)
l.append( (x,y,w,h) )
DrawData["Ellipses"] = l
# Polygons
l = []
for i in range(3):
points = []
for j in range(random.randint(3,8)):
point = (random.randint(1,MaxX),random.randint(1,MaxY))
points.append(point)
l.append(points)
DrawData["Polygons"] = l
return DrawData
class DemoApp(wxApp):
def OnInit(self):
wxInitAllImageHandlers() # called so a PNG can be saved
frame = TestFrame()
frame.Show(true)
## initialize a drawing
## It doesn't seem like this should be here, but the Frame does
## not get sized until Show() is called, so it doesn't work if
## it is put in the __init__ method.
frame.NewDrawing(None)
self.SetTopWindow(frame)
return true
if __name__ == "__main__":
app = DemoApp(0)
app.MainLoop()