| 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 | # 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) |
| 28 | wxStaticBitmap(self, -1, bmp, (80, 150)) |
| 29 | |
| 30 | wxStaticText(self, -1, "Hey, if Ousterhout can do it, so can I.", |
| 31 | (200, 175)) |
| 32 | |
| 33 | |
| 34 | #---------------------------------------------------------------------- |
| 35 | |
| 36 | def runTest(frame, nb, log): |
| 37 | win = TestPanel(nb, log) |
| 38 | return win |
| 39 | |
| 40 | #---------------------------------------------------------------------- |
| 41 | |
| 42 | |
| 43 | |
| 44 | |
| 45 | |
| 46 | |
| 47 | |
| 48 | |
| 49 | |
| 50 | |
| 51 | overview = """\ |
| 52 | """ |