]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxStaticBitmap.py
added safety check to wxWindow::ReleaseMouse
[wxWidgets.git] / wxPython / demo / wxStaticBitmap.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4import string
96bfd053 5import images
cf694132
RD
6
7#----------------------------------------------------------------------
8
9class 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
96bfd053 17 bmp = images.getTest2Bitmap()
1b62f00d
RD
18 mask = wxMaskColour(bmp, wxBLUE)
19 bmp.SetMask(mask)
cf694132
RD
20 wxStaticBitmap(self, -1, bmp, wxPoint(80, 50),
21 wxSize(bmp.GetWidth(), bmp.GetHeight()))
22
493f1553
RD
23 # This one doesn't convert to the embedded format very well,
24 # (lots of colors so it explodes in size and takes a noticable
25 # amount of time to convert back to a bitmap.) So we'll just
26 # do it the old way
27 bmp = wxBitmap('bitmaps/robin.jpg', wxBITMAP_TYPE_JPEG)
1b62f00d 28 wxStaticBitmap(self, -1, bmp, (80, 150))
cf694132 29
1b62f00d
RD
30 wxStaticText(self, -1, "Hey, if Ousterhout can do it, so can I.",
31 (200, 175))
cf694132
RD
32
33
34#----------------------------------------------------------------------
35
36def runTest(frame, nb, log):
37 win = TestPanel(nb, log)
38 return win
39
40#----------------------------------------------------------------------
41
42
43
44
45
46
47
48
49
50
51overview = """\
52"""