Lines Matching refs:width

175 static width::type parseWidth( const ByteString& rWidth )  in parseWidth()
177 width::type eWidth = width::Unknown; in parseWidth()
180 eWidth = width::SemiExpanded; in parseWidth()
183 eWidth = width::Condensed; in parseWidth()
187 eWidth = width::UltraExpanded; in parseWidth()
190 eWidth = width::Expanded; in parseWidth()
192 eWidth = width::ExtraCondensed; in parseWidth()
194 eWidth = width::SemiCondensed; in parseWidth()
196 eWidth = width::UltraCondensed; in parseWidth()
198 eWidth = width::Normal; in parseWidth()
344 m_eWidth( width::Unknown ), in PrintFont()
445 rChar.width = pMetrics[ i ].adv; in queryMetricPage()
464 rChar.width = m_aGlobalMetricY.width; in queryMetricPage()
952 m_aGlobalMetricX.width = m_aGlobalMetricY.width = in readAfmMetrics()
1046 aMetric.width = pChar->wx ? pChar->wx : pChar->charBBox.urx; in readAfmMetrics()
1048 if( aMetric.width == 0 && aMetric.height == 0 ) in readAfmMetrics()
1050 aMetric.width = m_aGlobalMetricX.width/4; in readAfmMetrics()
1713 case width::UltraCondensed: aXLFD.append("ultracondensed");break; in getXLFD()
1714 case width::ExtraCondensed: aXLFD.append("extracondensed");break; in getXLFD()
1715 case width::Condensed: aXLFD.append("condensed");break; in getXLFD()
1716 case width::SemiCondensed: aXLFD.append("semicondensed");break; in getXLFD()
1717 case width::Normal: aXLFD.append("normal");break; in getXLFD()
1718 case width::SemiExpanded: aXLFD.append("semiexpanded");break; in getXLFD()
1719 case width::Expanded: aXLFD.append("expanded");break; in getXLFD()
1720 case width::ExtraExpanded: aXLFD.append("extraexpanded");break; in getXLFD()
1721 case width::UltraExpanded: aXLFD.append("ultraexpanded");break; in getXLFD()
1932 switch( aInfo.width ) in analyzeTrueTypeFile()
1934 case FWIDTH_ULTRA_CONDENSED: pFont->m_eWidth = width::UltraCondensed; break; in analyzeTrueTypeFile()
1935 case FWIDTH_EXTRA_CONDENSED: pFont->m_eWidth = width::ExtraCondensed; break; in analyzeTrueTypeFile()
1936 case FWIDTH_CONDENSED: pFont->m_eWidth = width::Condensed; break; in analyzeTrueTypeFile()
1937 case FWIDTH_SEMI_CONDENSED: pFont->m_eWidth = width::SemiCondensed; break; in analyzeTrueTypeFile()
1938 case FWIDTH_SEMI_EXPANDED: pFont->m_eWidth = width::SemiExpanded; break; in analyzeTrueTypeFile()
1939 case FWIDTH_EXPANDED: pFont->m_eWidth = width::Expanded; break; in analyzeTrueTypeFile()
1940 case FWIDTH_EXTRA_EXPANDED: pFont->m_eWidth = width::ExtraExpanded; break; in analyzeTrueTypeFile()
1941 case FWIDTH_ULTRA_EXPANDED: pFont->m_eWidth = width::UltraExpanded; break; in analyzeTrueTypeFile()
1944 default: pFont->m_eWidth = width::Normal; break; in analyzeTrueTypeFile()
1956 pFont->m_aGlobalMetricY.width = pFont->m_aGlobalMetricX.width = aInfo.xMax - aInfo.xMin; in analyzeTrueTypeFile()
2664 …= pFont->m_aGlobalMetricX.width < pFont->m_aGlobalMetricY.width ? pFont->m_aGlobalMetricY.width : … in fillPrintFontInfo()
3117 pArray[i].width = pArray[i].height = -1; in getMetrics()
3161 pArray[ code - minCharacter ].width = -1; in getMetrics()
3848 rWidths.push_back( it->second.width ); in getGlyphWidths()
3988 pFont->m_eWidth = static_cast<width::type>(getInt(pProps[n].Value)); in readOverrideMetrics()
3998 pFont->m_aGlobalMetricX.width = getInt(pProps[n].Value); in readOverrideMetrics()
4002 pFont->m_aGlobalMetricY.width = getInt(pProps[n].Value); in readOverrideMetrics()
4057 … pFont->m_pMetrics->m_aMetrics[ pInts[m] ].width = static_cast<short int>(pInts[m+1]); in readOverrideMetrics()