- 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 ;
- }
- }
+ Point bounds ;
+ SInt16 baseline ;
+ wxMacCFStringHolder str(m_label , m_font.GetEncoding() ) ;
+ if ( m_font.MacGetThemeFontID() != kThemeCurrentPortFont )
+ verify_noerr( GetThemeTextDimensions( (m_label.Length() > 0 ? ((CFStringRef) str ) : CFSTR(" ") ) , m_font.MacGetThemeFontID() , kThemeStateActive , false , &bounds , &baseline ) ) ;
+ else
+ {
+ wxMacWindowStateSaver sv( this ) ;
+ ::TextFont( m_font.MacGetFontNum() ) ;
+ ::TextSize( (short)( m_font.MacGetFontSize()) ) ;
+ ::TextFace( m_font.MacGetFontStyle() ) ;
+ verify_noerr( GetThemeTextDimensions( (m_label.Length() > 0 ? ((CFStringRef) str ) : CFSTR(" ") ) , kThemeCurrentPortFont , kThemeStateActive , false , &bounds , &baseline ) ) ;
+ }
+ if ( m_label.Length() == 0 )
+ bounds.h = 0 ;
+
+ bounds.h += MacGetLeftBorderSize() + MacGetRightBorderSize() ;
+ bounds.v += MacGetTopBorderSize() + MacGetBottomBorderSize() ;
+ return wxSize(bounds.h, bounds.v);