Home
last modified time | relevance | path

Searched refs:m_eWidth (Results 1 – 12 of 12) sorted by relevance

/aoo4110/main/vcl/unx/kde4/
H A DKDESalFrame.cxx126 aInfo.m_eWidth = psp::width::UltraCondensed; in toFont()
128 aInfo.m_eWidth = psp::width::ExtraCondensed; in toFont()
130 aInfo.m_eWidth = psp::width::Condensed; in toFont()
132 aInfo.m_eWidth = psp::width::SemiCondensed; in toFont()
134 aInfo.m_eWidth = psp::width::Normal; in toFont()
136 aInfo.m_eWidth = psp::width::SemiExpanded; in toFont()
138 aInfo.m_eWidth = psp::width::Expanded; in toFont()
140 aInfo.m_eWidth = psp::width::ExtraExpanded; in toFont()
142 aInfo.m_eWidth = psp::width::UltraExpanded; in toFont()
166 if( aInfo.m_eWidth != psp::width::Unknown ) in toFont()
[all …]
/aoo4110/main/vcl/unx/generic/gdi/
H A Dsalgdi3.cxx1161 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()
H A Dpspgraphics.cxx1307 aDFA.meWidthType = ToFontWidth (rInfo.m_eWidth); in Info2DevFontAttributes()
/aoo4110/main/vcl/unx/kde/
H A Dsalnativewidgets-kde.cxx1769 aInfo.m_eWidth = psp::width::UltraCondensed; in toFont()
1771 aInfo.m_eWidth = psp::width::ExtraCondensed; in toFont()
1773 aInfo.m_eWidth = psp::width::Condensed; in toFont()
1775 aInfo.m_eWidth = psp::width::SemiCondensed; in toFont()
1777 aInfo.m_eWidth = psp::width::Normal; in toFont()
1779 aInfo.m_eWidth = psp::width::SemiExpanded; in toFont()
1781 aInfo.m_eWidth = psp::width::Expanded; in toFont()
1783 aInfo.m_eWidth = psp::width::ExtraExpanded; in toFont()
1785 aInfo.m_eWidth = psp::width::UltraExpanded; in toFont()
1809 if( aInfo.m_eWidth != psp::width::Unknown ) in toFont()
[all …]
/aoo4110/main/vcl/unx/generic/fontmanager/
H A Dfontcache.cxx187 aLine.Append( ByteString::CreateFromInt32( (*it)->m_eWidth ) ); in flush()
405 pFont->m_eWidth = (width::type)atoi( pLine+nTokenPos[4] ); in read()
540 pTo->m_eWidth = pFrom->m_eWidth; in copyPrintFont()
602 pRight->m_eWidth != pLeft->m_eWidth || in equalsPrintFont()
H A Dfontmanager.cxx344 m_eWidth( width::Unknown ), in PrintFont()
1639 pFont->m_eWidth = it->eWidth; in getFontAttributesFromXLFD()
1711 switch( pFont->m_eWidth ) in getXLFD()
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()
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()
2631 rInfo.m_eWidth = pFont->m_eWidth; in fillPrintFontInfo()
[all …]
H A Dfontconfig.cxx1132 …addtopattern(rWrapper, pPattern, rInfo.m_eItalic, rInfo.m_eWeight, rInfo.m_eWidth, rInfo.m_ePitch); in getFontOptions()
1222 …addtopattern(rWrapper, pPattern, rInfo.m_eItalic, rInfo.m_eWeight, rInfo.m_eWidth, rInfo.m_ePitch); in matchFont()
/aoo4110/main/vcl/inc/vcl/
H A Dfontmanager.hxx160 width::type m_eWidth; member
172 m_eWidth( width::Unknown ), in FastPrintFontInfo()
274 width::type m_eWidth; member
522 return pFont ? pFont->m_eWidth : width::Unknown; in getFontWidth()
/aoo4110/main/vcl/unx/gtk/gdi/
H A Dsalnativewidgets-gtk.cxx3476 case PANGO_STRETCH_ULTRA_CONDENSED: aInfo.m_eWidth = psp::width::UltraCondensed;break; in updateSettings()
3477 case PANGO_STRETCH_EXTRA_CONDENSED: aInfo.m_eWidth = psp::width::ExtraCondensed;break; in updateSettings()
3478 case PANGO_STRETCH_CONDENSED: aInfo.m_eWidth = psp::width::Condensed;break; in updateSettings()
3479 case PANGO_STRETCH_SEMI_CONDENSED: aInfo.m_eWidth = psp::width::SemiCondensed;break; in updateSettings()
3480 case PANGO_STRETCH_NORMAL: aInfo.m_eWidth = psp::width::Normal;break; in updateSettings()
3481 case PANGO_STRETCH_SEMI_EXPANDED: aInfo.m_eWidth = psp::width::SemiExpanded;break; in updateSettings()
3482 case PANGO_STRETCH_EXPANDED: aInfo.m_eWidth = psp::width::Expanded;break; in updateSettings()
3483 case PANGO_STRETCH_EXTRA_EXPANDED: aInfo.m_eWidth = psp::width::ExtraExpanded;break; in updateSettings()
3484 case PANGO_STRETCH_ULTRA_EXPANDED: aInfo.m_eWidth = psp::width::UltraExpanded;break; in updateSettings()
3513 if( aInfo.m_eWidth != psp::width::Unknown ) in updateSettings()
[all …]
/aoo4110/main/vcl/unx/generic/printer/
H A Dprinterinfomanager.cxx1019 nDiff = builtin->m_eWidth - it->m_eWidth; in fillFontSubstitutions()
1041 it->m_eWidth, in fillFontSubstitutions()
1046 aInfo.m_eWidth in fillFontSubstitutions()
/aoo4110/main/padmin/source/
H A Dfontentry.cxx205 switch( rInfo.m_eWidth ) in fillFontEntry()
/aoo4110/main/vcl/unx/headless/
H A Dsvppspgraphics.cxx1187 aDFA.meWidthType = ToFontWidth (rInfo.m_eWidth); in Info2DevFontAttributes()

Completed in 148 milliseconds