]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/demo/wxButton.py
2 from wxPython
.wx
import *
4 #----------------------------------------------------------------------
6 class TestPanel(wxPanel
):
7 def __init__(self
, parent
, log
):
8 wxPanel
.__init
__(self
, parent
, -1)
11 b
= wxButton(self
, 10, "Hello", wxPoint(20, 20))
12 EVT_BUTTON(self
, 10, self
.OnClick
)
13 b
.SetBackgroundColour(wxBLUE
)
14 b
.SetForegroundColour(wxWHITE
)
17 wxButton(self
, 20, "HELLO AGAIN!", wxPoint(20, 60), wxSize(90, 45))
18 EVT_BUTTON(self
, 20, self
.OnClick
)
20 bmp
= wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP
)
21 if wxPlatform
== '__WXMSW__':
22 mask
= wxMaskColour(bmp
, wxBLUE
)
24 wxBitmapButton(self
, 30, bmp
, wxPoint(140, 20),
25 wxSize(bmp
.GetWidth()+10, bmp
.GetHeight()+10))
26 EVT_BUTTON(self
, 30, self
.OnClick
)
29 def OnClick(self
, event
):
30 self
.log
.WriteText("Click! (%d)\n" % event
.GetId())
33 #----------------------------------------------------------------------
35 def runTest(frame
, nb
, log
):
36 win
= TestPanel(nb
, log
)
39 #----------------------------------------------------------------------