Home
last modified time | relevance | path

Searched refs:pFontStyle (Results 1 – 6 of 6) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/xmloff/source/style/
H A DXMLFontStylesContext.cxx345 …const XMLFontStyleContextFontFace *pFontStyle = dynamic_cast<const XMLFontStyleContextFontFace*>(p… in FillProperties() local
346 if( pFontStyle ) in FillProperties()
347 pFontStyle->FillProperties( rProps, nFamilyNameIdx, nStyleNameIdx, in FillProperties()
349 return nullptr != pFontStyle; in FillProperties()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/xmloff/source/style/
H A DXMLFontStylesContext.cxx389 …const XMLFontStyleContextFontFace *pFontStyle = dynamic_cast<const XMLFontStyleContextFontFace*>(p… in FillProperties() local
390 if( pFontStyle ) in FillProperties()
391 pFontStyle->FillProperties( rProps, nFamilyNameIdx, nStyleNameIdx, in FillProperties()
393 return nullptr != pFontStyle; in FillProperties()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/emfio/source/reader/
H A Dmtftools.cxx711 const auto pFontStyle = dynamic_cast<WinMtfFontStyle*>(pObject.get()); in CreateObject() local
713 if ( pFontStyle ) in CreateObject()
715 if (pFontStyle->aFont.GetFontHeight() == 0) in CreateObject()
716 pFontStyle->aFont.SetFontHeight(423); in CreateObject()
717 ImplMap(pFontStyle->aFont); // defaulting to 12pt in CreateObject()
746 const auto pFontStyle = dynamic_cast<WinMtfFontStyle*>(pObject.get()); in CreateObjectIndexed() local
747 if ( pFontStyle ) in CreateObjectIndexed()
749 if (pFontStyle->aFont.GetFontHeight() == 0) in CreateObjectIndexed()
750 pFontStyle->aFont.SetFontHeight(423); in CreateObjectIndexed()
751 ImplMap(pFontStyle->aFont); in CreateObjectIndexed()
/dports/editors/libreoffice/libreoffice-7.2.6.2/emfio/source/reader/
H A Dmtftools.cxx965 const auto pFontStyle = dynamic_cast<WinMtfFontStyle*>(pObject.get()); in CreateObject() local
967 if ( pFontStyle ) in CreateObject()
969 if (pFontStyle->aFont.GetFontHeight() == 0) in CreateObject()
970 pFontStyle->aFont.SetFontHeight(423); in CreateObject()
971 ImplMap(pFontStyle->aFont); // defaulting to 12pt in CreateObject()
1001 const auto pFontStyle = dynamic_cast<WinMtfFontStyle*>(pObject.get()); in CreateObjectIndexed() local
1002 if ( pFontStyle ) in CreateObjectIndexed()
1004 if (pFontStyle->aFont.GetFontHeight() == 0) in CreateObjectIndexed()
1005 pFontStyle->aFont.SetFontHeight(423); in CreateObjectIndexed()
1006 ImplMap(pFontStyle->aFont); in CreateObjectIndexed()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/app/
H A Dxfa_textlayout.cpp147 IFDE_CSSFontStyle* pFontStyle = pStyle->GetFontStyles(); in CreateRootStyle() local
179 pFontStyle->SetColor(font.GetColor()); in CreateRootStyle()
180 pFontStyle->SetFontStyle(font.IsItalic() ? FDE_CSSFONTSTYLE_Italic in CreateRootStyle()
182 pFontStyle->SetFontWeight(font.IsBold() ? FXFONT_FW_BOLD in CreateRootStyle()
201 pFontStyle->SetFontSize(fFontSize); in CreateRootStyle()
391 IFDE_CSSFontStyle* pFontStyle = pStyle->GetFontStyles(); in GetFont() local
392 int32_t iCount = pFontStyle->CountFontFamilies(); in GetFont()
394 wsFamily = pFontStyle->GetFontFamily(iCount - 1); in GetFont()
397 if (pFontStyle->GetFontWeight() > FXFONT_FW_NORMAL) { in GetFont()
400 if (pFontStyle->GetFontStyle() == FDE_CSSFONTSTYLE_Italic) { in GetFont()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fde/css/
H A Dfde_cssdatatable.cpp96 uint32_t FDE_CSSFontStyleToFDE(IFDE_CSSFontStyle* pFontStyle) { in FDE_CSSFontStyleToFDE() argument
98 if (pFontStyle->GetFontStyle() == FDE_CSSFONTSTYLE_Italic) { in FDE_CSSFontStyleToFDE()
101 if (pFontStyle->GetFontWeight() >= 700) { in FDE_CSSFontStyleToFDE()