Lines Matching refs:nFontGroup

670     nFontGroup(FONT_GROUP_DEFAULT),  in SwStdFontTabPage()
769 pFontConfig->SetFontStandard(sStandard, nFontGroup); in FillItemSet()
770 pFontConfig->SetFontOutline(sTitle, nFontGroup); in FillItemSet()
771 pFontConfig->SetFontList(sList, nFontGroup); in FillItemSet()
772 pFontConfig->SetFontCaption(sLabel, nFontGroup); in FillItemSet()
773 pFontConfig->SetFontIndex(sIdx, nFontGroup); in FillItemSet()
777 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_STANDARD, nFontGroup ); in FillItemSet()
782 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_OUTLINE, nFontGroup ); in FillItemSet()
787 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_LIST, nFontGroup ); in FillItemSet()
792 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_CAPTION, nFontGroup ); in FillItemSet()
797 … pFontConfig->SetFontHeight( CalcToUnit( fSize, SFX_MAPUNIT_TWIP ), FONT_INDEX, nFontGroup ); in FillItemSet()
806 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONT : in FillItemSet()
807 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONT : RES_CHRATR_CTL_FONT); in FillItemSet()
809 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONTSIZE : in FillItemSet()
810 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONTSIZE : RES_CHRATR_CTL_FONTSIZE); in FillItemSet()
890 sal_uInt16 nLangSlot = nFontGroup == FONT_GROUP_DEFAULT ? SID_ATTR_LANGUAGE : in Reset()
891 FONT_GROUP_CJK == nFontGroup ? SID_ATTR_CHAR_CJK_LANGUAGE : SID_ATTR_CHAR_CTL_LANGUAGE; in Reset()
899 if(FONT_GROUP_CJK == nFontGroup ) in Reset()
901 else if(FONT_GROUP_CTL == nFontGroup ) in Reset()
967 sStdBackup = pFontConfig->GetFontStandard(nFontGroup); in Reset()
968 sOutBackup = pFontConfig->GetFontOutline(nFontGroup); in Reset()
969 sListBackup= pFontConfig->GetFontList(nFontGroup); in Reset()
970 sCapBackup = pFontConfig->GetFontCaption(nFontGroup); in Reset()
971 sIdxBackup = pFontConfig->GetFontIndex(nFontGroup); in Reset()
972 nStandardHeight = pFontConfig->GetFontHeight( FONT_STANDARD, nFontGroup, eLanguage ); in Reset()
973 nTitleHeight = pFontConfig->GetFontHeight( FONT_OUTLINE , nFontGroup, eLanguage ); in Reset()
974 nListHeight = pFontConfig->GetFontHeight( FONT_LIST , nFontGroup, eLanguage ); in Reset()
975 nLabelHeight = pFontConfig->GetFontHeight( FONT_CAPTION , nFontGroup, eLanguage ); in Reset()
976 nIndexHeight = pFontConfig->GetFontHeight( FONT_INDEX , nFontGroup, eLanguage ); in Reset()
978 …nStandardHeight = pFontConfig->GetDefaultHeightFor( FONT_STANDARD + nFontGroup * FONT_PER_GROUP, e… in Reset()
980 …nTitleHeight = pFontConfig->GetDefaultHeightFor( FONT_OUTLINE + nFontGroup * FONT_PER_GROUP, eLang… in Reset()
982 …nListHeight = pFontConfig->GetDefaultHeightFor( FONT_LIST + nFontGroup * FONT_PER_GROUP, eLanguage… in Reset()
984 …nLabelHeight = pFontConfig->GetDefaultHeightFor( FONT_CAPTION + nFontGroup * FONT_PER_GROUP, eLang… in Reset()
986 …nIndexHeight = pFontConfig->GetDefaultHeightFor( FONT_INDEX + nFontGroup * FONT_PER_GROUP, eLangua… in Reset()
993 const SvxFontItem& rFont = !nFontGroup ? pColl->GetFont() : in Reset()
994 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
998 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONTSIZE : in Reset()
999 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONTSIZE : RES_CHRATR_CTL_FONTSIZE ); in Reset()
1004 const SvxFontItem& rFontHL = !nFontGroup ? pColl->GetFont() : in Reset()
1005 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1012 nFontGroup == FONT_GROUP_DEFAULT ? RES_CHRATR_FONT : in Reset()
1013 FONT_GROUP_CJK == nFontGroup ? RES_CHRATR_CJK_FONT : RES_CHRATR_CTL_FONT); in Reset()
1015 const SvxFontItem& rFontLS = !nFontGroup ? pColl->GetFont() : in Reset()
1016 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1027 const SvxFontItem& rFontCP = !nFontGroup ? pColl->GetFont() : in Reset()
1028 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1036 const SvxFontItem& rFontIDX = !nFontGroup ? pColl->GetFont() : in Reset()
1037 FONT_GROUP_CJK == nFontGroup ? pColl->GetCJKFont() : pColl->GetCTLFont(); in Reset()
1086 sal_uInt8 nFontOffset = nFontGroup * FONT_PER_GROUP; in IMPL_LINK()