Lines Matching refs:nFontGroup

667     nFontGroup(FONT_GROUP_DEFAULT),  in SwStdFontTabPage()
766 pFontConfig->SetFontStandard(sStandard, nFontGroup); in FillItemSet()
767 pFontConfig->SetFontOutline(sTitle, nFontGroup); in FillItemSet()
768 pFontConfig->SetFontList(sList, nFontGroup); in FillItemSet()
769 pFontConfig->SetFontCaption(sLabel, nFontGroup); in FillItemSet()
770 pFontConfig->SetFontIndex(sIdx, nFontGroup); in FillItemSet()
774 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_STANDARD, nFontGroup ); in FillItemSet()
779 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_OUTLINE, nFontGroup ); in FillItemSet()
784 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_LIST, nFontGroup ); in FillItemSet()
789 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_CAPTION, nFontGroup ); in FillItemSet()
794 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_INDEX, nFontGroup ); in FillItemSet()
803 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONT : in FillItemSet()
804 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONT : RES_CHRATR_CTL_FONT); in FillItemSet()
806 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONTSIZE : in FillItemSet()
807 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONTSIZE : RES_CHRATR_CTL_FONTSIZE); in FillItemSet()
887 sal_uInt16 nLangSlot = nFontGroup == FONT_GROUP_DEFAULT ? SID_ATTR_LANGUAGE : in Reset()
888 FONT_GROUP_CJK == nFontGroup ? SID_ATTR_CHAR_CJK_LANGUAGE : SID_ATTR_CHAR_CTL_LANGUAGE; in Reset()
896 if(FONT_GROUP_CJK == nFontGroup ) in Reset()
898 else if(FONT_GROUP_CTL == nFontGroup ) in Reset()
964 sStdBackup = pFontConfig->GetFontStandard(nFontGroup); in Reset()
965 sOutBackup = pFontConfig->GetFontOutline(nFontGroup); in Reset()
966 sListBackup= pFontConfig->GetFontList(nFontGroup); in Reset()
967 sCapBackup = pFontConfig->GetFontCaption(nFontGroup); in Reset()
968 sIdxBackup = pFontConfig->GetFontIndex(nFontGroup); in Reset()
969 nStandardHeight = pFontConfig->GetFontHeight( FONT_STANDARD, nFontGroup, eLanguage ); in Reset()
970 nTitleHeight = pFontConfig->GetFontHeight( FONT_OUTLINE , nFontGroup, eLanguage ); in Reset()
971 nListHeight = pFontConfig->GetFontHeight( FONT_LIST , nFontGroup, eLanguage ); in Reset()
972 nLabelHeight = pFontConfig->GetFontHeight( FONT_CAPTION , nFontGroup, eLanguage ); in Reset()
973 nIndexHeight = pFontConfig->GetFontHeight( FONT_INDEX , nFontGroup, eLanguage ); in Reset()
975 …nStandardHeight = pFontConfig->GetDefaultHeightFor( FONT_STANDARD + nFontGroup * FONT_PER_GROUP, e… in Reset()
977 …nTitleHeight = pFontConfig->GetDefaultHeightFor( FONT_OUTLINE + nFontGroup * FONT_PER_GROUP, eLang… in Reset()
979 …nListHeight = pFontConfig->GetDefaultHeightFor( FONT_LIST + nFontGroup * FONT_PER_GROUP, eLanguage… in Reset()
981 …nLabelHeight = pFontConfig->GetDefaultHeightFor( FONT_CAPTION + nFontGroup * FONT_PER_GROUP, eLang… in Reset()
983 …nIndexHeight = pFontConfig->GetDefaultHeightFor( FONT_INDEX + nFontGroup * FONT_PER_GROUP, eLangua… in Reset()
990 const SvxFontItem& rFont = !nFontGroup ? pColl->GetFont() : in Reset()
991 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
995 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONTSIZE : in Reset()
996 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONTSIZE : RES_CHRATR_CTL_FONTSIZE ); in Reset()
1001 const SvxFontItem& rFontHL = !nFontGroup ? pColl->GetFont() : in Reset()
1002 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1009 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONT : in Reset()
1010 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONT : RES_CHRATR_CTL_FONT); in Reset()
1012 const SvxFontItem& rFontLS = !nFontGroup ? pColl->GetFont() : in Reset()
1013 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1024 const SvxFontItem& rFontCP = !nFontGroup ? pColl->GetFont() : in Reset()
1025 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1033 const SvxFontItem& rFontIDX = !nFontGroup ? pColl->GetFont() : in Reset()
1034 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1083 sal_uInt8 nFontOffset = nFontGroup * FONT_PER_GROUP; in IMPL_LINK()