]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxStaticBitmap.py
2 from wxPython
.wx
import *
7 #----------------------------------------------------------------------
9 class TestPanel(wxPanel
):
10 def __init__(self
, parent
, log
):
11 wxPanel
.__init
__(self
, parent
, -1)
15 wxStaticText(self
, -1, "This is a wxStaticBitmap.", wxPoint(45, 15))
17 bmp
= images
.getTest2Bitmap()
18 mask
= wxMaskColour(bmp
, wxBLUE
)
20 wxStaticBitmap(self
, -1, bmp
, wxPoint(80, 50),
21 wxSize(bmp
.GetWidth(), bmp
.GetHeight()))
23 bmp
= images
.getRobinBitmap()
24 wxStaticBitmap(self
, -1, bmp
, (80, 150))
26 wxStaticText(self
, -1, "Hey, if Ousterhout can do it, so can I.",
30 #----------------------------------------------------------------------
32 def runTest(frame
, nb
, log
):
33 win
= TestPanel(nb
, log
)
36 #----------------------------------------------------------------------