X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/185d7c3ee4c6e4a9ddaf811ae38e57d68a0fdff3..f63e3ebbe3272b9690aa2530e0c3048d3f37c7c7:/wxPython/demo/wxButton.py diff --git a/wxPython/demo/wxButton.py b/wxPython/demo/wxButton.py index 7ed3113215..2c763d7f70 100644 --- a/wxPython/demo/wxButton.py +++ b/wxPython/demo/wxButton.py @@ -1,6 +1,8 @@ from wxPython.wx import * +import images + #---------------------------------------------------------------------- class TestPanel(wxPanel): @@ -19,18 +21,14 @@ class TestPanel(wxPanel): b.SetToolTipString("This is a Hello button...") - bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP) - + bmp = images.getTest2Bitmap() mask = wxMaskColour(bmp, wxBLUE) bmp.SetMask(mask) - print bmp.GetWidth(), bmp.GetHeight() - 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())