1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
|
|
|
import string
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestPanel(wxPanel):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
wxPanel.__init__(self, parent, -1)
|
|
|
|
self.log = log
|
|
|
|
self.count = 0
|
|
|
|
|
|
|
|
wxStaticText(self, -1, "This is a wxStaticBitmap.", wxPoint(45, 15))
|
|
|
|
|
|
|
|
bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
|
2001-02-16 03:19:50 -05:00
|
|
|
mask = wxMaskColour(bmp, wxBLUE)
|
|
|
|
bmp.SetMask(mask)
|
1999-04-29 23:29:54 -04:00
|
|
|
wxStaticBitmap(self, -1, bmp, wxPoint(80, 50),
|
|
|
|
wxSize(bmp.GetWidth(), bmp.GetHeight()))
|
|
|
|
|
2001-02-16 03:19:50 -05:00
|
|
|
bmp = wxBitmap('bitmaps/robin.jpg', wxBITMAP_TYPE_JPEG)
|
|
|
|
wxStaticBitmap(self, -1, bmp, (80, 150))
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2001-02-16 03:19:50 -05:00
|
|
|
wxStaticText(self, -1, "Hey, if Ousterhout can do it, so can I.",
|
|
|
|
(200, 175))
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestPanel(nb, log)
|
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
"""
|