1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
2001-04-09 15:36:36 -04:00
|
|
|
import images
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
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))
|
|
|
|
|
2001-04-09 15:36:36 -04:00
|
|
|
bmp = images.getTest2Bitmap()
|
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()))
|
|
|
|
|
2002-02-26 17:35:10 -05:00
|
|
|
bmp = images.getRobinBitmap()
|
2001-02-16 03:19:50 -05:00
|
|
|
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
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-07-02 19:13:10 -04:00
|
|
|
overview = """\
|
|
|
|
"""
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-07-02 19:13:10 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|