LibreOffice Module sc (master) 1
|
This struct helps reading and writing Excel fonts. More...
#include <xlstyle.hxx>
Public Member Functions | |
XclFontData () | |
Font color. More... | |
XclFontData (const vcl::Font &rFont, model::ComplexColor const &rComplexColor) | |
Constructs a font data structure and fills it with the passed font attributes (except color). More... | |
XclFontData (const SvxFont &rFont, model::ComplexColor const &rComplexColor) | |
As directly above but also fills in the escapement member. More... | |
void | Clear () |
Resets all members to default (empty) values. More... | |
void | FillFromVclFont (const vcl::Font &rFont, model::ComplexColor const &rComplexColor) |
Fills all members (except color and escapement) from the passed font. More... | |
void | FillFromSvxFont (const SvxFont &rFont, model::ComplexColor const &rComplexColor) |
Fills all members (except color) from the passed SVX font. More... | |
FontFamily | GetScFamily (rtl_TextEncoding eDefTextEnc) const |
Returns the Calc font family. More... | |
rtl_TextEncoding | GetFontEncoding () const |
Returns the font text encoding. More... | |
FontItalic | GetScPosture () const |
Returns the Calc font posture. More... | |
FontWeight | GetScWeight () const |
Returns the Calc font weight. More... | |
FontLineStyle | GetScUnderline () const |
Returns the Calc font underline style. More... | |
SvxEscapement | GetScEscapement () const |
Returns the Calc escapement style. More... | |
FontStrikeout | GetScStrikeout () const |
Returns the Calc strike-out style. More... | |
void | SetScHeight (sal_Int32 nTwips) |
Sets the Calc font height (in twips). More... | |
void | SetScFamily (FontFamily eScFamily) |
Sets the Calc font family. More... | |
void | SetFontEncoding (rtl_TextEncoding eFontEnc) |
Sets the font text encoding. More... | |
void | SetScPosture (FontItalic eScPosture) |
Sets the Calc font posture. More... | |
void | SetScWeight (FontWeight eScWeight) |
Sets the Calc font weight. More... | |
void | SetScUnderline (FontLineStyle eScUnderl) |
Sets the Calc underline style. More... | |
void | SetScEscapement (short nScEscapem) |
Sets the Calc escapement style. More... | |
void | SetScStrikeout (FontStrikeout eScStrikeout) |
Sets the Calc strike-out style. More... | |
float | GetApiHeight () const |
Returns the API font height. More... | |
sal_Int16 | GetApiFamily () const |
Returns the API font family. More... | |
sal_Int16 | GetApiFontEncoding () const |
Returns the API font text encoding. More... | |
css::awt::FontSlant | GetApiPosture () const |
Returns the API font posture. More... | |
float | GetApiWeight () const |
Returns the API font weight. More... | |
sal_Int16 | GetApiUnderline () const |
Returns the API font underline style. More... | |
sal_Int16 | GetApiEscapement () const |
Returns the API escapement style. More... | |
sal_Int16 | GetApiStrikeout () const |
Returns the API font strike-out style. More... | |
void | SetApiHeight (float fPoint) |
Sets the API font height. More... | |
void | SetApiFamily (sal_Int16 nApiFamily) |
Sets the API font family. More... | |
void | SetApiPosture (css::awt::FontSlant eApiPosture) |
Sets the API font posture. More... | |
void | SetApiWeight (float fApiWeight) |
Sets the API font weight. More... | |
void | SetApiUnderline (sal_Int16 nApiUnderl) |
Sets the API font underline style. More... | |
void | SetApiEscapement (sal_Int16 nApiEscapem) |
Sets the API escapement style. More... | |
void | SetApiStrikeout (sal_Int16 nApiStrikeout) |
Sets the API font strike-out style. More... | |
Public Attributes | |
OUString | maName |
OUString | maStyle |
Font name. More... | |
sal_uInt16 | mnHeight |
String with styles (bold, italic). More... | |
sal_uInt16 | mnWeight |
Font height in twips (1/20 of a point). More... | |
sal_uInt16 | mnEscapem |
Boldness: 400=normal, 700=bold. More... | |
sal_uInt8 | mnFamily |
Escapement type. More... | |
sal_uInt8 | mnCharSet |
Windows font family. More... | |
sal_uInt8 | mnUnderline |
Windows character set. More... | |
bool | mbItalic |
Underline style. More... | |
bool | mbStrikeout |
true = Italic. More... | |
bool | mbOutline |
true = Struck out. More... | |
bool | mbShadow |
true = Outlined. More... | |
model::ComplexColor | maComplexColor |
true = Shadowed. More... | |
This struct helps reading and writing Excel fonts.
It stores all Excel compatible properties of a font. In detail this is the name, family, character set, height, color, boldness, posture, script, underline, strikeout, outline and shadow of the font.
Definition at line 284 of file xlstyle.hxx.
|
explicit |
Font color.
Constructs an empty font data structure.
Definition at line 172 of file xlstyle.cxx.
References Clear().
|
explicit |
Constructs a font data structure and fills it with the passed font attributes (except color).
Definition at line 177 of file xlstyle.cxx.
References Clear(), and FillFromVclFont().
|
explicit |
As directly above but also fills in the escapement member.
Definition at line 183 of file xlstyle.cxx.
References FillFromSvxFont().
void XclFontData::Clear | ( | ) |
Resets all members to default (empty) values.
Definition at line 188 of file xlstyle.cxx.
References COL_AUTO(), EXC_FONTCSET_ANSI_LATIN, EXC_FONTESC_NONE, EXC_FONTFAM_SYSTEM, EXC_FONTUNDERL_NONE, EXC_FONTWGHT_DONTKNOW, maComplexColor, maName, maStyle, mbItalic, mbOutline, mbShadow, mbStrikeout, mnCharSet, mnEscapem, mnFamily, mnHeight, mnUnderline, mnWeight, and model::ComplexColor::setColor().
Referenced by XclFontData().
void XclFontData::FillFromSvxFont | ( | const SvxFont & | rFont, |
model::ComplexColor const & | rComplexColor | ||
) |
Fills all members (except color) from the passed SVX font.
Definition at line 220 of file xlstyle.cxx.
References FillFromVclFont(), SvxFont::GetEscapement(), and SetScEscapement().
Referenced by XclFontData().
void XclFontData::FillFromVclFont | ( | const vcl::Font & | rFont, |
model::ComplexColor const & | rComplexColor | ||
) |
Fills all members (except color and escapement) from the passed font.
Definition at line 202 of file xlstyle.cxx.
References EXC_FONTESC_NONE, vcl::Font::GetCharSet(), vcl::Font::GetFamilyName(), vcl::Font::GetFamilyType(), vcl::Font::GetFontSize(), vcl::Font::GetItalic(), vcl::Font::GetStrikeout(), vcl::Font::GetUnderline(), vcl::Font::GetWeight(), XclTools::GetXclFontName(), Size::Height(), vcl::Font::IsOutline(), vcl::Font::IsShadow(), maComplexColor, maName, maStyle, mbOutline, mbShadow, mnEscapem, SetFontEncoding(), SetScFamily(), SetScHeight(), SetScPosture(), SetScStrikeout(), SetScUnderline(), and SetScWeight().
Referenced by FillFromSvxFont(), XclExpCFImpl::XclExpCFImpl(), and XclFontData().
sal_Int16 XclFontData::GetApiEscapement | ( | ) | const |
Returns the API escapement style.
Definition at line 440 of file xlstyle.cxx.
References EXC_FONTESC_SUB, EXC_FONTESC_SUPER, and mnEscapem.
Referenced by XclFontPropSetHelper::WriteFontProperties().
sal_Int16 XclFontData::GetApiFamily | ( | ) | const |
Returns the API font family.
Definition at line 396 of file xlstyle.cxx.
References FAMILY_DECORATIVE, FAMILY_MODERN, FAMILY_ROMAN, FAMILY_SCRIPT, FAMILY_SWISS, FAMILY_SYSTEM, and mnFamily.
Referenced by XclFontPropSetHelper::WriteFontProperties().
sal_Int16 XclFontData::GetApiFontEncoding | ( | ) | const |
Returns the API font text encoding.
Definition at line 411 of file xlstyle.cxx.
References GetFontEncoding().
Referenced by XclFontPropSetHelper::WriteFontProperties().
float XclFontData::GetApiHeight | ( | ) | const |
Returns the API font height.
Definition at line 391 of file xlstyle.cxx.
References mnHeight, o3tl::pt, and o3tl::twip.
Referenced by XclFontPropSetHelper::WriteFontProperties().
Awt::FontSlant XclFontData::GetApiPosture | ( | ) | const |
Returns the API font posture.
Definition at line 417 of file xlstyle.cxx.
References mbItalic.
Referenced by XclFontPropSetHelper::WriteFontProperties().
sal_Int16 XclFontData::GetApiStrikeout | ( | ) | const |
Returns the API font strike-out style.
Definition at line 451 of file xlstyle.cxx.
References mbStrikeout, and condformat::dialog::NONE.
Referenced by XclFontPropSetHelper::WriteFontProperties().
sal_Int16 XclFontData::GetApiUnderline | ( | ) | const |
Returns the API font underline style.
Definition at line 427 of file xlstyle.cxx.
References EXC_FONTUNDERL_DOUBLE, EXC_FONTUNDERL_DOUBLE_ACC, EXC_FONTUNDERL_SINGLE, EXC_FONTUNDERL_SINGLE_ACC, mnUnderline, and condformat::dialog::NONE.
Referenced by XclFontPropSetHelper::WriteFontProperties().
float XclFontData::GetApiWeight | ( | ) | const |
Returns the API font weight.
Definition at line 422 of file xlstyle.cxx.
References vcl::unohelper::ConvertFontWeight(), and GetScWeight().
Referenced by XclFontPropSetHelper::WriteFontProperties().
rtl_TextEncoding XclFontData::GetFontEncoding | ( | ) | const |
Returns the font text encoding.
Definition at line 248 of file xlstyle.cxx.
References mnCharSet.
Referenced by XclImpFont::FillToItemSet(), GetApiFontEncoding(), XclImpFont::GetFontEncoding(), and XclRoot::SetCharWidth().
SvxEscapement XclFontData::GetScEscapement | ( | ) | const |
Returns the Calc escapement style.
Definition at line 291 of file xlstyle.cxx.
References EXC_FONTESC_SUB, EXC_FONTESC_SUPER, and mnEscapem.
Referenced by XclImpFont::FillToItemSet(), XclXmlUtils::WriteFontData(), and XclFontPropSetHelper::WriteFontProperties().
FontFamily XclFontData::GetScFamily | ( | rtl_TextEncoding | eDefTextEnc | ) | const |
Returns the Calc font family.
Definition at line 228 of file xlstyle.cxx.
References EXC_FONTFAM_DECORATIVE, EXC_FONTFAM_MODERN, EXC_FONTFAM_ROMAN, EXC_FONTFAM_SCRIPT, EXC_FONTFAM_SWISS, FAMILY_DECORATIVE, FAMILY_DONTKNOW, FAMILY_MODERN, FAMILY_ROMAN, FAMILY_SCRIPT, FAMILY_SWISS, maName, and mnFamily.
Referenced by XclImpFont::FillToItemSet(), and XclRoot::SetCharWidth().
FontItalic XclFontData::GetScPosture | ( | ) | const |
Returns the Calc font posture.
Definition at line 254 of file xlstyle.cxx.
References ITALIC_NONE, ITALIC_NORMAL, and mbItalic.
Referenced by XclImpFont::FillToItemSet().
FontStrikeout XclFontData::GetScStrikeout | ( | ) | const |
Returns the Calc strike-out style.
Definition at line 302 of file xlstyle.cxx.
References mbStrikeout, STRIKEOUT_NONE, and STRIKEOUT_SINGLE.
Referenced by XclImpFont::FillToItemSet().
FontLineStyle XclFontData::GetScUnderline | ( | ) | const |
Returns the Calc font underline style.
Definition at line 278 of file xlstyle.cxx.
References EXC_FONTUNDERL_DOUBLE, EXC_FONTUNDERL_DOUBLE_ACC, EXC_FONTUNDERL_SINGLE, EXC_FONTUNDERL_SINGLE_ACC, LINESTYLE_DOUBLE, LINESTYLE_NONE, LINESTYLE_SINGLE, and mnUnderline.
Referenced by XclImpFont::FillToItemSet(), and XclXmlUtils::WriteFontData().
FontWeight XclFontData::GetScWeight | ( | ) | const |
Returns the Calc font weight.
Definition at line 259 of file xlstyle.cxx.
References mnWeight, WEIGHT_BLACK, WEIGHT_BOLD, WEIGHT_DONTKNOW, WEIGHT_LIGHT, WEIGHT_MEDIUM, WEIGHT_NORMAL, WEIGHT_SEMIBOLD, WEIGHT_SEMILIGHT, WEIGHT_THIN, WEIGHT_ULTRABOLD, and WEIGHT_ULTRALIGHT.
Referenced by XclImpFont::FillToItemSet(), GetApiWeight(), and XclRoot::SetCharWidth().
void XclFontData::SetApiEscapement | ( | sal_Int16 | nApiEscapem | ) |
Sets the API escapement style.
Definition at line 501 of file xlstyle.cxx.
References EXC_FONTESC_NONE, EXC_FONTESC_SUB, EXC_FONTESC_SUPER, and mnEscapem.
Referenced by XclFontPropSetHelper::ReadFontProperties().
void XclFontData::SetApiFamily | ( | sal_Int16 | nApiFamily | ) |
Sets the API font family.
Definition at line 461 of file xlstyle.cxx.
References FAMILY_DECORATIVE, FAMILY_DONTKNOW, FAMILY_MODERN, FAMILY_ROMAN, FAMILY_SCRIPT, FAMILY_SWISS, FAMILY_SYSTEM, and mnFamily.
Referenced by XclFontPropSetHelper::ReadFontProperties().
void XclFontData::SetApiHeight | ( | float | fPoint | ) |
Sets the API font height.
Definition at line 456 of file xlstyle.cxx.
References o3tl::convert(), mnHeight, o3tl::pt, and o3tl::twip.
void XclFontData::SetApiPosture | ( | css::awt::FontSlant | eApiPosture | ) |
void XclFontData::SetApiStrikeout | ( | sal_Int16 | nApiStrikeout | ) |
Sets the API font strike-out style.
Definition at line 511 of file xlstyle.cxx.
References mbStrikeout, and condformat::dialog::NONE.
void XclFontData::SetApiUnderline | ( | sal_Int16 | nApiUnderl | ) |
Sets the API font underline style.
Definition at line 489 of file xlstyle.cxx.
References EXC_FONTUNDERL_DOUBLE, EXC_FONTUNDERL_NONE, EXC_FONTUNDERL_SINGLE, mnUnderline, and condformat::dialog::NONE.
void XclFontData::SetApiWeight | ( | float | fApiWeight | ) |
Sets the API font weight.
Definition at line 484 of file xlstyle.cxx.
References vcl::unohelper::ConvertFontWeight(), and SetScWeight().
void XclFontData::SetFontEncoding | ( | rtl_TextEncoding | eFontEnc | ) |
Sets the font text encoding.
Definition at line 329 of file xlstyle.cxx.
References mnCharSet.
Referenced by FillFromVclFont(), XclExpFontBuffer::InitDefaultFonts(), and XclFontPropSetHelper::ReadFontProperties().
void XclFontData::SetScEscapement | ( | short | nScEscapem | ) |
Sets the Calc escapement style.
Definition at line 371 of file xlstyle.cxx.
References EXC_FONTESC_NONE, EXC_FONTESC_SUB, EXC_FONTESC_SUPER, and mnEscapem.
Referenced by XclExpHFConverter::AppendPortion(), and FillFromSvxFont().
void XclFontData::SetScFamily | ( | FontFamily | eScFamily | ) |
Sets the Calc font family.
Definition at line 312 of file xlstyle.cxx.
References EXC_FONTFAM_DECORATIVE, EXC_FONTFAM_DONTKNOW, EXC_FONTFAM_MODERN, EXC_FONTFAM_ROMAN, EXC_FONTFAM_SCRIPT, EXC_FONTFAM_SWISS, EXC_FONTFAM_SYSTEM, FAMILY_DECORATIVE, FAMILY_DONTKNOW, FAMILY_MODERN, FAMILY_ROMAN, FAMILY_SCRIPT, FAMILY_SWISS, FAMILY_SYSTEM, and mnFamily.
Referenced by FillFromVclFont(), and XclExpFontBuffer::InitDefaultFonts().
void XclFontData::SetScHeight | ( | sal_Int32 | nTwips | ) |
Sets the Calc font height (in twips).
Definition at line 307 of file xlstyle.cxx.
References mnHeight.
Referenced by FillFromVclFont(), and XclExpFontBuffer::InitDefaultFonts().
void XclFontData::SetScPosture | ( | FontItalic | eScPosture | ) |
Sets the Calc font posture.
Definition at line 335 of file xlstyle.cxx.
References ITALIC_NORMAL, ITALIC_OBLIQUE, and mbItalic.
Referenced by FillFromVclFont(), XclExpFontBuffer::InitDefaultFonts(), and XclImpFont::SetFontData().
void XclFontData::SetScStrikeout | ( | FontStrikeout | eScStrikeout | ) |
Sets the Calc strike-out style.
Definition at line 381 of file xlstyle.cxx.
References mbStrikeout, STRIKEOUT_BOLD, STRIKEOUT_DOUBLE, STRIKEOUT_SINGLE, STRIKEOUT_SLASH, and STRIKEOUT_X.
Referenced by FillFromVclFont().
void XclFontData::SetScUnderline | ( | FontLineStyle | eScUnderl | ) |
Sets the Calc underline style.
Definition at line 359 of file xlstyle.cxx.
References EXC_FONTUNDERL_DOUBLE, EXC_FONTUNDERL_NONE, EXC_FONTUNDERL_SINGLE, LINESTYLE_DONTKNOW, LINESTYLE_DOUBLE, LINESTYLE_DOUBLEWAVE, LINESTYLE_NONE, and mnUnderline.
Referenced by FillFromVclFont().
void XclFontData::SetScWeight | ( | FontWeight | eScWeight | ) |
Sets the Calc font weight.
Definition at line 340 of file xlstyle.cxx.
References EXC_FONTWGHT_BLACK, EXC_FONTWGHT_BOLD, EXC_FONTWGHT_DONTKNOW, EXC_FONTWGHT_LIGHT, EXC_FONTWGHT_MEDIUM, EXC_FONTWGHT_NORMAL, EXC_FONTWGHT_SEMIBOLD, EXC_FONTWGHT_SEMILIGHT, EXC_FONTWGHT_THIN, EXC_FONTWGHT_ULTRABOLD, EXC_FONTWGHT_ULTRALIGHT, mnWeight, WEIGHT_BLACK, WEIGHT_BOLD, WEIGHT_DONTKNOW, WEIGHT_LIGHT, WEIGHT_MEDIUM, WEIGHT_NORMAL, WEIGHT_SEMIBOLD, WEIGHT_SEMILIGHT, WEIGHT_THIN, WEIGHT_ULTRABOLD, and WEIGHT_ULTRALIGHT.
Referenced by FillFromVclFont(), XclExpFontBuffer::InitDefaultFonts(), SetApiWeight(), and XclImpFont::SetFontData().
model::ComplexColor XclFontData::maComplexColor |
true = Shadowed.
Definition at line 299 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), FillFromVclFont(), XclImpFont::FillToItemSet(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontColor(), XclFontPropSetHelper::ReadFontProperties(), XclXmlUtils::WriteFontData(), XclFontPropSetHelper::WriteFontProperties(), XclExpCFImpl::XclExpCFImpl(), and XclExpFont::XclExpFont().
OUString XclFontData::maName |
Definition at line 286 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), FillFromVclFont(), XclImpFont::FillToItemSet(), GetScFamily(), XclImpFont::GuessScriptType(), XclExpFontBuffer::InitDefaultFonts(), XclImpFontBuffer::Initialize(), operator==(), XclImpFont::ReadFontName2(), XclImpFont::ReadFontName8(), XclRoot::SetCharWidth(), XclImpFont::SetFontData(), XclExpFont::WriteBody(), XclXmlUtils::WriteFontData(), XclFontPropSetHelper::WriteFontProperties(), XclExpFont::XclExpFont(), XclExpTbxControlObj::XclExpTbxControlObj(), and XclImpFontBuffer::XclImpFontBuffer().
OUString XclFontData::maStyle |
Font name.
Definition at line 287 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), FillFromVclFont(), and XclImpFont::SetFontData().
bool XclFontData::mbItalic |
Underline style.
Definition at line 294 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), GetApiPosture(), GetScPosture(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), SetApiPosture(), SetScPosture(), XclExpCFImpl::WriteBody(), XclExpFont::WriteBody(), and XclXmlUtils::WriteFontData().
bool XclFontData::mbOutline |
true = Struck out.
Definition at line 296 of file xlstyle.hxx.
Referenced by Clear(), FillFromVclFont(), XclImpFont::FillToItemSet(), operator==(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), XclFontPropSetHelper::ReadFontProperties(), XclExpFont::WriteBody(), XclXmlUtils::WriteFontData(), and XclFontPropSetHelper::WriteFontProperties().
bool XclFontData::mbShadow |
true = Outlined.
Definition at line 297 of file xlstyle.hxx.
Referenced by Clear(), FillFromVclFont(), XclImpFont::FillToItemSet(), operator==(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), XclFontPropSetHelper::ReadFontProperties(), XclExpFont::WriteBody(), XclXmlUtils::WriteFontData(), and XclFontPropSetHelper::WriteFontProperties().
bool XclFontData::mbStrikeout |
true = Italic.
Definition at line 295 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), GetApiStrikeout(), GetScStrikeout(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), SetApiStrikeout(), SetScStrikeout(), XclExpCFImpl::WriteBody(), XclExpFont::WriteBody(), and XclXmlUtils::WriteFontData().
sal_uInt8 XclFontData::mnCharSet |
Windows font family.
Definition at line 292 of file xlstyle.hxx.
Referenced by Clear(), GetFontEncoding(), operator==(), XclImpFont::ReadFontData5(), SetFontEncoding(), XclExpFont::WriteBody(), and XclXmlUtils::WriteFontData().
sal_uInt16 XclFontData::mnEscapem |
Boldness: 400=normal, 700=bold.
Definition at line 290 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), FillFromVclFont(), GetApiEscapement(), GetScEscapement(), XclImpFont::HasEscapement(), operator==(), XclImpFont::ReadFontData5(), SetApiEscapement(), SetScEscapement(), and XclExpFont::WriteBody().
sal_uInt8 XclFontData::mnFamily |
Escapement type.
Definition at line 291 of file xlstyle.hxx.
Referenced by Clear(), GetApiFamily(), GetScFamily(), operator==(), XclImpFont::ReadFontData5(), SetApiFamily(), SetScFamily(), XclExpFont::WriteBody(), and XclXmlUtils::WriteFontData().
sal_uInt16 XclFontData::mnHeight |
String with styles (bold, italic).
Definition at line 288 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), ImportExcel::DefColWidth(), XclImpFont::FillToItemSet(), GetApiHeight(), XclImpFontBuffer::Initialize(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), SetApiHeight(), XclRoot::SetCharWidth(), SetScHeight(), XclExpCFImpl::WriteBody(), XclExpFont::WriteBody(), XclXmlUtils::WriteFontData(), XclExpTbxControlObj::XclExpTbxControlObj(), and XclImpFontBuffer::XclImpFontBuffer().
sal_uInt8 XclFontData::mnUnderline |
Windows character set.
Definition at line 293 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), GetApiUnderline(), GetScUnderline(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), SetApiUnderline(), SetScUnderline(), XclExpCFImpl::WriteBody(), and XclExpFont::WriteBody().
sal_uInt16 XclFontData::mnWeight |
Font height in twips (1/20 of a point).
Definition at line 289 of file xlstyle.hxx.
Referenced by XclExpHFConverter::AppendPortion(), Clear(), GetScWeight(), XclImpFontBuffer::Initialize(), operator==(), XclImpFont::ReadCFFontBlock(), XclImpFont::ReadFontData2(), XclImpFont::ReadFontData5(), SetScWeight(), XclImpFontBuffer::UpdateAppFont(), XclExpCFImpl::WriteBody(), XclExpFont::WriteBody(), XclXmlUtils::WriteFontData(), and XclImpFontBuffer::XclImpFontBuffer().