Home
last modified time | relevance | path

Searched refs:FontWeight (Results 1 – 25 of 157) sorted by relevance

1234567

/trunk/main/xmloff/source/style/
H A Dweighhdl.cxx55 { ::com::sun::star::awt::FontWeight::DONTKNOW, 0 },
56 { ::com::sun::star::awt::FontWeight::THIN, 100 },
57 { ::com::sun::star::awt::FontWeight::ULTRALIGHT, 150 },
58 { ::com::sun::star::awt::FontWeight::LIGHT, 250 },
59 { ::com::sun::star::awt::FontWeight::SEMILIGHT, 350 },
60 { ::com::sun::star::awt::FontWeight::NORMAL, 400 },
61 { ::com::sun::star::awt::FontWeight::NORMAL, 450 },
62 { ::com::sun::star::awt::FontWeight::SEMIBOLD, 600 },
63 { ::com::sun::star::awt::FontWeight::BOLD, 700 },
64 { ::com::sun::star::awt::FontWeight::ULTRABOLD, 800 },
[all …]
/trunk/main/offapi/com/sun/star/formula/
H A DSymbolDescriptor.idl32 - nWeight should be changed to float as in FontWeight.idl
80 @see <type scope="com::sun::star::awt">FontWeight</type>
83 0 : <member scope="com::sun::star::awt">FontWeight::DONTKNOW</member>
84 1 : <member scope="com::sun::star::awt">FontWeight::THIN</member>
86 3 : <member scope="com::sun::star::awt">FontWeight::LIGHT</member>
87 4 : <member scope="com::sun::star::awt">FontWeight::SEMILIGHT</member>
88 5 : <member scope="com::sun::star::awt">FontWeight::NORMAL</member>
89 7 : <member scope="com::sun::star::awt">FontWeight::SEMIBOLD</member>
90 8 : <member scope="com::sun::star::awt">FontWeight::BOLD</member>
91 9 : <member scope="com::sun::star::awt">FontWeight::ULTRABOLD</member>
[all …]
/trunk/main/toolkit/source/helper/
H A Dvclunohelper.cxx273 return ::com::sun::star::awt::FontWeight::DONTKNOW; in ConvertFontWeight()
275 return ::com::sun::star::awt::FontWeight::THIN; in ConvertFontWeight()
279 return ::com::sun::star::awt::FontWeight::LIGHT; in ConvertFontWeight()
281 return ::com::sun::star::awt::FontWeight::SEMILIGHT; in ConvertFontWeight()
283 return ::com::sun::star::awt::FontWeight::NORMAL; in ConvertFontWeight()
285 return ::com::sun::star::awt::FontWeight::SEMIBOLD; in ConvertFontWeight()
287 return ::com::sun::star::awt::FontWeight::BOLD; in ConvertFontWeight()
289 return ::com::sun::star::awt::FontWeight::ULTRABOLD; in ConvertFontWeight()
291 return ::com::sun::star::awt::FontWeight::BLACK; in ConvertFontWeight()
294 return ::com::sun::star::awt::FontWeight::DONTKNOW; in ConvertFontWeight()
[all …]
/trunk/main/vcl/source/components/
H A Dfontident.cxx142 case WEIGHT_THIN: aFD.Weight = com::sun::star::awt::FontWeight::THIN;break; in getMaterial()
143 case WEIGHT_ULTRALIGHT: aFD.Weight = com::sun::star::awt::FontWeight::ULTRALIGHT;break; in getMaterial()
144 case WEIGHT_LIGHT: aFD.Weight = com::sun::star::awt::FontWeight::LIGHT;break; in getMaterial()
145 case WEIGHT_SEMILIGHT: aFD.Weight = com::sun::star::awt::FontWeight::SEMILIGHT;break; in getMaterial()
147 case WEIGHT_NORMAL: aFD.Weight = com::sun::star::awt::FontWeight::NORMAL;break; in getMaterial()
148 case WEIGHT_SEMIBOLD: aFD.Weight = com::sun::star::awt::FontWeight::SEMIBOLD;break; in getMaterial()
149 case WEIGHT_BOLD: aFD.Weight = com::sun::star::awt::FontWeight::BOLD;break; in getMaterial()
150 case WEIGHT_ULTRABOLD: aFD.Weight = com::sun::star::awt::FontWeight::ULTRABOLD;break; in getMaterial()
151 case WEIGHT_BLACK: aFD.Weight = com::sun::star::awt::FontWeight::BLACK;break; in getMaterial()
153 aFD.Weight = com::sun::star::awt::FontWeight::DONTKNOW; in getMaterial()
/trunk/main/svgio/inc/svgio/svgreader/
H A Dsvgstyleattributes.hxx96 enum FontWeight enum
112 FontWeight getBolder(FontWeight aSource);
113 FontWeight getLighter(FontWeight aSource);
114 ::FontWeight getVclFontWeight(FontWeight aSource);
185 FontWeight maFontWeight;
386 FontWeight getFontWeight() const;
387 …void setFontWeight(const FontWeight aFontWeight = FontWeight_notset) { maFontWeight = aFontWeight;… in setFontWeight()
/trunk/main/vcl/inc/
H A Doutfont.hxx63 FontWeight GetWeight() const { return meWeight; } in GetWeight()
73 FontWeight meWeight; // Weight Type
234 ImplDevFontListData* ImplFindByAttributes( sal_uLong nSearchType, FontWeight, FontWidth,
340 …void AddFallbackForUnicode( sal_UCS4, FontWeight eWeight, const String& rFontName );
341 …bool GetFallbackForUnicode( sal_UCS4, FontWeight eWeight, String* pFontName ) const;
342 …void IgnoreFallbackForUnicode( sal_UCS4, FontWeight eWeight, const String& rFontNam…
348 typedef ::std::pair<sal_UCS4,FontWeight> GFBCacheKey;
/trunk/main/accessibility/source/extended/
H A Dtextwindowaccessibility.cxx2593 ::css::uno::Any Document::mapFontWeight(::FontWeight nWeight) in mapFontWeight()
2598 = { ::css::awt::FontWeight::DONTKNOW, // WEIGHT_DONTKNOW in mapFontWeight()
2599 ::css::awt::FontWeight::THIN, // WEIGHT_THIN in mapFontWeight()
2601 ::css::awt::FontWeight::LIGHT, // WEIGHT_LIGHT in mapFontWeight()
2603 ::css::awt::FontWeight::NORMAL, // WEIGHT_NORMAL in mapFontWeight()
2604 ::css::awt::FontWeight::NORMAL, // WEIGHT_MEDIUM in mapFontWeight()
2606 ::css::awt::FontWeight::BOLD, // WEIGHT_BOLD in mapFontWeight()
2608 ::css::awt::FontWeight::BLACK }; // WEIGHT_BLACK in mapFontWeight()
2615 float nWeight = ::css::awt::FontWeight::NORMAL; in mapFontWeight()
2618 : nWeight <= ::css::awt::FontWeight::THIN ? WEIGHT_THIN in mapFontWeight()
[all …]
/trunk/main/editeng/inc/editeng/
H A Dwghtitem.hxx50 SvxWeightItem( const FontWeight eWght /*= WEIGHT_NORMAL*/,
78 FontWeight GetWeight() const in GetWeight()
79 { return (FontWeight)GetValue(); } in GetWeight()
80 void SetWeight( FontWeight eNew ) in SetWeight()
/trunk/main/sc/source/core/data/
H A Dpatattr.cxx234 FontWeight eWeight; in GetFont()
287 eWeight = (FontWeight)((const SvxWeightItem*)pItem)->GetValue(); in GetFont()
338 eWeight = (FontWeight)((const SvxWeightItem&) in GetFont()
509 FontWeight eWeight, eCjkWeight, eCtlWeight; in FillToEditItemSet()
556 eWeight = (FontWeight)((const SvxWeightItem*)pItem)->GetValue(); in FillToEditItemSet()
559 eCjkWeight = (FontWeight)((const SvxWeightItem*)pItem)->GetValue(); in FillToEditItemSet()
562 eCtlWeight = (FontWeight)((const SvxWeightItem*)pItem)->GetValue(); in FillToEditItemSet()
639 eWeight = (FontWeight)((const SvxWeightItem&) in FillToEditItemSet()
641 eCjkWeight = (FontWeight)((const SvxWeightItem&) in FillToEditItemSet()
643 eCtlWeight = (FontWeight)((const SvxWeightItem&) in FillToEditItemSet()
[all …]
/trunk/main/dbaccess/source/ui/misc/
H A DUITools.cxx990 float ConvertFontWeight( ::FontWeight eWeight ) in ConvertFontWeight()
993 return ::com::sun::star::awt::FontWeight::DONTKNOW; in ConvertFontWeight()
995 return ::com::sun::star::awt::FontWeight::THIN; in ConvertFontWeight()
999 return ::com::sun::star::awt::FontWeight::LIGHT; in ConvertFontWeight()
1001 return ::com::sun::star::awt::FontWeight::SEMILIGHT; in ConvertFontWeight()
1003 return ::com::sun::star::awt::FontWeight::NORMAL; in ConvertFontWeight()
1005 return ::com::sun::star::awt::FontWeight::SEMIBOLD; in ConvertFontWeight()
1007 return ::com::sun::star::awt::FontWeight::BOLD; in ConvertFontWeight()
1009 return ::com::sun::star::awt::FontWeight::ULTRABOLD; in ConvertFontWeight()
1011 return ::com::sun::star::awt::FontWeight::BLACK; in ConvertFontWeight()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/style/
H A D_CharacterPropertiesAsian.java29 import com.sun.star.awt.FontWeight;
58 testProperty("CharWeightAsian", new Float(FontWeight.NORMAL), in _CharWeightAsian()
59 new Float(FontWeight.BOLD)); in _CharWeightAsian()
H A D_CharacterPropertiesComplex.java48 testProperty("CharWeightComplex", new Float(com.sun.star.awt.FontWeight.BOLD), in _CharWeightComplex()
49 new Float(com.sun.star.awt.FontWeight.THIN)) ; in _CharWeightComplex()
/trunk/main/vcl/aqua/source/a11y/
H A Daqua11ytextattributeswrapper.mm34 #include <com/sun/star/awt/FontWeight.hpp>
61 if ( value == ::css_awt::FontWeight::SEMIBOLD
62 || value == ::css_awt::FontWeight::BOLD
63 || value == ::css_awt::FontWeight::ULTRABOLD
64 || value == ::css_awt::FontWeight::BLACK ) {
/trunk/test/testuno/source/fvt/uno/sw/puretext/
H A DCharacterStyle.java65 xCursorProps.setPropertyValue("CharWeight", new Float(com.sun.star.awt.FontWeight.BOLD)); in testCharacterStyleSetting()
93 …assertEquals(com.sun.star.awt.FontWeight.BOLD,xCursorProps_assert_odt.getPropertyValue("CharWeight… in testCharacterStyleSetting()
100 …assertEquals(com.sun.star.awt.FontWeight.BOLD,xCursorProps_assert_doc.getPropertyValue("CharWeight… in testCharacterStyleSetting()
/trunk/main/svtools/inc/svtools/
H A Dtxtattr.hxx89 FontWeight meWeight;
92 TextAttribFontWeight( FontWeight eWeight );
100 inline FontWeight getFontWeight() const { return meWeight; } in getFontWeight()
/trunk/main/sw/source/core/inc/
H A Dswfont.hxx113 inline void SetWeight( const FontWeight eWeight );
228 inline void SetWeight( const FontWeight eWeight, const sal_uInt8 nWhich );
296 FontWeight GetWeight() const { return aSub[nActual].GetWeight(); } in GetWeight()
318 inline FontWeight GetWeight( const sal_uInt8 nWhich ) const in GetWeight()
485 inline void SwSubFont::SetWeight( const FontWeight eWeight ) in SetWeight()
491 inline void SwFont::SetWeight( const FontWeight eWeight, const sal_uInt8 nWhich ) in SetWeight()
/trunk/main/svgio/source/svgreader/
H A Dsvgstyleattributes.cxx126 FontWeight getBolder(FontWeight aSource) in getBolder()
144 FontWeight getLighter(FontWeight aSource) in getLighter()
162 ::FontWeight getVclFontWeight(FontWeight aSource) in getVclFontWeight()
164 ::FontWeight nRetval(WEIGHT_NORMAL); in getVclFontWeight()
2393 FontWeight SvgStyleAttributes::getFontWeight() const in getFontWeight()
2407 FontWeight aInherited = pSvgStyleAttributes->getFontWeight(); in getFontWeight()
/trunk/main/vbahelper/source/msforms/
H A Dvbanewfont.cxx103 return aAny.get< float >() > awt::FontWeight::NORMAL; in getBold()
110 uno::Any( bBold ? awt::FontWeight::BOLD : awt::FontWeight::NORMAL ) ); in setBold()
/trunk/main/wizards/com/sun/star/wizards/report/
H A DDataimport.java127 oFontDesc.Weight = com.sun.star.awt.FontWeight.BOLD; in showProgressDisplay()
204 modifyFontWeight("lblProgressDBConnection", com.sun.star.awt.FontWeight.NORMAL); in importReportData()
205 modifyFontWeight("lblProgressDataImport", com.sun.star.awt.FontWeight.BOLD); in importReportData()
/trunk/main/unotools/inc/unotools/
H A Dfontcfg.hxx166 FontWeight Weight;
198FontWeight getSubstWeight( const com::sun::star::uno::Reference< com::sun::star::container::XNameA…
218 …Name( const String& rOrgName, String& rShortName, String& rFamilyName, FontWeight& rWeight, FontWi…
/trunk/main/vbahelper/source/vbahelper/
H A Dvbafontbase.cxx180 double fBoldValue = awt::FontWeight::NORMAL; in setBold()
182 fBoldValue = awt::FontWeight::BOLD; in setBold()
192 return uno::makeAny( fValue == awt::FontWeight::BOLD ); in getBold()
/trunk/main/svtools/source/control/
H A Dctrltool.cxx412 const XubString& FontList::GetStyleName( FontWeight eWeight, FontItalic eItalic ) const in GetStyleName()
456 FontWeight eWeight = rInfo.GetWeight(); in GetStyleName()
532 FontWeight eWeight = rInfo.GetWeight(); in GetFontMapText()
697 FontWeight eWeight, FontItalic eItalic ) const in Get()
/trunk/main/vcl/source/gdi/
H A Dfont.cxx173 FontWeight eWeight = WEIGHT_DONTKNOW; in AskConfig()
519 void Font::SetWeight( FontWeight eWeight ) in SetWeight()
786 rIStm >> nTmp16; rImpl_Font.meWeight = (FontWeight) nTmp16; in operator >>()
956 FontWeight weight;
1099 FontWeight Font::GetWeight() const { return mpImplFont->GetWeight(); } in GetWeight()
/trunk/main/starmath/sdi/
H A Dsmitems.sdi103 enum FontWeight
117 item FontWeight FontWeightItem;
515 item FontWeight SvxWeightItem;
/trunk/main/vcl/inc/vcl/
H A Dfont.hxx101 void SetWeight( FontWeight );
102 FontWeight GetWeight() const;

Completed in 139 milliseconds

1234567