]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxButton.py
disable edit control before insert/delete row/col
[wxWidgets.git] / utils / wxPython / demo / wxButton.py
index 2ec66651a661b8d050f6fd3a24db65b93ff97291..d5ccab8493e0f5036e504a092dbeb9c18e05e49f 100644 (file)
@@ -10,16 +10,18 @@ class TestPanel(wxPanel):
 
         b = wxButton(self, 10, "Hello", wxPoint(20, 20))
         EVT_BUTTON(self, 10, self.OnClick)
-        b.SetDefault()
         b.SetBackgroundColour(wxBLUE)
         b.SetForegroundColour(wxWHITE)
+        b.SetDefault()
 
         wxButton(self, 20, "HELLO AGAIN!", wxPoint(20, 60), wxSize(90, 45))
         EVT_BUTTON(self, 20, self.OnClick)
 
         bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
+        # the mask is still having troubles on win95/98...
         mask = wxMaskColour(bmp, wxBLUE)
         bmp.SetMask(mask)
+
         wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
                        wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
         EVT_BUTTON(self, 30, self.OnClick)