]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/AlphaDrawing.py
- undo/redo fixes for moving and cut/paste;
[wxWidgets.git] / wxPython / demo / AlphaDrawing.py
index 7023b7bedadc11a448f579c9b98626a34e5fdaa8..6fb15a97c3c933c63c81a8692915b3b00798edbd 100644 (file)
@@ -35,7 +35,13 @@ then these squares should be transparent.
             dc.SetBrush(wx.Brush(brushclr))
             rect.SetPosition(pos)
             dc.DrawRoundedRectangleRect(rect, 8)
-            
+
+        # some additional testing stuff
+        #dc.SetPen(wx.Pen(wx.Colour(0,0,255, 196)))
+        #dc.SetBrush(wx.Brush(wx.Colour(0,0,255, 64)))
+        #dc.DrawCircle(50, 275, 25)
+        #dc.DrawEllipse(100, 275, 75, 50)
+        
         
 #----------------------------------------------------------------------