]> git.saurik.com Git - wxWidgets.git/commitdiff
test for mac theme brush
authorRobin Dunn <robin@alldunn.com>
Tue, 7 Nov 2006 21:43:51 +0000 (21:43 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 7 Nov 2006 21:43:51 +0000 (21:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/tests/test_macbrush.py [new file with mode: 0644]

diff --git a/wxPython/tests/test_macbrush.py b/wxPython/tests/test_macbrush.py
new file mode 100644 (file)
index 0000000..70238af
--- /dev/null
@@ -0,0 +1,25 @@
+import wx
+
+
+class TestPanel(wx.Panel):
+    def __init__(self, parent):
+        wx.Panel.__init__(self, parent)
+        self.Bind(wx.EVT_PAINT, self.OnPaint)
+
+    def OnPaint(self, evt):
+        dc = wx.PaintDC(self)
+        br = wx.Brush("light blue")
+        dc.SetBrush(br)
+        dc.DrawRectangle(10,10, 50,50)
+
+        br = wx.Brush(self.GetBackgroundColour())
+        br.MacSetTheme(1)
+        dc.SetBrush(br)
+        dc.DrawRectangle(80,10, 50,50)
+        
+
+app = wx.App(False)
+frm = wx.Frame(None)
+pnl = TestPanel(frm)
+frm.Show()
+app.MainLoop()