1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
2001-04-09 19:36:36 +00:00
|
|
|
import images
|
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestPanel(wxPanel):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
wxPanel.__init__(self, parent, -1)
|
|
|
|
self.log = log
|
|
|
|
|
1999-12-07 18:20:01 +00:00
|
|
|
b = wxButton(self, 10, "Hello", wxPoint(20, 20))
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_BUTTON(self, 10, self.OnClick)
|
1999-12-07 18:20:01 +00:00
|
|
|
b.SetBackgroundColour(wxBLUE)
|
|
|
|
b.SetForegroundColour(wxWHITE)
|
1999-12-23 20:05:08 +00:00
|
|
|
b.SetDefault()
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2000-11-21 03:44:14 +00:00
|
|
|
b = wxButton(self, 20, "HELLO AGAIN!", wxPoint(20, 60), wxSize(90, 45))
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_BUTTON(self, 20, self.OnClick)
|
|
|
|
|
2000-11-21 03:44:14 +00:00
|
|
|
b.SetToolTipString("This is a Hello button...")
|
|
|
|
|
2001-04-09 19:36:36 +00:00
|
|
|
bmp = images.getTest2Bitmap()
|
2000-02-02 06:37:06 +00:00
|
|
|
mask = wxMaskColour(bmp, wxBLUE)
|
|
|
|
bmp.SetMask(mask)
|
2000-01-31 21:07:04 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
|
|
|
|
wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
|
|
|
|
EVT_BUTTON(self, 30, self.OnClick)
|
|
|
|
|
|
|
|
def OnClick(self, event):
|
|
|
|
self.log.WriteText("Click! (%d)\n" % event.GetId())
|
|
|
|
|
1999-10-06 16:27:10 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestPanel(nb, log)
|
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
"""
|
|
|
|
|
|
|
|
|