Lines Matching refs:psp

127     const psp::PrintFontManager& rMgr = psp::PrintFontManager::get();  in Initialize()
128 typedef std::list< psp::KernPair > PspKernPairs; in Initialize()
995 psp::PrintFontManager& rMgr = psp::PrintFontManager::get(); in AddTempDevFont()
1001 psp::FastPrintFontInfo aInfo; in AddTempDevFont()
1031 psp::PrintFontManager& rMgr = psp::PrintFontManager::get(); in GetDevFontList()
1032 ::std::list< psp::fontID > aList; in GetDevFontList()
1033 ::std::list< psp::fontID >::iterator it; in GetDevFontList()
1034 psp::FastPrintFontInfo aInfo; in GetDevFontList()
1043 if( aInfo.m_eType == psp::fonttype::Builtin ) in GetDevFontList()
1054 if( aInfo.m_eType == psp::fonttype::Type1 ) in GetDevFontList()
1101 psp::FastPrintFontInfo aInfo; in GetFCFontOptions()
1108 aInfo.m_eItalic = psp::italic::Upright; in GetFCFontOptions()
1111 aInfo.m_eItalic = psp::italic::Italic; in GetFCFontOptions()
1114 aInfo.m_eItalic = psp::italic::Oblique; in GetFCFontOptions()
1117 aInfo.m_eItalic = psp::italic::Unknown; in GetFCFontOptions()
1124 aInfo.m_eWeight = psp::weight::Thin; in GetFCFontOptions()
1127 aInfo.m_eWeight = psp::weight::UltraLight; in GetFCFontOptions()
1130 aInfo.m_eWeight = psp::weight::Light; in GetFCFontOptions()
1133 aInfo.m_eWeight = psp::weight::SemiLight; in GetFCFontOptions()
1136 aInfo.m_eWeight = psp::weight::Normal; in GetFCFontOptions()
1139 aInfo.m_eWeight = psp::weight::Medium; in GetFCFontOptions()
1142 aInfo.m_eWeight = psp::weight::SemiBold; in GetFCFontOptions()
1145 aInfo.m_eWeight = psp::weight::Bold; in GetFCFontOptions()
1148 aInfo.m_eWeight = psp::weight::UltraBold; in GetFCFontOptions()
1151 aInfo.m_eWeight = psp::weight::Black; in GetFCFontOptions()
1154 aInfo.m_eWeight = psp::weight::Unknown; in GetFCFontOptions()
1161 aInfo.m_eWidth = psp::width::UltraCondensed; in GetFCFontOptions()
1164 aInfo.m_eWidth = psp::width::ExtraCondensed; in GetFCFontOptions()
1167 aInfo.m_eWidth = psp::width::Condensed; in GetFCFontOptions()
1170 aInfo.m_eWidth = psp::width::SemiCondensed; in GetFCFontOptions()
1173 aInfo.m_eWidth = psp::width::Normal; in GetFCFontOptions()
1176 aInfo.m_eWidth = psp::width::SemiExpanded; in GetFCFontOptions()
1179 aInfo.m_eWidth = psp::width::Expanded; in GetFCFontOptions()
1182 aInfo.m_eWidth = psp::width::ExtraExpanded; in GetFCFontOptions()
1185 aInfo.m_eWidth = psp::width::UltraExpanded; in GetFCFontOptions()
1188 aInfo.m_eWidth = psp::width::Unknown; in GetFCFontOptions()
1192 const psp::PrintFontManager& rPFM = psp::PrintFontManager::get(); in GetFCFontOptions()
1339 psp::fontID aFont = pFont->GetFontId(); in CreateFontSubset()
1341 psp::PrintFontManager& rMgr = psp::PrintFontManager::get(); in CreateFontSubset()
1361 psp::fontID aFont = pFont->GetFontId(); in GetEmbedFontData()
1381 psp::fontID aFont = pFont->GetFontId(); in GetFontEncodingVector()
1397 psp::fontID aFont = pFont->GetFontId(); in GetGlyphWidths()
1459 psp::italic::type eItalic = psp::italic::Unknown; in GetFcSubstitute()
1464 case ITALIC_NONE: eItalic = psp::italic::Upright; break; in GetFcSubstitute()
1465 case ITALIC_NORMAL: eItalic = psp::italic::Italic; break; in GetFcSubstitute()
1466 case ITALIC_OBLIQUE: eItalic = psp::italic::Oblique; break; in GetFcSubstitute()
1472 psp::weight::type eWeight = psp::weight::Unknown; in GetFcSubstitute()
1477 case WEIGHT_THIN: eWeight = psp::weight::Thin; break; in GetFcSubstitute()
1478 case WEIGHT_ULTRALIGHT: eWeight = psp::weight::UltraLight; break; in GetFcSubstitute()
1479 case WEIGHT_LIGHT: eWeight = psp::weight::Light; break; in GetFcSubstitute()
1480 case WEIGHT_SEMILIGHT: eWeight = psp::weight::SemiLight; break; in GetFcSubstitute()
1481 case WEIGHT_NORMAL: eWeight = psp::weight::Normal; break; in GetFcSubstitute()
1482 case WEIGHT_MEDIUM: eWeight = psp::weight::Medium; break; in GetFcSubstitute()
1483 case WEIGHT_SEMIBOLD: eWeight = psp::weight::SemiBold; break; in GetFcSubstitute()
1484 case WEIGHT_BOLD: eWeight = psp::weight::Bold; break; in GetFcSubstitute()
1485 case WEIGHT_ULTRABOLD: eWeight = psp::weight::UltraBold; break; in GetFcSubstitute()
1486 case WEIGHT_BLACK: eWeight = psp::weight::Black; break; in GetFcSubstitute()
1492 psp::width::type eWidth = psp::width::Unknown; in GetFcSubstitute()
1497 case WIDTH_ULTRA_CONDENSED: eWidth = psp::width::UltraCondensed; break; in GetFcSubstitute()
1498 case WIDTH_EXTRA_CONDENSED: eWidth = psp::width::ExtraCondensed; break; in GetFcSubstitute()
1499 case WIDTH_CONDENSED: eWidth = psp::width::Condensed; break; in GetFcSubstitute()
1500 case WIDTH_SEMI_CONDENSED: eWidth = psp::width::SemiCondensed; break; in GetFcSubstitute()
1501 case WIDTH_NORMAL: eWidth = psp::width::Normal; break; in GetFcSubstitute()
1502 case WIDTH_SEMI_EXPANDED: eWidth = psp::width::SemiExpanded; break; in GetFcSubstitute()
1503 case WIDTH_EXPANDED: eWidth = psp::width::Expanded; break; in GetFcSubstitute()
1504 case WIDTH_EXTRA_EXPANDED: eWidth = psp::width::ExtraExpanded; break; in GetFcSubstitute()
1505 case WIDTH_ULTRA_EXPANDED: eWidth = psp::width::UltraExpanded; break; in GetFcSubstitute()
1511 psp::pitch::type ePitch = psp::pitch::Unknown; in GetFcSubstitute()
1516 case PITCH_FIXED: ePitch=psp::pitch::Fixed; break; in GetFcSubstitute()
1517 case PITCH_VARIABLE: ePitch=psp::pitch::Variable; break; in GetFcSubstitute()
1523 const psp::PrintFontManager& rMgr = psp::PrintFontManager::get(); in GetFcSubstitute()
1528 case psp::italic::Upright: aRet.meItalic = ITALIC_NONE; break; in GetFcSubstitute()
1529 case psp::italic::Italic: aRet.meItalic = ITALIC_NORMAL; break; in GetFcSubstitute()
1530 case psp::italic::Oblique: aRet.meItalic = ITALIC_OBLIQUE; break; in GetFcSubstitute()
1537 case psp::weight::Thin: aRet.meWeight = WEIGHT_THIN; break; in GetFcSubstitute()
1538 case psp::weight::UltraLight: aRet.meWeight = WEIGHT_ULTRALIGHT; break; in GetFcSubstitute()
1539 case psp::weight::Light: aRet.meWeight = WEIGHT_LIGHT; break; in GetFcSubstitute()
1540 case psp::weight::SemiLight: aRet.meWeight = WEIGHT_SEMILIGHT; break; in GetFcSubstitute()
1541 case psp::weight::Normal: aRet.meWeight = WEIGHT_NORMAL; break; in GetFcSubstitute()
1542 case psp::weight::Medium: aRet.meWeight = WEIGHT_MEDIUM; break; in GetFcSubstitute()
1543 case psp::weight::SemiBold: aRet.meWeight = WEIGHT_SEMIBOLD; break; in GetFcSubstitute()
1544 case psp::weight::Bold: aRet.meWeight = WEIGHT_BOLD; break; in GetFcSubstitute()
1545 case psp::weight::UltraBold: aRet.meWeight = WEIGHT_ULTRABOLD; break; in GetFcSubstitute()
1546 case psp::weight::Black: aRet.meWeight = WEIGHT_BLACK; break; in GetFcSubstitute()
1553 case psp::width::UltraCondensed: aRet.meWidthType = WIDTH_ULTRA_CONDENSED; break; in GetFcSubstitute()
1554 case psp::width::ExtraCondensed: aRet.meWidthType = WIDTH_EXTRA_CONDENSED; break; in GetFcSubstitute()
1555 case psp::width::Condensed: aRet.meWidthType = WIDTH_CONDENSED; break; in GetFcSubstitute()
1556 case psp::width::SemiCondensed: aRet.meWidthType = WIDTH_SEMI_CONDENSED; break; in GetFcSubstitute()
1557 case psp::width::Normal: aRet.meWidthType = WIDTH_NORMAL; break; in GetFcSubstitute()
1558 case psp::width::SemiExpanded: aRet.meWidthType = WIDTH_SEMI_EXPANDED; break; in GetFcSubstitute()
1559 case psp::width::Expanded: aRet.meWidthType = WIDTH_EXPANDED; break; in GetFcSubstitute()
1560 case psp::width::ExtraExpanded: aRet.meWidthType = WIDTH_EXTRA_EXPANDED; break; in GetFcSubstitute()
1561 case psp::width::UltraExpanded: aRet.meWidthType = WIDTH_ULTRA_EXPANDED; break; in GetFcSubstitute()
1568 case psp::pitch::Fixed: aRet.mePitch = PITCH_FIXED; break; in GetFcSubstitute()
1569 case psp::pitch::Variable: aRet.mePitch = PITCH_VARIABLE; break; in GetFcSubstitute()