- 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 )
+void wxStaticText::OnDraw( wxDC &dc )
+{
+ if (m_width <= 0 || m_height <= 0)
+ return;
+
+ if ( !IsWindowHilited( (WindowRef) MacGetRootWindow() ) &&
+ ( GetBackgroundColour() == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE )
+ || GetBackgroundColour() == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) ) )
+ {
+ dc.SetTextForeground( wxColour( 0x80 , 0x80 , 0x80 ) ) ;
+ }
+ else
+ {
+ dc.SetTextForeground( GetForegroundColour() ) ;
+ }
+
+ wxString paragraph;
+ int i = 0 ;
+ wxString text = m_label;
+ while (i < text.Length())