+ 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 ;
+ }
+ }
+}
+
+void wxStaticText::OnPaint( wxPaintEvent &event )
+{
+ wxPaintDC dc(this);
+ OnDraw( dc ) ;