]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxStaticBitmap.py
Images can now be embedded in Python source files.
[wxWidgets.git] / wxPython / demo / wxStaticBitmap.py
1
2 from wxPython.wx import *
3
4 import string
5 import images
6
7 #----------------------------------------------------------------------
8
9 class TestPanel(wxPanel):
10 def __init__(self, parent, log):
11 wxPanel.__init__(self, parent, -1)
12 self.log = log
13 self.count = 0
14
15 wxStaticText(self, -1, "This is a wxStaticBitmap.", wxPoint(45, 15))
16
17 bmp = images.getTest2Bitmap()
18 mask = wxMaskColour(bmp, wxBLUE)
19 bmp.SetMask(mask)
20 wxStaticBitmap(self, -1, bmp, wxPoint(80, 50),
21 wxSize(bmp.GetWidth(), bmp.GetHeight()))
22
23 bmp = images.getRobinBitmap()
24 wxStaticBitmap(self, -1, bmp, (80, 150))
25
26 wxStaticText(self, -1, "Hey, if Ousterhout can do it, so can I.",
27 (200, 175))
28
29
30 #----------------------------------------------------------------------
31
32 def runTest(frame, nb, log):
33 win = TestPanel(nb, log)
34 return win
35
36 #----------------------------------------------------------------------
37
38
39
40
41
42
43
44
45
46
47 overview = """\
48 """