]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/Mask.py
Call event.Skip in OnSize
[wxWidgets.git] / wxPython / demo / Mask.py
CommitLineData
9b3d3bc4 1
8fa876ca 2import wx
9b3d3bc4
RD
3
4#----------------------------------------------------------------------
5
8e425133 6logicList = [
8fa876ca
RD
7 ('wx.AND', wx.AND),
8 ('wx.AND_INVERT', wx.AND_INVERT),
9 ('wx.AND_REVERSE', wx.AND_REVERSE),
10 ('wx.CLEAR', wx.CLEAR),
11 ('wx.COPY', wx.COPY),
12 ('wx.EQUIV', wx.EQUIV),
13 ('wx.INVERT', wx.INVERT),
14 ('wx.NAND', wx.NAND),
8e425133
RD
15
16 # this one causes an assert on wxGTK, and doesn't seem to
17 # do much on MSW anyway, so I'll just take it out....
18 #('wxNOR', wxNOR),
19
8fa876ca
RD
20 ('wx.NO_OP', wx.NO_OP),
21 ('wx.OR', wx.OR),
22 ('wx.OR_INVERT', wx.OR_INVERT),
23 ('wx.OR_REVERSE', wx.OR_REVERSE),
24 ('wx.SET', wx.SET),
25 ('wx.SRC_INVERT', wx.SRC_INVERT),
26 ('wx.XOR', wx.XOR),
8e425133 27]
9b3d3bc4 28
96bfd053
RD
29import images
30
8fa876ca 31class TestMaskWindow(wx.ScrolledWindow):
9b3d3bc4 32 def __init__(self, parent):
8fa876ca
RD
33 wx.ScrolledWindow.__init__(self, parent, -1)
34 self.SetBackgroundColour(wx.Colour(0,128,0))
9b3d3bc4
RD
35
36 # A reference bitmap that we won't mask
96bfd053 37 self.bmp_nomask = images.getTestStar2Bitmap()
9b3d3bc4
RD
38
39 # One that we will
96bfd053 40 self.bmp_withmask = images.getTestStar2Bitmap()
9b3d3bc4
RD
41
42 # this mask comes from a monochrome bitmap
0482c494 43 self.bmp_themask = images.getTestMaskBitmap()
8fa876ca 44 mask = wx.Mask(self.bmp_themask)
9b3d3bc4
RD
45
46 # set the mask on our bitmap
47 self.bmp_withmask.SetMask(mask)
48
49 # Now we'll create a mask in a bit of an easier way, by picking a
50 # colour in the image that is to be the transparent colour.
96bfd053 51 self.bmp_withcolourmask = images.getTestStar2Bitmap()
8fa876ca 52 mask = wx.MaskColour(self.bmp_withcolourmask, wx.WHITE)
9b3d3bc4
RD
53 self.bmp_withcolourmask.SetMask(mask)
54
f6bcfd97 55 self.SetScrollbars(20, 20, 700/20, 460/20)
9b3d3bc4 56
8fa876ca 57 self.Bind(wx.EVT_PAINT, self.OnPaint)
9b3d3bc4
RD
58
59
60 def OnPaint (self, e):
8fa876ca 61 dc = wx.PaintDC(self)
9b3d3bc4 62 self.PrepareDC(dc)
8fa876ca 63 dc.SetTextForeground(wx.WHITE)
9b3d3bc4
RD
64
65 # make an interesting background...
8fa876ca 66 dc.SetPen(wx.MEDIUM_GREY_PEN)
9b3d3bc4 67 for i in range(100):
fd3f2efe 68 dc.DrawLine((0,i*10), (i*10,0))
9b3d3bc4
RD
69
70 # draw raw image, mask, and masked images
fd3f2efe
RD
71 dc.DrawText('original image', (0,0))
72 dc.DrawBitmap(self.bmp_nomask, (0,20), 0)
73 dc.DrawText('with colour mask', (0,100))
74 dc.DrawBitmap(self.bmp_withcolourmask, (0,120), 1)
75 dc.DrawText('the mask image', (0,200))
76 dc.DrawBitmap(self.bmp_themask, (0,220), 0)
77 dc.DrawText('masked image', (0,300))
78 dc.DrawBitmap(self.bmp_withmask, (0,320), 1)
9b3d3bc4
RD
79
80 cx,cy = self.bmp_themask.GetWidth(), self.bmp_themask.GetHeight()
81
82 # draw array of assorted blit operations
8fa876ca 83 mdc = wx.MemoryDC()
8e425133 84 i = 0
8fa876ca 85
8e425133 86 for text, code in logicList:
854862f5 87 x,y = 120+150*(i%4), 20+100*(i/4)
fd3f2efe 88 dc.DrawText(text, (x, y-20))
9b3d3bc4 89 mdc.SelectObject(self.bmp_withcolourmask)
fd3f2efe 90 dc.Blit((x,y), (cx,cy), mdc, (0,0), code, True)
8e425133 91 i = i + 1
9b3d3bc4
RD
92
93
299647ac 94# On wxGTK there needs to be a panel under wx.ScrolledWindows if they are
b166c703 95# going to be in a wxNotebook...
8fa876ca 96class TestPanel(wx.Panel):
b166c703 97 def __init__(self, parent, ID):
8fa876ca 98 wx.Panel.__init__(self, parent, ID)
b166c703 99 self.win = TestMaskWindow(self)
8fa876ca 100 self.Bind(wx.EVT_SIZE, self.OnSize)
b166c703
RD
101
102 def OnSize(self, evt):
103 self.win.SetSize(evt.GetSize())
9b3d3bc4
RD
104
105
106#----------------------------------------------------------------------
107
108def runTest(frame, nb, log):
b166c703 109 win = TestPanel(nb, -1)
9b3d3bc4
RD
110 return win
111
112#----------------------------------------------------------------------
113
114
9b3d3bc4 115overview = """\
8fa876ca
RD
116This class encapsulates a monochrome mask bitmap, where the masked area is black
117and the unmasked area is white. When associated with a bitmap and drawn in a device
118context, the unmasked area of the bitmap will be drawn, and the masked area will
119not be drawn.
120
121This example shows not only how to create a Mask, but the effects of the Device
122Context (dc) <code>Blit()</code> method's logic codes.
9b3d3bc4 123"""
1e4a197e
RD
124
125
126
127if __name__ == '__main__':
128 import sys,os
129 import run
130 run.main(['', os.path.basename(sys.argv[0])])
131