]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/stattext.cpp
added missing cast for delete
[wxWidgets.git] / src / mac / stattext.cpp
index 33e784261d562bf4f91045a49702e2b2344c3d86..26f16be64248b34d6bdc7434da57249b9c8a3824 100644 (file)
@@ -15,6 +15,8 @@
 
 #include "wx/app.h"
 #include "wx/stattext.h"
 
 #include "wx/app.h"
 #include "wx/stattext.h"
+#include "wx/notebook.h"
+#include "wx/tabctrl.h"
 #include "wx/dc.h"
 #include "wx/dcclient.h"
 
 #include "wx/dc.h"
 #include "wx/dcclient.h"
 
@@ -61,8 +63,42 @@ void wxStaticText::OnDraw( wxDC &dc )
         return;
 
     PrepareDC(dc);
         return;
 
     PrepareDC(dc);
-    dc.Clear() ;
     
     
+    bool doClear = true ;
+       WindowRef window = GetMacRootWindow() ;
+       if ( window )
+       {
+               wxWindow* win = wxFindWinFromMacWindow( window ) ;
+               if ( win )
+               {
+                       wxWindow* parent = GetParent() ;
+                       while ( parent )
+                       {
+                               if( parent->MacGetWindowData() )
+                               {
+                                       break ;
+                               }
+                               
+                               if( parent->IsKindOf( CLASSINFO( wxNotebook ) ) ||  parent->IsKindOf( CLASSINFO( wxTabCtrl ) ))
+                               {
+                                       if ( ((wxControl*)parent)->GetMacControl() ) {
+                                               Rect rect = { -32767 , -32767 , 32767 , 32767 } ;
+                                               if ( DrawThemeTabPane != (void*)kUnresolvedCFragSymbolAddress )
+                                               {
+                                                 DrawThemeTabPane ( &rect, kThemeStateActive);
+                                                 doClear = false ;
+                                               }
+                                       }
+                                       break ;
+                               }
+                               
+                               parent = parent->GetParent() ;
+                       } 
+               }
+       }
+       if ( doClear )
+               dc.Clear() ;
+               
     int x = 0 ;
     int y = 0 ;
     wxString text = m_label ;
     int x = 0 ;
     int y = 0 ;
     wxString text = m_label ;