1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/fontutil.cpp
3 // Purpose: font-related helper functions for wxMSW
4 // Author: Modified by David Webster for OS/2
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11 #define DEBUG_PRINTF(NAME) { static int raz=0; \
12 printf( #NAME " %i\n",raz); fflush(stdout); \
16 // ============================================================================
18 // ============================================================================
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
25 #pragma implementation "fontutil.h"
28 // For compilers that support precompilation, includes "wx.h".
29 #include "wx/wxprec.h"
33 #include "wx/string.h"
38 #include "wx/os2/private.h"
40 #include "wx/fontutil.h"
41 #include "wx/fontmap.h"
43 #include "wx/tokenzr.h"
45 // ============================================================================
47 // ============================================================================
49 // ----------------------------------------------------------------------------
50 // wxNativeEncodingInfo
51 // ----------------------------------------------------------------------------
53 // convert to/from the string representation: format is
54 // encodingid;facename[;charset]
56 bool wxNativeEncodingInfo::FromString(
60 wxStringTokenizer
vTokenizer(rsStr
, _T(";"));
61 wxString sEncid
= vTokenizer
.GetNextToken();
64 if (!sEncid
.ToLong(&lEnc
))
66 encoding
= (wxFontEncoding
)lEnc
;
67 facename
= vTokenizer
.GetNextToken();
71 wxString sTmp
= vTokenizer
.GetNextToken();
79 if ( wxSscanf(sTmp
, _T("%u"), &charset
) != 1 )
81 // should be a number!
86 } // end of wxNativeEncodingInfo::FromString
88 wxString
wxNativeEncodingInfo::ToString() const
92 sStr
<< (long)encoding
<< _T(';') << facename
;
96 sStr
<< _T(';') << charset
;
99 } // end of wxNativeEncodingInfo::ToString
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 bool wxGetNativeFontEncoding(
106 wxFontEncoding vEncoding
107 , wxNativeEncodingInfo
* pInfo
110 wxCHECK_MSG(pInfo
, FALSE
, _T("bad pointer in wxGetNativeFontEncoding") );
111 if (vEncoding
== wxFONTENCODING_DEFAULT
)
113 vEncoding
= wxFont::GetDefaultEncoding();
117 case wxFONTENCODING_ISO8859_1
:
118 case wxFONTENCODING_ISO8859_15
:
119 case wxFONTENCODING_CP1250
:
120 pInfo
->charset
= 1250;
123 case wxFONTENCODING_ISO8859_2
:
124 case wxFONTENCODING_CP1252
:
125 pInfo
->charset
= 1252;
128 case wxFONTENCODING_ISO8859_4
:
129 case wxFONTENCODING_ISO8859_10
:
130 pInfo
->charset
= 921; // what is baltic?
133 case wxFONTENCODING_ISO8859_5
:
134 case wxFONTENCODING_CP1251
:
135 pInfo
->charset
= 1251;
138 case wxFONTENCODING_ISO8859_6
:
139 pInfo
->charset
= 864;
142 case wxFONTENCODING_ISO8859_7
:
143 pInfo
->charset
= 869;
146 case wxFONTENCODING_ISO8859_8
:
147 pInfo
->charset
= 862;
150 case wxFONTENCODING_ISO8859_9
:
151 pInfo
->charset
= 857;
154 case wxFONTENCODING_ISO8859_11
:
155 pInfo
->charset
= 874; // what is thai
158 case wxFONTENCODING_CP437
:
159 pInfo
->charset
= 437;
163 wxFAIL_MSG(wxT("unsupported encoding"));
166 case wxFONTENCODING_SYSTEM
:
167 pInfo
->charset
= 850;
171 } // end of wxGetNativeFontEncoding
173 wxFontEncoding
wxGetFontEncFromCharSet(
177 wxFontEncoding eFontEncoding
;
183 eFontEncoding
= wxFONTENCODING_CP1250
;
187 eFontEncoding
= wxFONTENCODING_CP1252
;
191 eFontEncoding
= wxFONTENCODING_ISO8859_4
;
195 eFontEncoding
= wxFONTENCODING_CP1251
;
199 eFontEncoding
= wxFONTENCODING_ISO8859_6
;
203 eFontEncoding
= wxFONTENCODING_ISO8859_7
;
207 eFontEncoding
= wxFONTENCODING_ISO8859_8
;
211 eFontEncoding
= wxFONTENCODING_ISO8859_9
;
215 eFontEncoding
= wxFONTENCODING_ISO8859_11
;
219 eFontEncoding
= wxFONTENCODING_CP437
;
222 return eFontEncoding
;
223 } // end of wxGetNativeFontEncoding
225 bool wxTestFontEncoding(
226 const wxNativeEncodingInfo
& rInfo
232 hPS
= ::WinGetPS(HWND_DESKTOP
);
234 memset(&vLogFont
, '\0', sizeof(FATTRS
)); // all default values
235 vLogFont
.usRecordLength
= sizeof(FATTRS
);
236 vLogFont
.usCodePage
= rInfo
.charset
;
237 vLogFont
.lMaxBaselineExt
= 0L; // Outline fonts should use 0
238 vLogFont
.lAveCharWidth
= 0L; // Outline fonts should use 0
239 vLogFont
.fsFontUse
= FATTR_FONTUSE_OUTLINE
| // only outline fonts allowed
240 FATTR_FONTUSE_TRANSFORMABLE
; // may be transformed
242 strncpy(vLogFont
.szFacename
, rInfo
.facename
.c_str(), sizeof(vLogFont
.szFacename
));
244 if (!::GpiCreateLogFont( hPS
255 } // end of wxTestFontEncoding
257 // ----------------------------------------------------------------------------
258 // wxFont <-> LOGFONT conversion
259 // ----------------------------------------------------------------------------
262 LOGFONT
* pFattrs
// OS2 GPI FATTRS
263 , PFACENAMEDESC pFaceName
267 , wxString
& sFaceName
271 LONG lNumFonts
= 0L; // For system font count
272 ERRORID vError
; // For logging API errors
274 bool bInternalPS
= FALSE
; // if we have to create one
275 PFONTMETRICS pFM
= NULL
;
278 // Initial house cleaning to free data buffers and ensure we have a
279 // functional PS to work with
283 *phPS
= ::WinGetPS(HWND_DESKTOP
);
288 // Determine the number of fonts.
290 if((lNumFonts
= ::GpiQueryFonts( *phPS
294 ,(LONG
) sizeof(FONTMETRICS
)
301 vError
= ::WinGetLastError(wxGetInstance());
302 sError
= wxPMErrorToStr(vError
);
307 // Allocate space for the font metrics.
309 pFM
= new FONTMETRICS
[lNumFonts
+ 1];
312 // Retrieve the font metrics.
315 lTemp
= ::GpiQueryFonts( *phPS
319 ,(LONG
) sizeof(FONTMETRICS
)
329 // For debugging, delete later
331 for (int i
= 0; i
< lNumFonts
; i
++)
333 sVals
<< "Face: " << pFM
[i
].szFacename
334 << "Family: " << pFM
[i
].szFamilyname
335 << " PointSize: " << pFM
[i
].lEmHeight
336 << " Height: " << pFM
[i
].lXHeight
342 // Initialize FATTR and FACENAMEDESC
344 pFattrs
->usRecordLength
= sizeof(FATTRS
);
345 pFattrs
->fsFontUse
= FATTR_FONTUSE_OUTLINE
| // only outline fonts allowed
346 FATTR_FONTUSE_TRANSFORMABLE
; // may be transformed
348 pFattrs
->lMaxBaselineExt
= pFattrs
->lAveCharWidth
= 0;
349 pFattrs
->idRegistry
= 0;
352 pFaceName
->usSize
= sizeof(FACENAMEDESC
);
353 pFaceName
->usWidthClass
= FWIDTH_NORMAL
;
354 pFaceName
->usReserved
= 0;
355 pFaceName
->flOptions
= 0;
358 // This does the actual selection of fonts
360 wxOS2SelectMatchingFontByName( pFattrs
367 // We should now have the correct FATTRS set with the selected
368 // font, so now we need to generate an ID
370 long lNumLids
= ::GpiQueryNumberSetIds(*phPS
);
379 if(!::GpiQuerySetIds( *phPS
387 ::WinReleasePS(*phPS
);
391 for(unsigned long LCNum
= 0; LCNum
< lNumLids
; LCNum
++)
392 if(alIds
[LCNum
] == *pflId
)
394 if(*pflId
> 254) // wow, no id available!
397 ::WinReleasePS(*phPS
);
404 // Release and delete the current font
406 ::GpiSetCharSet(*phPS
, LCID_DEFAULT
);/* release the font before deleting */
407 ::GpiDeleteSetId(*phPS
, 1L); /* delete the logical font */
410 // Now build a facestring
414 strcpy(zFacename
, pFattrs
->szFacename
);
416 if(::GpiQueryFaceString( *phPS
423 vError
= ::WinGetLastError(vHabmain
);
425 sFaceName
= zFacename
;
426 *pbInternalPS
= bInternalPS
;
429 // That's it, we now have everything we need to actually create the font
431 } // end of wxFillLogFont
433 void wxOS2SelectMatchingFontByName(
435 , PFACENAMEDESC pFaceName
438 , const wxFont
* pFont
453 char zFontFaceName
[FACESIZE
];
455 USHORT usWeightClass
;
459 for(i
= 0;i
< 16; i
++)
460 anMinDiff
[i
] = nMinDiff0
;
462 switch (pFont
->GetFamily())
465 sFaceName
= wxT("Script");
470 sFaceName
= wxT("Tms Rmn");
474 sFaceName
= wxT("Courier") ;
478 sFaceName
= wxT("System VIO") ;
482 sFaceName
= wxT("Helv") ;
487 sFaceName
= wxT("System VIO") ;
490 switch (pFont
->GetWeight())
493 wxFAIL_MSG(_T("unknown font weight"));
495 usWeightClass
= FWEIGHT_DONT_CARE
;
499 usWeightClass
= FWEIGHT_NORMAL
;
503 usWeightClass
= FWEIGHT_LIGHT
;
507 usWeightClass
= FWEIGHT_BOLD
;
510 case wxFONTWEIGHT_MAX
:
511 usWeightClass
= FWEIGHT_ULTRA_BOLD
;
514 pFaceName
->usWeightClass
= usWeightClass
;
516 switch (pFont
->GetStyle())
520 fsSelection
= FM_SEL_ITALIC
;
521 pFaceName
->flOptions
= FTYPE_ITALIC
;
525 wxFAIL_MSG(wxT("unknown font slant"));
533 wxStrncpy(zFontFaceName
, sFaceName
.c_str(), WXSIZEOF(zFontFaceName
));
534 nPointSize
= pFont
->GetPointSize();
537 // Matching logic to find the right FM struct
540 for(i
= 0, nIs
= 0; i
< nNumFonts
; i
++)
545 anDiff
[0] = wxGpiStrcmp(pFM
[i
].szFamilyname
, zFontFaceName
);
546 anDiff
[1] = abs(pFM
[i
].lEmHeight
- nPointSize
);
547 anDiff
[2] = abs(pFM
[i
].usWeightClass
- usWeightClass
);
548 anDiff
[3] = abs((pFM
[i
].fsSelection
& 0x2f) - fsSelection
);
551 nEmHeight
= (int)pFM
[i
].lEmHeight
;
552 nXHeight
=(int)pFM
[i
].lXHeight
;
553 if( (nIs
& 0x01) == 0)
557 anMinDiff
[1] = anDiff
[1];
558 anMinDiff
[2] = anDiff
[2];
559 anMinDiff
[3] = anDiff
[3];
561 else if(anDiff
[3] < anMinDiff
[3])
564 anMinDiff
[3] = anDiff
[3];
566 else if(anDiff
[2] < anMinDiff
[2])
569 anMinDiff
[2] = anDiff
[2];
571 else if(anDiff
[1] < anMinDiff
[1])
574 anMinDiff
[1] = anDiff
[1];
578 else if(anDiff
[0] < anMinDiff
[0])
582 anMinDiff
[3] = anDiff
[3];
583 anMinDiff
[2] = anDiff
[2];
584 anMinDiff
[1] = anDiff
[1];
585 anMinDiff
[0] = anDiff
[0];
587 else if(anDiff
[0] == anMinDiff
[0])
589 if(anDiff
[3] < anMinDiff
[3])
592 anMinDiff
[3] = anDiff
[3];
595 else if(anDiff
[2] < anMinDiff
[2])
598 anMinDiff
[2] = anDiff
[2];
601 else if(anDiff
[1] < anMinDiff
[1])
604 anMinDiff
[1] = anDiff
[1];
611 // Fill in the FATTRS with the best match from FONTMETRICS
613 pFattrs
->usRecordLength
= sizeof(FATTRS
); // sets size of structure
614 pFattrs
->fsSelection
= pFM
[nIndex
].fsSelection
; // uses default selection
615 pFattrs
->lMatch
= pFM
[nIndex
].lMatch
; // force match
616 pFattrs
->idRegistry
= pFM
[nIndex
].idRegistry
; // uses default registry
617 pFattrs
->usCodePage
= pFM
[nIndex
].usCodePage
; // code-page
618 pFattrs
->lMaxBaselineExt
= 0; // OUTLINE fonts need this set to 0 as they use other attributes to match
619 pFattrs
->lAveCharWidth
= 0; // OUTLINE fonts need this set to 0 as they use other attributes to match
620 pFattrs
->fsType
= 0;// pfm->fsType; /* uses default type */
621 pFattrs
->fsFontUse
= 0;
623 wxStrcpy(pFattrs
->szFacename
, pFM
[nIndex
].szFacename
);
625 strcpy(zFontFaceName
, pFM
[nIndex
].szFacename
);
626 strcpy(zFontFaceName
, pFattrs
->szFacename
);
628 if(usWeightClass
>= FWEIGHT_BOLD
)
629 pFattrs
->fsSelection
|= FATTR_SEL_BOLD
;
630 if(pFont
->GetUnderlined())
631 pFattrs
->fsSelection
|= FATTR_SEL_UNDERSCORE
;
632 if(fsSelection
& FM_SEL_ITALIC
)
633 pFattrs
->fsSelection
|= FATTR_SEL_ITALIC
;
634 } // end of wxOS2SelectMatchingFontByName
636 wxFont
wxCreateFontFromLogFont(
637 const LOGFONT
* pLogFont
638 , const PFONTMETRICS pFM
639 , PFACENAMEDESC pFaceName
643 // Extract family from facename
647 if (strcmp(pLogFont
->szFacename
, "Times New Roman") == 0)
648 nFontFamily
= wxROMAN
;
649 else if (strcmp(pLogFont
->szFacename
, "WarpSans") == 0)
650 nFontFamily
= wxSWISS
;
651 else if (strcmp(pLogFont
->szFacename
, "Script") == 0)
652 nFontFamily
= wxSCRIPT
;
653 else if (strcmp(pLogFont
->szFacename
, "Courier New") == 0)
654 nFontFamily
= wxMODERN
;
656 nFontFamily
= wxSWISS
;
661 int nFontWeight
= wxNORMAL
;
663 switch (pFaceName
->usWeightClass
)
666 nFontWeight
= wxLIGHT
;
671 nFontWeight
= wxNORMAL
;
675 nFontWeight
= wxBOLD
;
681 if(pLogFont
->fsSelection
& FATTR_SEL_ITALIC
)
682 nFontStyle
= wxITALIC
;
684 nFontStyle
= wxNORMAL
;
686 bool bFontUnderline
= (pLogFont
->fsSelection
& FATTR_SEL_UNDERSCORE
);
687 wxString sFontFace
= pLogFont
->szFacename
;
688 int nFontPoints
= pFM
->lEmHeight
;
689 wxFontEncoding vFontEncoding
;
691 switch (pLogFont
->usCodePage
)
694 wxFAIL_MSG(wxT("unsupported charset"));
698 vFontEncoding
= wxFONTENCODING_CP1252
;
702 vFontEncoding
= wxFONTENCODING_CP1250
;
706 vFontEncoding
= wxFONTENCODING_CP1257
;
710 vFontEncoding
= wxFONTENCODING_CP1251
;
714 vFontEncoding
= wxFONTENCODING_CP1256
;
718 vFontEncoding
= wxFONTENCODING_CP1253
;
722 vFontEncoding
= wxFONTENCODING_CP1255
;
726 vFontEncoding
= wxFONTENCODING_CP1254
;
730 vFontEncoding
= wxFONTENCODING_CP437
;
734 vFontEncoding
= wxFONTENCODING_CP437
;
738 return wxFont( nFontPoints
746 } // end of wxCreateFontFromLogFont
785 d1
= toupper(s0
[i
]) - toupper(s1
[i
]);