- 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 ;
- wxString paragraph ;
- int i = 0 ;
- int laststop = 0 ;
- long width, height ;
-
- while( i < text.Length() )
- {
- if( text[i] == 13 || text[i] == 10)
- {
- paragraph = text.Mid( laststop , i - laststop ) ;
- while( paragraph.Length() > 0 )
- {
- dc.GetTextExtent( paragraph , &width , &height ) ;
- if ( width > m_width )
- {
- for ( int p = paragraph.Length() -1 ; p > 0 ; --p )
- {
- if ( paragraph[p]=='.' )
- {
- dc.GetTextExtent( paragraph.Left(p+1) , &width , &height ) ;
- if ( width <= m_width )
- {
- int pos = x ;
- if ( HasFlag( wxALIGN_CENTER ) )
- {
- pos += ( m_width - width ) / 2 ;
- }
- else if ( HasFlag( wxALIGN_RIGHT ) )
- {
- pos += ( m_width - width ) ;
- }
- dc.DrawText( paragraph.Left(p+1), pos , y) ;
- y += height ;
- paragraph = paragraph.Mid(p+1) ;
- break ;
- }
- }
- if ( paragraph[p]==' ' )
- {
- dc.GetTextExtent( paragraph.Left(p) , &width , &height ) ;
- if ( width <= m_width )
- {
- int pos = x ;
- if ( HasFlag( wxALIGN_CENTER ) )
- {
- pos += ( m_width - width ) / 2 ;
- }
- else if ( HasFlag( wxALIGN_RIGHT ) )
- {
- pos += ( m_width - width ) ;
- }
- dc.DrawText( paragraph.Left(p), pos , y) ;
- y += height ;
- paragraph = paragraph.Mid(p+1) ;
- break ;
- }
- }
- }
- }
- else
- {
- dc.DrawText( paragraph, x , y) ;
- paragraph="";
- y += height ;
- }
- }
- laststop = i+1 ;
- }
- ++i ;
- }
- paragraph = text.Mid( laststop , text.Length() - laststop ) ;
- while( paragraph.Length() > 0 )
- {
- dc.GetTextExtent( paragraph , &width , &height ) ;
- if ( width > m_width )
- {
- for ( int p = paragraph.Length() -1 ; p > 0 ; --p )
- {
- if ( paragraph[p]=='.' )
- {
- dc.GetTextExtent( paragraph.Left(p+1) , &width , &height ) ;
- if ( width <= m_width )
- {
- int pos = x ;
- if ( HasFlag( wxALIGN_CENTER ) )
- {
- pos += ( m_width - width ) / 2 ;
- }
- else if ( HasFlag( wxALIGN_RIGHT ) )
- {
- pos += ( m_width - width ) ;
- }
- dc.DrawText( paragraph.Left(p+1), pos , y) ;
- y += height ;
- paragraph = paragraph.Mid(p+1) ;
- break ;
- }
- }
- if ( paragraph[p]==' ' )
- {
- dc.GetTextExtent( paragraph.Left(p) , &width , &height ) ;
- if ( width <= m_width )
- {
- int pos = x ;
- if ( HasFlag( wxALIGN_CENTER ) )
- {
- pos += ( m_width - width ) / 2 ;
- }
- else if ( HasFlag( wxALIGN_RIGHT ) )
- {
- pos += ( m_width - width ) ;
- }
- dc.DrawText( paragraph.Left(p), pos , y) ;
- y += height ;
- paragraph = paragraph.Mid(p+1) ;
- break ;
- }
- }
- }
- }
- else
- {
- int pos = x ;
- if ( HasFlag( wxALIGN_CENTER ) )
- {
- pos += ( m_width - width ) / 2 ;
- }
- else if ( HasFlag( wxALIGN_RIGHT ) )
- {
- pos += ( m_width - width ) ;
- }
- dc.DrawText( paragraph, pos , y) ;
- paragraph="";
- y += height ;
- }
- }
+ // try the built-in best size if available
+ Boolean former = m_peer->GetData<Boolean>( kControlStaticTextIsMultilineTag);
+ m_peer->SetData( kControlStaticTextIsMultilineTag, (Boolean)0 );
+ m_peer->GetBestRect( &bestsize ) ;
+ m_peer->SetData( kControlStaticTextIsMultilineTag, former );
+ if ( !EmptyRect( &bestsize ) )
+ {
+ bounds.h = bestsize.right - bestsize.left ;
+ bounds.v = bestsize.bottom - bestsize.top ;
+ }
+ else
+ {
+ ControlFontStyleRec controlFont;
+ OSStatus err = m_peer->GetData<ControlFontStyleRec>( kControlEntireControl, kControlFontStyleTag, &controlFont );
+ verify_noerr( err );
+
+ SInt16 baseline;
+ wxMacCFStringHolder str( m_label, m_font.GetEncoding() );
+
+ if ( m_font.MacGetThemeFontID() != kThemeCurrentPortFont )
+ {
+ err = GetThemeTextDimensions(
+ (!m_label.empty() ? (CFStringRef)str : CFSTR(" ")),
+ m_font.MacGetThemeFontID(), kThemeStateActive, false, &bounds, &baseline );
+ verify_noerr( err );
+ }
+ else
+ {
+ #if wxMAC_USE_CORE_GRAPHICS
+ wxClientDC dc(const_cast<wxStaticText*>(this));
+ wxCoord width, height ;
+ dc.GetTextExtent( m_label , &width, &height);
+ bounds.h = width;
+ bounds.v = height;
+ #else
+ wxMacWindowStateSaver sv( this );
+ ::TextFont( m_font.MacGetFontNum() );
+ ::TextSize( (short)(m_font.MacGetFontSize()) );
+ ::TextFace( m_font.MacGetFontStyle() );
+
+ err = GetThemeTextDimensions(
+ (!m_label.empty() ? (CFStringRef)str : CFSTR(" ")),
+ kThemeCurrentPortFont, kThemeStateActive, false, &bounds, &baseline );
+ verify_noerr( err );
+ #endif
+ }
+
+ if ( m_label.empty() )
+ bounds.h = 0;
+ }
+ bounds.h += MacGetLeftBorderSize() + MacGetRightBorderSize();
+ bounds.v += MacGetTopBorderSize() + MacGetBottomBorderSize();
+
+ return wxSize( bounds.h, bounds.v );