#endif
#include "wx/mac/private.h"
-#include "ATSUnicode.h"
-#include "TextCommon.h"
-#include "TextEncodingConverter.h"
-#include "FixMath.h"
+#include <ATSUnicode.h>
+#include <TextCommon.h>
+#include <TextEncodingConverter.h>
+#include <FixMath.h>
#if !USE_SHARED_LIBRARY
IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject)
#endif
int i = 0 ;
int line = 0 ;
{
+#if 0 // we don't have to do all that here
while( i < length )
{
if( strtext[i] == 13 || strtext[i] == 10)
{
wxCharBuffer text = linetext.mb_str(wxConvLocal) ;
::DrawText( text , 0 , strlen(text) ) ;
+ if ( m_backgroundMode != wxTRANSPARENT )
+ {
+ Point bounds={0,0} ;
+ Rect background = frame ;
+ SInt16 baseline ;
+ ::GetThemeTextDimensions( mString,
+ kThemeCurrentPortFont,
+ kThemeStateActive,
+ false,
+ &bounds,
+ &baseline );
+ background.right = background.left + bounds.h ;
+ background.bottom = background.top + bounds.v ;
+ ::EraseRect( &background ) ;
+ }
line++ ;
::MoveTo( xx , yy + line*(fi.descent + fi.ascent + fi.leading) );
}
i++ ;
}
wxString linetext = strtext.Mid( laststop , i - laststop ) ;
+#endif // 0
+ wxString linetext = strtext ;
#if TARGET_CARBON
if ( useDrawThemeText )
{
#endif
{
wxCharBuffer text = linetext.mb_str(wxConvLocal) ;
+ if ( m_backgroundMode != wxTRANSPARENT )
+ {
+ Rect frame = { yy - fi.ascent + line*(fi.descent + fi.ascent + fi.leading) ,xx , yy - fi.ascent + (line+1)*(fi.descent + fi.ascent + fi.leading) , xx + 10000 } ;
+ short width = ::TextWidth( text , 0 , strlen(text) ) ;
+ frame.right = frame.left + width ;
+
+ ::EraseRect( &frame ) ;
+ }
::DrawText( text , 0 , strlen(text) ) ;
}
}
if ( width )
{
*width = 0 ;
+#if 0 // apparently we don't have to do all that
while( i < length )
{
if( strtext[i] == 13 || strtext[i] == 10)
}
wxString linetext = strtext.Mid( laststop , i - laststop ) ;
+#endif // 0
+ wxString linetext = strtext ;
#if TARGET_CARBON
if ( useGetThemeText )
{