]> git.saurik.com Git - wxWidgets.git/blame - src/os2/fontutil.cpp
Added -lpangoft2-1.0 to link line.
[wxWidgets.git] / src / os2 / fontutil.cpp
CommitLineData
d8cde57b
DW
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/fontutil.cpp
3// Purpose: font-related helper functions for wxMSW
4// Author: Modified by David Webster for OS/2
5// Modified by:
6// Created: 01.03.00
7// RCS-ID: $Id$
8// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
7e99520b
DW
11#define DEBUG_PRINTF(NAME) { static int raz=0; \
12 printf( #NAME " %i\n",raz); fflush(stdout); \
13 raz++; \
14 }
d8cde57b
DW
15
16// ============================================================================
17// declarations
18// ============================================================================
19
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
23
a4372af6
SN
24#ifdef __GNUG__
25 #pragma implementation "fontutil.h"
26#endif
27
d8cde57b
DW
28// For compilers that support precompilation, includes "wx.h".
29#include "wx/wxprec.h"
30
31#ifndef WX_PRECOMP
3417f661 32 #include "wx/app.h"
d8cde57b
DW
33 #include "wx/string.h"
34 #include "wx/log.h"
35 #include "wx/intl.h"
36#endif //WX_PRECOMP
37
38#include "wx/os2/private.h"
39
40#include "wx/fontutil.h"
41#include "wx/fontmap.h"
42
43#include "wx/tokenzr.h"
44
45// ============================================================================
46// implementation
47// ============================================================================
48
49// ----------------------------------------------------------------------------
50// wxNativeEncodingInfo
51// ----------------------------------------------------------------------------
52
53// convert to/from the string representation: format is
1e1d0be1 54// encodingid;facename[;charset]
d8cde57b 55
e99762c0
DW
56bool wxNativeEncodingInfo::FromString(
57 const wxString& rsStr
58)
d8cde57b 59{
e99762c0
DW
60 wxStringTokenizer vTokenizer(rsStr, _T(";"));
61 wxString sEncid = vTokenizer.GetNextToken();
62 long lEnc;
d8cde57b 63
e99762c0 64 if (!sEncid.ToLong(&lEnc))
1e1d0be1 65 return FALSE;
e99762c0
DW
66 encoding = (wxFontEncoding)lEnc;
67 facename = vTokenizer.GetNextToken();
68 if (!facename)
d8cde57b
DW
69 return FALSE;
70
e99762c0
DW
71 wxString sTmp = vTokenizer.GetNextToken();
72
73 if (!sTmp)
d8cde57b 74 {
e99762c0 75 charset = 850;
d8cde57b
DW
76 }
77 else
78 {
e99762c0 79 if ( wxSscanf(sTmp, _T("%u"), &charset) != 1 )
d8cde57b
DW
80 {
81 // should be a number!
82 return FALSE;
83 }
84 }
d8cde57b 85 return TRUE;
e99762c0 86} // end of wxNativeEncodingInfo::FromString
d8cde57b
DW
87
88wxString wxNativeEncodingInfo::ToString() const
89{
e99762c0 90 wxString sStr;
7e99520b 91
e99762c0 92 sStr << (long)encoding << _T(';') << facename;
1e1d0be1 93
e99762c0 94 if (charset != 850)
d8cde57b 95 {
e99762c0 96 sStr << _T(';') << charset;
d8cde57b 97 }
e99762c0
DW
98 return sStr;
99} // end of wxNativeEncodingInfo::ToString
d8cde57b
DW
100
101// ----------------------------------------------------------------------------
102// helper functions
103// ----------------------------------------------------------------------------
104
e99762c0
DW
105bool wxGetNativeFontEncoding(
106 wxFontEncoding vEncoding
107, wxNativeEncodingInfo* pInfo
108)
d8cde57b 109{
e99762c0
DW
110 wxCHECK_MSG(pInfo, FALSE, _T("bad pointer in wxGetNativeFontEncoding") );
111 if (vEncoding == wxFONTENCODING_DEFAULT)
d8cde57b 112 {
e99762c0 113 vEncoding = wxFont::GetDefaultEncoding();
d8cde57b 114 }
e99762c0 115 switch (vEncoding)
d8cde57b 116 {
d8cde57b
DW
117 case wxFONTENCODING_ISO8859_1:
118 case wxFONTENCODING_ISO8859_15:
e99762c0
DW
119 case wxFONTENCODING_CP1250:
120 pInfo->charset = 1250;
d8cde57b
DW
121 break;
122
e99762c0
DW
123 case wxFONTENCODING_ISO8859_2:
124 case wxFONTENCODING_CP1252:
125 pInfo->charset = 1252;
d8cde57b
DW
126 break;
127
e99762c0
DW
128 case wxFONTENCODING_ISO8859_4:
129 case wxFONTENCODING_ISO8859_10:
130 pInfo->charset = 921; // what is baltic?
d8cde57b
DW
131 break;
132
e99762c0
DW
133 case wxFONTENCODING_ISO8859_5:
134 case wxFONTENCODING_CP1251:
135 pInfo->charset = 1251;
d8cde57b
DW
136 break;
137
e99762c0
DW
138 case wxFONTENCODING_ISO8859_6:
139 pInfo->charset = 864;
d8cde57b
DW
140 break;
141
e99762c0
DW
142 case wxFONTENCODING_ISO8859_7:
143 pInfo->charset = 869;
d8cde57b
DW
144 break;
145
e99762c0
DW
146 case wxFONTENCODING_ISO8859_8:
147 pInfo->charset = 862;
d8cde57b
DW
148 break;
149
e99762c0
DW
150 case wxFONTENCODING_ISO8859_9:
151 pInfo->charset = 857;
d8cde57b
DW
152 break;
153
e99762c0
DW
154 case wxFONTENCODING_ISO8859_11:
155 pInfo->charset = 874; // what is thai
d8cde57b
DW
156 break;
157
158 case wxFONTENCODING_CP437:
e99762c0 159 pInfo->charset = 437;
d8cde57b 160 break;
e99762c0 161
d8cde57b 162 default:
e99762c0
DW
163 wxFAIL_MSG(wxT("unsupported encoding"));
164 // fall through
d8cde57b 165
e99762c0
DW
166 case wxFONTENCODING_SYSTEM:
167 pInfo->charset = 850;
168 break;
169 }
d8cde57b 170 return TRUE;
e99762c0 171} // end of wxGetNativeFontEncoding
d8cde57b 172
cc95f4f9
DW
173wxFontEncoding wxGetFontEncFromCharSet(
174 int nCharSet
175)
176{
177 wxFontEncoding eFontEncoding;
178
179 switch (nCharSet)
180 {
181 default:
182 case 1250:
183 eFontEncoding = wxFONTENCODING_CP1250;
184 break;
185
186 case 1252:
187 eFontEncoding = wxFONTENCODING_CP1252;
188 break;
189
190 case 921:
191 eFontEncoding = wxFONTENCODING_ISO8859_4;
192 break;
193
194 case 1251:
195 eFontEncoding = wxFONTENCODING_CP1251;
196 break;
197
198 case 864:
199 eFontEncoding = wxFONTENCODING_ISO8859_6;
200 break;
201
202 case 869:
203 eFontEncoding = wxFONTENCODING_ISO8859_7;
204 break;
205
206 case 862:
207 eFontEncoding = wxFONTENCODING_ISO8859_8;
208 break;
209
210 case 857:
211 eFontEncoding = wxFONTENCODING_ISO8859_9;
212 break;
213
214 case 874:
215 eFontEncoding = wxFONTENCODING_ISO8859_11;
216 break;
217
218 case 437:
219 eFontEncoding = wxFONTENCODING_CP437;
220 break;
221 }
222 return eFontEncoding;
223} // end of wxGetNativeFontEncoding
224
e99762c0
DW
225bool wxTestFontEncoding(
226 const wxNativeEncodingInfo& rInfo
227)
d8cde57b 228{
e99762c0
DW
229 FATTRS vLogFont;
230 HPS hPS;
231
232 hPS = ::WinGetPS(HWND_DESKTOP);
233
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
241
242 strncpy(vLogFont.szFacename, rInfo.facename.c_str(), sizeof(vLogFont.szFacename));
243
244 if (!::GpiCreateLogFont( hPS
245 ,NULL
246 ,1L
247 ,&vLogFont
248 ))
d8cde57b 249 {
e99762c0 250 ::WinReleasePS(hPS);
d8cde57b
DW
251 return FALSE;
252 }
e99762c0 253 ::WinReleasePS(hPS);
d8cde57b 254 return TRUE;
e99762c0 255} // end of wxTestFontEncoding
d8cde57b
DW
256
257// ----------------------------------------------------------------------------
258// wxFont <-> LOGFONT conversion
259// ----------------------------------------------------------------------------
260
e99762c0 261void wxFillLogFont(
cc95f4f9 262 LOGFONT* pFattrs // OS2 GPI FATTRS
e99762c0 263, PFACENAMEDESC pFaceName
54ffa107 264, HPS* phPS
828621c2 265, bool* pbInternalPS
cc95f4f9
DW
266, long* pflId
267, wxString& sFaceName
268, wxFont* pFont
e99762c0 269)
d8cde57b 270{
cc95f4f9
DW
271 LONG lNumFonts = 0L; // For system font count
272 ERRORID vError; // For logging API errors
54ffa107 273 LONG lTemp = 0L;
cc95f4f9
DW
274 bool bInternalPS = FALSE; // if we have to create one
275 PFONTMETRICS pFM = NULL;
276
277 //
278 // Initial house cleaning to free data buffers and ensure we have a
279 // functional PS to work with
280 //
54ffa107 281 if (!*phPS)
cc95f4f9 282 {
54ffa107 283 *phPS = ::WinGetPS(HWND_DESKTOP);
cc95f4f9
DW
284 bInternalPS = TRUE;
285 }
286
287 //
288 // Determine the number of fonts.
289 //
54ffa107
DW
290 if((lNumFonts = ::GpiQueryFonts( *phPS
291 ,QF_PUBLIC
292 ,NULL
293 ,&lTemp
294 ,(LONG) sizeof(FONTMETRICS)
295 ,NULL
296 )) < 0L)
297 {
298 ERRORID vError;
299 wxString sError;
300
301 vError = ::WinGetLastError(wxGetInstance());
302 sError = wxPMErrorToStr(vError);
303 return;
304 }
cc95f4f9
DW
305
306 //
307 // Allocate space for the font metrics.
308 //
309 pFM = new FONTMETRICS[lNumFonts + 1];
e99762c0 310
cc95f4f9
DW
311 //
312 // Retrieve the font metrics.
313 //
314 lTemp = lNumFonts;
54ffa107 315 lTemp = ::GpiQueryFonts( *phPS
cc95f4f9
DW
316 ,QF_PUBLIC
317 ,NULL
318 ,&lTemp
319 ,(LONG) sizeof(FONTMETRICS)
320 ,pFM
321 );
322 pFont->SetFM( pFM
323 ,(int)lNumFonts
324 );
325
cc95f4f9
DW
326 //
327 // Initialize FATTR and FACENAMEDESC
328 //
329 pFattrs->usRecordLength = sizeof(FATTRS);
330 pFattrs->fsFontUse = FATTR_FONTUSE_OUTLINE | // only outline fonts allowed
47df2b8c 331 FATTR_FONTUSE_TRANSFORMABLE; // may be transformed
cc95f4f9
DW
332 pFattrs->fsType = 0;
333 pFattrs->lMaxBaselineExt = pFattrs->lAveCharWidth = 0;
334 pFattrs->idRegistry = 0;
335 pFattrs->lMatch = 0;
336
337 pFaceName->usSize = sizeof(FACENAMEDESC);
338 pFaceName->usWidthClass = FWIDTH_NORMAL;
339 pFaceName->usReserved = 0;
e99762c0 340 pFaceName->flOptions = 0;
cc95f4f9
DW
341
342 //
343 // This does the actual selection of fonts
344 //
345 wxOS2SelectMatchingFontByName( pFattrs
346 ,pFaceName
347 ,pFM
348 ,(int)lNumFonts
349 ,pFont
350 );
351 //
352 // We should now have the correct FATTRS set with the selected
353 // font, so now we need to generate an ID
354 //
54ffa107 355 long lNumLids = ::GpiQueryNumberSetIds(*phPS);
cc95f4f9
DW
356 long lGpiError;
357
358 if(lNumLids )
359 {
360 long alTypes[255];
361 STR8 azNames[255];
362 long alIds[255];
363
d697657f 364 memset(alIds, 0, sizeof(long) * 255);
54ffa107 365 if(!::GpiQuerySetIds( *phPS
cc95f4f9
DW
366 ,lNumLids
367 ,alTypes
368 ,azNames
369 ,alIds
370 ))
371 {
372 if (bInternalPS)
54ffa107 373 ::WinReleasePS(*phPS);
cc95f4f9
DW
374 return;
375 }
d697657f
DW
376 if (*pflId == 0L)
377 *pflId = 1L;
cc95f4f9
DW
378 for(unsigned long LCNum = 0; LCNum < lNumLids; LCNum++)
379 if(alIds[LCNum] == *pflId)
380 ++*pflId;
381 if(*pflId > 254) // wow, no id available!
382 {
383 if (bInternalPS)
54ffa107 384 ::WinReleasePS(*phPS);
cc95f4f9
DW
385 return;
386 }
387 }
54ffa107
DW
388 else
389 *pflId = 1L;
cc95f4f9
DW
390 //
391 // Release and delete the current font
392 //
54ffa107
DW
393 ::GpiSetCharSet(*phPS, LCID_DEFAULT);/* release the font before deleting */
394 ::GpiDeleteSetId(*phPS, 1L); /* delete the logical font */
cc95f4f9
DW
395
396 //
397 // Now build a facestring
398 //
399 char zFacename[128];
400
401 strcpy(zFacename, pFattrs->szFacename);
402
54ffa107 403 if(::GpiQueryFaceString( *phPS
cc95f4f9
DW
404 ,zFacename
405 ,pFaceName
406 ,FACESIZE
407 ,pFattrs->szFacename
408 ) == GPI_ERROR)
409 {
410 vError = ::WinGetLastError(vHabmain);
411 }
412 sFaceName = zFacename;
828621c2 413 *pbInternalPS = bInternalPS;
cc95f4f9
DW
414
415 //
416 // That's it, we now have everything we need to actually create the font
417 //
418} // end of wxFillLogFont
419
420void wxOS2SelectMatchingFontByName(
421 PFATTRS pFattrs
422, PFACENAMEDESC pFaceName
423, PFONTMETRICS pFM
424, int nNumFonts
425, const wxFont* pFont
426)
427{
428 int i;
429 int nDiff0;
430 int nPointSize;
431 int nDiff;
432 int nIs;
cc95f4f9
DW
433 int nMinDiff;
434 int nMinDiff0;
435 int nApirc;
436 int anDiff[16];
437 int anMinDiff[16];
e1146627 438 int nIndex = 0;
cc95f4f9
DW
439 STR8 zFn;
440 char zFontFaceName[FACESIZE];
441 wxString sFaceName;
442 USHORT usWeightClass;
443 int fsSelection = 0;
444
445 nMinDiff0 = 0xf000;
446 for(i = 0;i < 16; i++)
447 anMinDiff[i] = nMinDiff0;
448
e99762c0 449 switch (pFont->GetFamily())
d8cde57b
DW
450 {
451 case wxSCRIPT:
cc95f4f9 452 sFaceName = wxT("Script");
d8cde57b
DW
453 break;
454
455 case wxDECORATIVE:
07df68c8
DW
456 sFaceName = wxT("WarpSans");
457 break;
458
d8cde57b 459 case wxROMAN:
07df68c8 460 sFaceName = wxT("Times New Roman");
d8cde57b
DW
461 break;
462
463 case wxTELETYPE:
07df68c8 464 sFaceName = wxT("Courier New") ;
d8cde57b
DW
465 break;
466
e3bfcacf 467 case wxMODERN:
07df68c8 468 sFaceName = wxT("Arial") ;
e3bfcacf
DW
469 break;
470
d8cde57b 471 case wxSWISS:
e3bfcacf 472 sFaceName = wxT("Helv") ;
d8cde57b
DW
473 break;
474
475 case wxDEFAULT:
476 default:
07df68c8 477 sFaceName = wxT("System Proportional") ;
d8cde57b
DW
478 }
479
e99762c0 480 switch (pFont->GetWeight())
d8cde57b
DW
481 {
482 default:
483 wxFAIL_MSG(_T("unknown font weight"));
cc95f4f9
DW
484 // fall through
485 usWeightClass = FWEIGHT_DONT_CARE;
e99762c0 486 break;
d8cde57b
DW
487
488 case wxNORMAL:
cc95f4f9 489 usWeightClass = FWEIGHT_NORMAL;
d8cde57b
DW
490 break;
491
492 case wxLIGHT:
cc95f4f9 493 usWeightClass = FWEIGHT_LIGHT;
d8cde57b
DW
494 break;
495
496 case wxBOLD:
cc95f4f9 497 usWeightClass = FWEIGHT_BOLD;
e99762c0
DW
498 break;
499
cc95f4f9
DW
500 case wxFONTWEIGHT_MAX:
501 usWeightClass = FWEIGHT_ULTRA_BOLD;
d8cde57b
DW
502 break;
503 }
cc95f4f9 504 pFaceName->usWeightClass = usWeightClass;
d8cde57b 505
e99762c0
DW
506 switch (pFont->GetStyle())
507 {
508 case wxITALIC:
509 case wxSLANT:
cc95f4f9
DW
510 fsSelection = FM_SEL_ITALIC;
511 pFaceName->flOptions = FTYPE_ITALIC;
e99762c0
DW
512 break;
513
514 default:
515 wxFAIL_MSG(wxT("unknown font slant"));
516 // fall through
d8cde57b 517
e99762c0 518 case wxNORMAL:
cc95f4f9 519 fsSelection = 0;
e99762c0
DW
520 break;
521 }
cc95f4f9
DW
522
523 wxStrncpy(zFontFaceName, sFaceName.c_str(), WXSIZEOF(zFontFaceName));
524 nPointSize = pFont->GetPointSize();
e99762c0
DW
525
526 //
cc95f4f9 527 // Matching logic to find the right FM struct
e99762c0 528 //
cc95f4f9
DW
529 nIndex = 0;
530 for(i = 0, nIs = 0; i < nNumFonts; i++)
d8cde57b 531 {
cc95f4f9
DW
532 int nEmHeight = 0;
533 int nXHeight = 0;
534
535 anDiff[0] = wxGpiStrcmp(pFM[i].szFamilyname, zFontFaceName);
536 anDiff[1] = abs(pFM[i].lEmHeight - nPointSize);
537 anDiff[2] = abs(pFM[i].usWeightClass - usWeightClass);
538 anDiff[3] = abs((pFM[i].fsSelection & 0x2f) - fsSelection);
539 if(anDiff[0] == 0)
540 {
541 nEmHeight = (int)pFM[i].lEmHeight;
542 nXHeight =(int)pFM[i].lXHeight;
543 if( (nIs & 0x01) == 0)
544 {
545 nIs = 1;
546 nIndex = i;
547 anMinDiff[1] = anDiff[1];
548 anMinDiff[2] = anDiff[2];
549 anMinDiff[3] = anDiff[3];
550 }
551 else if(anDiff[3] < anMinDiff[3])
552 {
553 nIndex = i;
554 anMinDiff[3] = anDiff[3];
555 }
556 else if(anDiff[2] < anMinDiff[2])
557 {
558 nIndex = i;
559 anMinDiff[2] = anDiff[2];
560 }
561 else if(anDiff[1] < anMinDiff[1])
562 {
563 nIndex = i;
564 anMinDiff[1] = anDiff[1];
565 }
566 anMinDiff[0] = 0;
567 }
568 else if(anDiff[0] < anMinDiff[0])
569 {
570 nIs = 2;
571 nIndex = i;
572 anMinDiff[3] = anDiff[3];
573 anMinDiff[2] = anDiff[2];
574 anMinDiff[1] = anDiff[1];
575 anMinDiff[0] = anDiff[0];
576 }
577 else if(anDiff[0] == anMinDiff[0])
578 {
579 if(anDiff[3] < anMinDiff[3])
580 {
581 nIndex = i;
582 anMinDiff[3] = anDiff[3];
583 nIs = 2;
584 }
585 else if(anDiff[2] < anMinDiff[2])
586 {
587 nIndex = i;
588 anMinDiff[2] = anDiff[2];
589 nIs = 2;
590 }
591 else if(anDiff[1] < anMinDiff[1])
592 {
593 nIndex = i;
594 anMinDiff[1] = anDiff[1];
595 nIs = 2;
596 }
597 }
d8cde57b 598 }
d8cde57b 599
e99762c0 600 //
cc95f4f9 601 // Fill in the FATTRS with the best match from FONTMETRICS
e99762c0 602 //
cc95f4f9
DW
603 pFattrs->usRecordLength = sizeof(FATTRS); // sets size of structure
604 pFattrs->fsSelection = pFM[nIndex].fsSelection; // uses default selection
605 pFattrs->lMatch = pFM[nIndex].lMatch; // force match
606 pFattrs->idRegistry = pFM[nIndex].idRegistry; // uses default registry
607 pFattrs->usCodePage = pFM[nIndex].usCodePage; // code-page
e1146627
DW
608 pFattrs->lMaxBaselineExt = 0; // OUTLINE fonts need this set to 0 as they use other attributes to match
609 pFattrs->lAveCharWidth = 0; // OUTLINE fonts need this set to 0 as they use other attributes to match
cc95f4f9
DW
610 pFattrs->fsType = 0;// pfm->fsType; /* uses default type */
611 pFattrs->fsFontUse = 0;
d8cde57b 612
cc95f4f9
DW
613 wxStrcpy(pFattrs->szFacename, pFM[nIndex].szFacename);
614 // Debug
615 strcpy(zFontFaceName, pFM[nIndex].szFacename);
616 strcpy(zFontFaceName, pFattrs->szFacename);
617
618 if(usWeightClass >= FWEIGHT_BOLD)
619 pFattrs->fsSelection |= FATTR_SEL_BOLD;
620 if(pFont->GetUnderlined())
621 pFattrs->fsSelection |= FATTR_SEL_UNDERSCORE;
622 if(fsSelection & FM_SEL_ITALIC)
623 pFattrs->fsSelection |= FATTR_SEL_ITALIC;
624} // end of wxOS2SelectMatchingFontByName
e99762c0
DW
625
626wxFont wxCreateFontFromLogFont(
627 const LOGFONT* pLogFont
628, const PFONTMETRICS pFM
629, PFACENAMEDESC pFaceName
630)
d8cde57b 631{
47df2b8c 632 wxNativeFontInfo vInfo;
d8cde57b 633
47df2b8c
DW
634 vInfo.fa = *pLogFont;
635 vInfo.fm = *pFM;
636 vInfo.fn = *pFaceName;
637 return wxFont(vInfo);
e99762c0
DW
638} // end of wxCreateFontFromLogFont
639
640int wxGpiStrcmp(
641 char* s0
642, char* s1
643)
644{ int l0;
645 int l1;
646 int l;
647 int d;
648 int d1;
649 int i;
650 int rc;
651
652 rc = 0;
653 if(s0 == NULL)
654 {
655 if(s1 == NULL)
656 return 0;
657 else
658 return 32;
659 }
660 else if(s1 == NULL)
661 return 32;
662
663 l0 = strlen(s0);
664 l1 = strlen(s1);
665 l = l0;
666 if(l0 != l1)
667 {
668 rc++;
669 if(l1 < l0)
670 l = l1;
671 }
672 for(i=0;i<l;i++)
673 {
674 d = s0[i]-s1[i];
675 if(!d)
676 continue;
677 d1 = toupper(s0[i]) - toupper(s1[i]);
678 if(!d1)
679 continue;
680 rc += abs(d);
681 }
682 return rc;
d8cde57b 683}
d8cde57b 684