]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/fontenum.cpp
corrected scrolling problems for controls, switched to separate wxSpinCtrl implementa...
[wxWidgets.git] / src / mac / fontenum.cpp
index f06fd5baaa524ece3e605cfe10e7e24d3d36183f..43aeb9a7a82b46ee044d4b5d2b89a73ac54add31 100644 (file)
@@ -37,6 +37,8 @@
 #include "wx/fontmap.h"
 #include "wx/fontutil.h"
 
 #include "wx/fontmap.h"
 #include "wx/fontutil.h"
 
+#include "wx/mac/private.h"
+
 // ----------------------------------------------------------------------------
 // private classes
 // ----------------------------------------------------------------------------
 // ----------------------------------------------------------------------------
 // private classes
 // ----------------------------------------------------------------------------
@@ -87,7 +89,7 @@ bool wxFontEnumeratorHelper::SetEncoding(wxFontEncoding encoding)
     wxNativeEncodingInfo info;
     if ( !wxGetNativeFontEncoding(encoding, &info) )
     {
     wxNativeEncodingInfo info;
     if ( !wxGetNativeFontEncoding(encoding, &info) )
     {
-        if ( !wxTheFontMapper->GetAltForEncoding(encoding, &info) )
+        if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )
         {
             // no such encodings at all
             return FALSE;
         {
             // no such encodings at all
             return FALSE;
@@ -102,7 +104,8 @@ bool wxFontEnumeratorHelper::SetEncoding(wxFontEncoding encoding)
 void wxFontEnumeratorHelper::DoEnumerate()
 {
        MenuHandle      menu ;
 void wxFontEnumeratorHelper::DoEnumerate()
 {
        MenuHandle      menu ;
-       Str255          name ;
+       Str255          p_name ;
+       char        c_name[256] ;
        short           lines ;
        
        menu = NewMenu( 32000 , "\pFont" )  ;
        short           lines ;
        
        menu = NewMenu( 32000 , "\pFont" )  ;
@@ -111,11 +114,16 @@ void wxFontEnumeratorHelper::DoEnumerate()
 
        for ( int i = 1 ; i < lines+1  ; i ++ )
        {
 
        for ( int i = 1 ; i < lines+1  ; i ++ )
        {
-               GetMenuItemText( menu , i , name ) ;
-               p2cstr( name ) ;
-               /*
-               
-                   if ( m_fixedOnly )
+           GetMenuItemText( menu , i , p_name ) ;
+#if TARGET_CARBON
+           p2cstrcpy( c_name, p_name ) ;
+#else
+               p2cstr( p_name ) ;
+           strcpy( c_name, (char *)p_name ) ;
+#endif
+           /*
+             
+             if ( m_fixedOnly )
            {
                // check that it's a fixed pitch font (there is *no* error here, the
                // flag name is misleading!)
            {
                // check that it's a fixed pitch font (there is *no* error here, the
                // flag name is misleading!)
@@ -136,7 +144,7 @@ void wxFontEnumeratorHelper::DoEnumerate()
            }
        
                */
            }
        
                */
-               m_fontEnum->OnFacename( name ) ;
+               m_fontEnum->OnFacename( c_name ) ;
        }
        DisposeMenu( menu ) ;
 }
        }
        DisposeMenu( menu ) ;
 }
@@ -162,7 +170,7 @@ bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
 
 bool wxFontEnumerator::EnumerateEncodings(const wxString& family)
 {
 
 bool wxFontEnumerator::EnumerateEncodings(const wxString& family)
 {
-    wxFAIL_MSG(wxT("TODO"));
+    wxFAIL_MSG(wxT("wxFontEnumerator::EnumerateEncodings() not yet implemented"));
 
     return TRUE;
 }
 
     return TRUE;
 }