]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/BitmapButton.py
wxCheckListBox doesn't require wxUSE_OWNER_DRAWN when using WXUNIVERSAL
[wxWidgets.git] / wxPython / demo / BitmapButton.py
index c28562d38b8f7a0c5642e392c07c41cc8c87886b..8edea6b5ee10d6e805a223be493db3826ced27cc 100644 (file)
@@ -19,14 +19,14 @@ class TestPanel(wx.Panel):
 
             try:
                 bmp = wx.Bitmap("nosuchfile.bmp", wx.BITMAP_TYPE_BMP)
-                mask = wx.MaskColour(bmp, wx.BLUE)
+                mask = wx.Mask(bmp, wx.BLUE)
             except wx.PyAssertionError:
                 self.log.write("Caught wx.PyAssertionError!  I will fix the problem.\n")
                 bmp = images.getTest2Bitmap()
                 mask = wx.MaskColour(bmp, wx.BLUE)
         else:
             bmp = images.getTest2Bitmap()
-            mask = wx.MaskColour(bmp, wx.BLUE)
+            mask = wx.Mask(bmp, wx.BLUE)
 
         bmp.SetMask(mask)
         b = wx.BitmapButton(self, 30, bmp, (20, 20),
@@ -49,9 +49,9 @@ def runTest(frame, nb, log):
 
 
 overview = """<html><body>
-<h2>StaticBitmap</h2>
+<h2>BitmapButton</h2>
 
-<p>A StaticBitmap control displays a bitmap. It can have a separate bitmap for each button state: normal, selected, disabled.</p>
+<p>A BitmapButton control displays a bitmap. It can have a separate bitmap for each button state: normal, selected, disabled.</p>
 
 <p>The bitmaps to be displayed should have a small number of colours, such as 16, 
 to avoid palette problems.</p>