]> git.saurik.com Git - wxWidgets.git/commitdiff
support themed foreground brushes
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Feb 2006 15:20:39 +0000 (15:20 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Feb 2006 15:20:39 +0000 (15:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37413 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dc.cpp

index 8b0d162f3377eb9232b87735541bd546a0d716bd..b3e3ef106a781582d8546590d4f8e15f472e80ff 100644 (file)
@@ -2155,7 +2155,21 @@ void wxDC::MacInstallBrush() const
     int brushStyle = m_brush.GetStyle();
     if (brushStyle == wxSOLID)
     {
-        ::PenPat(GetQDGlobalsBlack(&blackColor));
+        switch ( m_brush.MacGetBrushKind() )
+        {
+            case kwxMacBrushTheme :
+                {
+                    Pattern whiteColor ;
+                    ::BackPat(GetQDGlobalsWhite(&whiteColor));
+                    ::SetThemePen( m_brush.MacGetTheme() , wxDisplayDepth() , true ) ;
+                }   
+            break ;
+        
+            default :
+                ::PenPat(GetQDGlobalsBlack(&blackColor));
+                break ;
+                
+        }
     }
     else if (m_brush.IsHatch())
     {